feat(ai): default to Claude Sonnet 4.6 / Haiku 4.5, refresh model list

Sets the default AI chat model to anthropic/claude-sonnet-4.6 and the
default text-generation (WYSIWYG writing) model to anthropic/claude-
haiku-4.5 across all three layers where defaults live: the backend
hydrateDefaults() fallback in AiConfigurationService, the frontend
createDefaults() in AiConfigurationForm, and the docblock example in
AiTextGenerationService.

Refreshes the DriverRegistryProvider suggested-model list to only
include recent models from Anthropic (Sonnet 4.6, Haiku 4.5, Opus
4.6), OpenAI (GPT-5.4, GPT-5.4 mini), Google (Gemini 3.1 Pro preview,
Gemini 3.1 Flash Lite preview) and Z.AI (GLM 5.1, GLM 4.7 Flash).
Drops GPT-4o, Claude 3.5, Gemini 1.5 and Llama 3.3.

The underlying config still accepts any OpenRouter model ID, so the
suggested list is purely a UX surface — existing companies with a
custom ai_chat_model retain their value untouched.
This commit is contained in:
Darko Gjorgjijoski
2026-04-11 20:54:32 +02:00
parent a01771ddf4
commit 0da640c0df
4 changed files with 15 additions and 12 deletions

View File

@@ -18,8 +18,8 @@ use App\Support\Ai\AiException;
* - ai_text_generation_model picks which model to use
*
* That means an instance can use a cheap fast model for one-shot writing
* (openai/gpt-4o-mini) while pointing chat at a smarter model
* (openai/gpt-4o) without config gymnastics.
* (anthropic/claude-haiku-4.5) while pointing chat at a smarter model
* (anthropic/claude-sonnet-4.6) without config gymnastics.
*/
class AiTextGenerationService
{