7 Downloads Updated 3 months ago
ollama run weenablesystems/SMOL_Emma-i
Updated 3 months ago
3 months ago
4e2d99c9755f · 638MB ·
https://ollama.com/weenablesystems/SMOL_Emma-i
!!NEXT UPGRADE FOR THIS MODEL!!
The multi-agent state machine upgrade has been fully coded .
State Machine Core (state_machine.py)
Implements a 7-state async loop (IDLE → PLANNING → DISPATCHING → EXECUTING → REFLECTING → DONE). It orchestrates three new agents, loops if retries are needed, and automatically stops if errors max out.
The Agents (app/agents/)
planner.py: Asks Gemini 2.5 Pro (via OpenRouter) to decompose a task into an array of JSON PlanSteps.executor.py: Dispatches individual steps to tools or local LLMs.critic.py: Reflects on execution results using the local Ollama model to decide the next state transition (continue, retry, escalate, done).New Skills (app/skills/)
audit_skill.py: Intercepts every single shell command. Writes an append-only JSONL file and SQLite records, complete with a heuristic risk scanner (low/medium/high).memory_skill.py: Cleanly wraps the SQLite+ChromaDB persistence layer so agents aren’t calling raw DB functions.FastAPI Engine (app/main.py)
Replaces the old scaffold stub. Provides /chat, /state, /sessions, /audit, and /health endpoints.
Remember that this model codes with ABSOLUTELYNO DRIFT, remember steps of execution Thousands of steps back, and depending on memory, becomes a Stateless Model. Code is perfect everytime. End-To-End, Full Stack Ai Development.
uvicorn app.main:app –reload