connic/claude-opus-5- Context
- 1M
- Input / 1M
- €5.20
- Output / 1M
- €26.00
Choose the right AI model for each agent: directly through Connic with EU hosting, through your own API key, or at a self-hosted endpoint. You can configure automatic retries and fallback models for all three options.
Read the model configuration docsEach agent selects one option, and any option can serve as that agent's fallback. Moving to a different provider is a one-line change, not a rewrite.
model: connic/gpt-5.6-terramodel: anthropic/claude-sonnet-5model: vllm/mistral-7bA single Project can mix all three. Available configuration includes the provider prefixes and required credentials.
Explore a selection of AI models available through Connic. Prices are listed in euros per million tokens, excluding tax. Pay for usage with your project credits.
| Model | Context | Inputs & strengths | Input / 1M | Output / 1M |
|---|---|---|---|---|
connic/claude-opus-5Anthropic · Provider terms | 1M | TextVisionReasoning | €5.20 | €26.00 |
connic/claude-sonnet-5Anthropic · Provider terms | 1M | TextVisionReasoning | €2.10 | €10.40 |
connic/gpt-5.6-solOpenAI · Provider terms | 1M | TextVisionReasoning | €5.20 | €31.20 |
connic/gpt-5.6-terraOpenAI · Provider terms | 1M | TextVisionReasoning | €2.10 | €12.50 |
connic/gpt-5.6-lunaOpenAI · Provider terms | 1M | TextVisionReasoning | €0.25 | €1.30 |
connic/gemini-3.5-flashGoogle · Provider terms | 1M | TextVisionReasoning | €1.60 | €9.40 |
connic/gemini-3.1-flash-liteGoogle · Provider terms | 1M | TextVisionReasoning | €0.30 | €1.60 |
connic/glm-5.2Z.ai · MIT | 256k | TextReasoning | €1.90 | €5.80 |
connic/qwen3.5-397b-a17bQwen · Apache-2.0 | 250k | TextVisionReasoning | €0.65 | €3.80 |
connic/qwen3.6-35b-a3bQwen · Apache-2.0 | 256k | TextVisionReasoning | €0.30 | €1.60 |
connic/mistral-large-2512Mistral · Provider terms | 256k | TextVision | €0.55 | €1.60 |
connic/mistral-small-2603Mistral · Provider terms | 256k | TextVisionReasoning | €0.25 | €0.65 |
connic/llama-3.3-70b-instructMeta · Llama 3.3 Community | 100k | Text | €0.95 | €0.95 |
connic/minimax-m2.7MiniMax · Provider terms | 197k | TextReasoning | €0.65 | €2.60 |
connic/claude-opus-5connic/claude-sonnet-5connic/gpt-5.6-solconnic/gpt-5.6-terraconnic/gpt-5.6-lunaconnic/gemini-3.5-flashconnic/gemini-3.1-flash-liteconnic/glm-5.2connic/qwen3.5-397b-a17bconnic/qwen3.6-35b-a3bconnic/mistral-large-2512connic/mistral-small-2603connic/llama-3.3-70b-instructconnic/minimax-m2.7Process requests in the EU with Connic models. No additional configuration is needed.
Every connic/* request is sent only to EU inference capacity. A model is removed or fails closed if that boundary cannot be maintained.
Connic-managed inference is not used to train models. Connic records model and token counts for billing, not prompt or response content; narrow security and error-retention exceptions are described in our Privacy Policy.
connic/* covers the model call. A Project is fully EU-resident when its deployment region and every configured provider, tool, guardrail, judge, and data destination are EU-resident too.
A direct model API may be preferable to an agent runtime. Compare EU-hosted model providers and deployment options.
Define which AI model your agent uses in the agent file. Version it in Git and review model changes through the same process as other code changes.
version: "1.0"
name: refund-agent
description: Reviews refund requests and drafts a decision
system_prompt: |
Review the refund request and draft a decision.
model: connic/qwen3.6-35b-a3b
fallback_model: connic/claude-sonnet-5 # or anthropic/claude-sonnet-4-5 with Anthropic BYOK configured
temperature: 0.3
reasoning_effort: high
retry_options:
attempts: 5
max_delay: 60modelfallback_modeltemperaturereasoning_effortretry_optionsA _defaults.yaml file sets the model for every agent in that directory and below, and an individual agent still wins on conflict. See cascading defaults
Managed models accept tool definitions and response-format constraints, so agent tools and output_schema behave the same on connic/* as they do on a BYOK model.
Connic handles errors such as rate limits, timeouts, and invalid API keys. Configure retries and an optional fallback model for each agent.
fallback_model_usedConnic repeats the single failing model call instead of replaying the run. Tools that already executed keep their results, and the conversation is not rebuilt from scratch.
If fallback_model is configured, the primary model is tried once. If that request fails, the fallback receives the configured attempt budget. A managed primary model can use a BYOK fallback, and vice versa.
A run that switched is flagged in its trace. The expression context.fallback_model_used filters the run list to show provider failovers over a selected period.
With context_compression enabled, a context-window error triggers one pass that summarizes older turns and oversized tool results, then retries. The run keeps going instead of dying on a provider error.
Attempts, backoff, and delays are configurable per agent. See execution limits and retries
Test a new AI model against the current one in Connic. Compare cost and quality on real production requests to decide whether switching is worthwhile.
# Copy of refund-agent.yaml, one line changed
version: "1.0"
name: refund-agent-test-cheaper
description: Reviews refund requests and drafts a decision
system_prompt: |
Review the refund request and draft a decision.
model: connic/qwen3.6-35b-a3bA test suite can target the variant agent with the same cases and assertions. Exit codes plug into any pipeline, and the deploy gate can run the suite before the variant goes live. See testing
Token Usage reports spend by agent and by model, with EUR and USD kept in separate columns so a managed model and a BYOK model are never blended into one number. See usage docs
Alerts or hard limits on token cost can be scoped globally, per environment, or per agent, daily or monthly. Anomaly detection flags a run that costs far more than that agent's 30-day average. See observability
Compare the capabilities included in Connic for running your AI agents with what you need to build or add with other approaches.
| Feature | Connic | Provider SDK | Model router | Self-hosted |
|---|---|---|---|---|
| Ship without creating a provider account | Included | Not included | Not included | Not included |
| EU-only inference option | Included | Partial | Partial | Included |
| Per-model prices published in EUR | Included | Not included | Not included | Not included |
| Model-call retries and fallback models | Included | Not included | Included | Not included |
| One config for managed, BYOK, and self-hosted models | Included | Not included | Partial | Not included |
| Per-run trace with tool calls and token cost | Included | Not included | Partial | Not included |
| Spend alerts and hard limits | Included | Partial | Partial | Not included |
| A/B a model swap on live traffic | Included | Not included | Not included | Not included |
| Test suites and judges gating a model change | Included | Not included | Not included | Not included |
| No GPU capacity to operate | Included | Included | Included | Not included |