Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion desktop/src/features/agents/ui/ModelPicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions desktop/src/features/channels/ui/AddChannelBotDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 ? (
Expand Down