From dcfd6fb1a820e9c198624e4386648b8e7877534d Mon Sep 17 00:00:00 2001 From: Vladimir Kopylov Date: Wed, 25 Feb 2026 23:47:17 +0300 Subject: [PATCH 1/2] Add Mistral provider profile --- config.example.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config.example.toml b/config.example.toml index e0fad92..b27ceaf 100644 --- a/config.example.toml +++ b/config.example.toml @@ -210,3 +210,12 @@ profile = "local-qwen" # reuse a profile's base_url + api_key for e model = "nomic-embed-text" # embedding model chunk_size = 512 top_k = 5 + +[[profiles]] +name = "Mistral" +provider_type = "OpenAICompatible" +base_url = "https://api.mistral.ai/v1" +api_key = "your-api-key" +default_model = "mistral-7b-v0.1" +priority = 70 +enabled = true From 6aec94fb8d44868919cec75ef3f9f4440993e5db Mon Sep 17 00:00:00 2001 From: Vladimir Kopylov Date: Thu, 26 Feb 2026 12:41:23 +0300 Subject: [PATCH 2/2] Fix Mistral profile per maintainer review --- config.example.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config.example.toml b/config.example.toml index b27ceaf..6627610 100644 --- a/config.example.toml +++ b/config.example.toml @@ -107,6 +107,15 @@ default_model = "glm-4.6" enabled = true priority = 70 +[[profiles]] +name = "mistral" +provider_type = "OpenAICompatible" +base_url = "https://api.mistral.ai/v1" +api_key = "YOUR_MISTRAL_KEY" +default_model = "mistral-small-latest" +priority = 70 +enabled = true + # ─── OAuth Subscription Profiles ─────────────────────── # Login first: claudex auth login --profile