From 5541ceb13d81a01571d4f978a2c2949b449e90f9 Mon Sep 17 00:00:00 2001 From: Lars Date: Fri, 2 Jan 2026 13:46:50 +0100 Subject: [PATCH] Update LLM profiles in llm_profiles.yaml: Change models for 'synthesis_pro', 'synthesis_backup', and 'tech_expert' profiles to enhance performance and capabilities, reflecting the latest advancements in AI model offerings. --- config/llm_profiles.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/llm_profiles.yaml b/config/llm_profiles.yaml index db804ca..4892213 100644 --- a/config/llm_profiles.yaml +++ b/config/llm_profiles.yaml @@ -8,21 +8,21 @@ profiles: # Der "Architekt": Hochwertige Synthese. Fällt bei Fehlern auf den Backup-Cloud-Experten zurück. synthesis_pro: provider: "openrouter" - model: "gemini-1.5-mistralai/mistral-7b-instruct:free" + model: "google/gemini-2.0-flash-exp:free" temperature: 0.7 fallback_profile: "synthesis_backup" # Der "Vize": Leistungsstarkes Modell bei einem anderen Provider (Resilienz). synthesis_backup: provider: "openrouter" - model: "mistralai/mistral-large" + model: "meta-llama/llama-3.3-70b-instruct:free" temperature: 0.5 fallback_profile: "identity_safe" # Letzte Instanz: Lokal # Der "Ingenieur": Fachspezialist für Code. Nutzt bei Ausfall den Generalisten. tech_expert: provider: "openrouter" - model: "anthropic/claude-3.5-sonnet" + model: "qwen/qwen-2.5-vl-7b-instruct:free" temperature: 0.3 fallback_profile: "synthesis_pro"