MODEL_PROVIDERS
SETUPConfigure LLM providers for your agents. Switch between models with zero code changes.
SUPPORTED_PROVIDERS#
The framework is provider-agnostic. We support all major LLM providers through a unified interface. You can mix and match models from different providers within the same agent workflow.
OpenAI
Anthropic
Mistral
Ollama
PROVIDER_DETAILS#
OPENAI_(RECOMMENDED)
Best for general purpose reasoning, tool use, and JSON mode. Most reliable for complex agent workflows.
MODELS
- gpt-4o - Latest flagship model
- gpt-4-turbo - Fast and cost-effective
- gpt-3.5-turbo - Budget option
FEATURES
- ✓ Tool calling
- ✓ JSON mode
- ✓ 128k context
- ✓ Vision support
ANTHROPIC_(CLAUDE)
Excellent for writing, analysis, and large context windows. Best safety and reasoning capabilities.
MODELS
- claude-3-opus - Most capable
- claude-3-sonnet - Balanced
- claude-3-haiku - Fast & cheap
FEATURES
- ✓ Tool calling
- ✓ 200k context
- ✓ Vision support
- ✓ Constitutional AI
MISTRAL
Open-source models with strong performance. Good for European data residency requirements.
MODELS
- mistral-large - Most capable
- mistral-medium - Balanced
- mistral-small - Fast inference
FEATURES
- ✓ Tool calling
- ✓ 32k context
- ✓ Open source
- ✓ EU hosting
LOCAL_MODELS_(OLLAMA)
Run models locally for privacy, cost savings, and offline operation. Best for development and testing.
TOOL_USE_LIMITATIONS
SUPPORTED_MODELS
- llama3 - Meta's latest
- mistral - Fast inference
- codellama - Code specialized
- neural-chat - Intel optimized
REQUIREMENTS
- • 8GB+ RAM
- • Ollama installed
- • No API keys needed
- • Slower inference
AZURE_OPENAI
For enterprise deployments requiring SLA guarantees, compliance certifications, and private networking.
BENEFITS
- ✓ Enterprise SLAs
- ✓ Enterprise security
- ✓ Private networking
- ✓ Azure integration
REQUIREMENTS
- • Azure subscription
- • OpenAI resource
- • Custom domain
- • Enterprise support
PROVIDER_SWITCHING_&_FALLBACKS#
AKIOS supports automatic provider switching for reliability and cost optimization.
COST_OPTIMIZATION
Use the CostOptimizedProvider to automatically route requests to the cheapest available model that meets your requirements.