Skip to main content

Get Active Model

GET /
{
  "name": "niom-ai",
  "model": "anthropic/claude-4-sonnet-20250514",
  "workspace": "C:\\Users\\you",
  "endpoints": ["GET /health", "POST /run", "..."]
}

Model Roles

NIOM routes different phases of the reasoning pipeline to different models:
RoleUsed ForDefaultWhy
fastAnalysis, evaluationgroq/llama-3.3-70b-versatileSub-second, cheap — classification doesn’t need GPT-4
capableMain executionUser’s selected modelFull reasoning power for actual tasks
visionScreenshot analysisopenai/gpt-4oVision-capable model for understanding UI

Override Model Roles

Add to ~/.niom/config.json:
{
  "models": {
    "fast": "groq/llama-3.3-70b-versatile",
    "vision": "anthropic/claude-4-sonnet-20250514"
  }
}