fix(desktop): improve model picker message and runtime dropdown clarity (#778)

This commit is contained in:
Will Pfleger
2026-05-28 18:21:12 -04:00
committed by GitHub
parent 9db8f6ccb8
commit 03e678cfbc
2 changed files with 15 additions and 1 deletions
+10 -1
View File
@@ -126,7 +126,16 @@ export function ModelPicker({
</div>
) : !modelsData.supportsSwitching ? (
<div className="px-3 py-2 text-sm text-muted-foreground">
This agent uses the runtime&apos;s default model.
{agent.model ? (
<>
<p className="font-medium text-foreground">{agent.model}</p>
<p className="mt-0.5 text-xs">
This runtime does not support switching models.
</p>
</>
) : (
"This agent uses the runtime's default model."
)}
</div>
) : (
<DropdownMenuRadioGroup
@@ -563,6 +563,11 @@ export function AddChannelBotDialog({
</DropdownMenuRadioGroup>
</DropdownMenuContent>
</DropdownMenu>
<p className="text-xs text-muted-foreground">
{selectedPersonas.some((p) => p.provider)
? "Personas with a preferred runtime will use their own instead of this selection."
: "Default runtime for all deployed agents."}
</p>
</div>
{teams.length > 0 ? (