chore(settings): align default ai model handling

This commit is contained in:
2026-03-31 22:52:29 +02:00
parent 6e84b022c3
commit 05eeaab3f7
4 changed files with 14 additions and 12 deletions
@@ -1,3 +1,4 @@
import { DEFAULT_OPENAI_MODEL } from "@capakraken/shared";
import { InfoTooltip } from "~/components/ui/InfoTooltip.js";
import {
INPUT_CLASS,
@@ -153,14 +154,14 @@ export function AiProviderPanel({
id="ai-model"
type="text"
className={INPUT_CLASS}
placeholder={provider === "azure" ? "my-gpt4o-deployment" : "gpt-4o-mini"}
placeholder={provider === "azure" ? "capakraken-gpt-5-4" : DEFAULT_OPENAI_MODEL}
value={model}
onChange={(event) => onModelChange(event.target.value)}
/>
<p className="mt-1 text-xs text-gray-400 dark:text-gray-500">
{provider === "azure"
? "The deployment name chosen when deploying the model in Azure."
: "The model identifier, for example gpt-4o-mini or gpt-4o."}
: `The model identifier, for example ${DEFAULT_OPENAI_MODEL} or gpt-5.4-pro.`}
</p>
</div>