AIWG Supported Models

AIWG Supported Models

Canonical reference for models tested with AIWG. Cloud models are built-in; local models are validated by the AIWG team or community contributors.


Cloud Providers (Built-in)

These models are fully supported and configured automatically when using AIWG with cloud providers.

Anthropic

ModelAIWG TierContextTool UseStatus
claude-opus-4-6opus200KYesFully supported
claude-sonnet-4-6sonnet200KYesFully supported
claude-haiku-4-5-20251001haiku200KYesFully supported

OpenAI

ModelAIWG TierContextTool UseStatus
gpt-5.4opus256KYesFully supported
gpt-5.3-codexsonnet256KYesFully supported
gpt-5.1-codex-minihaiku192KYesFully supported

Google

ModelAIWG TierContextTool UseStatus
gemini-2.5-proopus1MYesFully supported
gemini-2.5-flashsonnet1MYesFully supported

Local Models — Validated

Models tested with AIWG by the team or community, with confirmed compatibility results.

ModelSizeBackendAIWG TierTool UseCodingReasoningSDLC WorkflowsTested ByNotes
qwen3.5:9b9BOllamasonnetYesGoodGoodPartialCommunityStrong coding, vision support (256K context), reasoning degrades in long chains
hermes-3-llama-3.1:8b8BOllamahaikuYesGoodModerateLimitedCommunityGood instruction following, limited multi-step planning
codellama:34b34BOllamasonnetNoExcellentModerateLimitedAIWG teamStrong code gen, no native tool use support
qwen2.5-coder:14b14BOllamasonnetYesExcellentModeratePartialAIWG teamBest coding quality per VRAM of validated local models
llama3.3:70b70BOllama/vLLMopusPartialGoodGoodPartialAIWG teamRequires 48GB+ VRAM; closest to cloud quality
llama3.2:3b3BOllamahaikuNoBasicBasicNoAIWG teamFast summaries and formatting only
llama3.1:8b8BOllamahaikuNoModerateModerateNoAIWG teamGeneral purpose, budget tier
codellama:13b13BOllamahaikuNoGoodBasicNoAIWG teamBudget code generation

Capability Legend

  • Yes — Works reliably in testing
  • Partial — Works with limitations (see Notes)
  • No — Not supported or not functional
  • Good/Moderate/Basic/Excellent — Relative quality rating

Status Definitions

StatusMeaning
Fully supportedBuilt into AIWG, tested with every release
AIWG team testedValidated by maintainers, not regression-tested
Community testedReported working by community contributor (see notes for details)
Expected compatibleShould work based on architecture, not formally tested

Local Models — Expected Compatible (Untested)

Models that should work with AIWG based on architecture and capabilities, but haven't been formally validated.

ModelSizeExpected TierNotes
deepseek-coder-v2:16b16BsonnetMoE architecture, strong coding benchmarks
mistral:7b7BhaikuGood instruction following
mixtral:8x7b47B (MoE)sonnetMoE architecture, good general capability
phi-4:14b14BsonnetMicrosoft, strong reasoning for size
gemma2:27b27BsonnetGoogle, good structured output
command-r:35b35BsonnetCohere, tool use support

Tier Mapping Guide

When configuring local models, map them to AIWG tiers based on their demonstrated capabilities:

AIWG TierExpected CapabilityTypical Model Size
opusComplex reasoning, architecture review, multi-step planning70B+
sonnetCode generation, debugging, structured output, moderate reasoning13B–34B
haikuSummaries, formatting, simple transformations, fast tasks3B–8B

Example models.json for Local Setup

{
  "openai": {
    "reasoning": {
      "model": "qwen3.5:9b",
      "description": "Local Qwen 3.5 for coding and reasoning"
    },
    "coding": {
      "model": "qwen2.5-coder:14b",
      "description": "Local Qwen 2.5 Coder for implementation"
    },
    "efficiency": {
      "model": "llama3.2:3b",
      "description": "Local 3B for quick tasks"
    }
  },
  "shorthand": {
    "opus": "qwen3.5:9b",
    "sonnet": "qwen2.5-coder:14b",
    "haiku": "llama3.2:3b"
  }
}

Contributing Model Test Results

See Community Model Testing Guide for how to submit your own model test results.


See Also