mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-05-04 22:51:08 +00:00
Merge pull request #2698 from QwenLM/refactor/subagent-model-selection
feat: add cross-provider model selection for subagents
This commit is contained in:
commit
63f1963377
20 changed files with 860 additions and 246 deletions
|
|
@ -40,6 +40,13 @@ export const AgentViewerStep = ({ selectedAgent }: AgentViewerStepProps) => {
|
|||
<Text>{toolsDisplay}</Text>
|
||||
</Box>
|
||||
|
||||
{agent.model && (
|
||||
<Box>
|
||||
<Text color={theme.text.primary}>{t('Model: ')}</Text>
|
||||
<Text>{agent.model}</Text>
|
||||
</Box>
|
||||
)}
|
||||
|
||||
{shouldShowColor(agent.color) && (
|
||||
<Box>
|
||||
<Text color={theme.text.primary}>{t('Color: ')}</Text>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue