connic/claude-opus-5- Context
- 1M
- Input / 1M
- €6.50
- Output / 1M
- €26.00
Every agent names its own model: an EU-hosted connic/* model with no account to create, your own provider key, or an endpoint you host. Retries and cross-provider failover come with it.
Read the model configuration docsPick one per agent, and any of them can serve as that agent's fallback. Moving to a different provider is a one-line change, not a rewrite.
model: connic/glm-5.2model: anthropic/claude-sonnet-4-5model: vllm/mistral-7bA single Project can mix all three. See the provider prefixes and required credentials.
A selection from the managed catalog, priced in net EUR per million tokens and billed from Project credit. Every connic/* ID points at one named model and keeps pointing at it, so a deploy never swaps out the model you tested.
| Model | Context | Inputs & strengths | Input / 1M | Output / 1M |
|---|---|---|---|---|
connic/claude-opus-5Anthropic · Provider terms | 1M | TextVisionReasoning | €6.50 | €26.00 |
connic/claude-sonnet-5Anthropic · Provider terms | 1M | TextVisionReasoning | €2.60 | €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.60 | €15.60 |
connic/gpt-5.6-lunaOpenAI · Provider terms | 1M | TextVisionReasoning | €1.10 | €6.30 |
connic/gemini-3.5-flashGoogle · Provider terms | 1M | TextVisionAudioReasoning | €1.40 | €8.40 |
connic/gemini-3.1-flash-liteGoogle · Provider terms | 1M | TextVisionAudioReasoning | €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.7No regional flag to remember and no global fallback hidden behind the model ID.
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. Your Project is fully EU-resident when its deployment region and every configured provider, tool, guardrail, judge, and data destination are EU-resident too.
Your model choice sits in Git next to the prompt and the tools, so switching model is a pull request with a reviewer, not a console setting nobody can trace.
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.5-397b-a17b
fallback_model: anthropic/claude-sonnet-4-5
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.
Rate limits, timeouts, and revoked keys are everyday events once agents run in production. Connic handles them at the model call, not in your application code.
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.
fallback_model takes over on timeouts, rate limits, unavailable providers, and on authentication, quota, or unknown-model errors. An eligible error switches model straight away instead of burning the remaining attempts. Managed primary with BYOK fallback works, and so does the reverse.
A run that switched is flagged in its trace. Filter the run list with the expression context.fallback_model_used to see how often a provider let you down last week.
Switch on context_compression and 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
New models ship every few weeks. Run a candidate beside the model you already trust, on real traffic, and compare cost and quality before you commit.
# 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-a3bPoint a test suite at the variant agent and run the same cases with the same 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
Set alerts or hard limits on token cost, 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
What has to exist around it in production, compared with the usual ways to run inference
| 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 |
| Retries and cross-provider failover | 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 |