4 1 month ago

AMI is a lightweight, highly efficient routing model based on mistral-nemo(12B)It is specifically designed to act as the central orchestrator (LM-1) in a Mixture of Experts (MoE) architecture with other expert models.

tools
ollama run amalwork689/AMI

Applications

Claude Code
Claude Code ollama launch claude --model amalwork689/AMI
OpenCode
OpenCode ollama launch opencode --model amalwork689/AMI
Hermes Agent
Hermes Agent ollama launch hermes --model amalwork689/AMI
OpenClaw
OpenClaw ollama launch openclaw --model amalwork689/AMI

Models

View all →

1 model

AMI:latest

7.1GB · 1000K context window · Text · 1 month ago

Readme

AMI - Router

AMI is a lightweight, highly efficient routing model based on Mistral-nemo(12B). It is specifically designed to act as the central orchestrator (LM-1) in a Mixture of Experts (MoE) architecture.

Instead of answering user queries directly, AMI analyzes incoming prompts, categorizes the required task, and determines if external tools (like web search) are needed. It outputs strictly in JSON format, allowing developers to easily parse the response in Python and route the prompt to specialized expert models (e.g., deepseek-r1 for math, qwen-coder for programming).

Key Features:

-Task Categorization: Classifies prompts into general, math, creative writing or code.

-Tool Routing: Evaluates if a web search is required via the needs_web_search boolean flag.

-Deterministic Output: Tuned with Temperature 0.0 to guarantee reliable, strict JSON formatting without conversational fluff.