Merge pull request #2698 from QwenLM/refactor/subagent-model-selection

feat: add cross-provider model selection for subagents
This commit is contained in:
tanzhenxin 2026-04-01 16:17:54 +08:00 committed by GitHub
commit 63f1963377
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 860 additions and 246 deletions

View file

@ -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>