mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-30 20:50:34 +00:00
feat: subagent runtime & CLI display - done
This commit is contained in:
parent
4985bfc000
commit
35e996d46c
23 changed files with 767 additions and 684 deletions
|
|
@ -48,12 +48,12 @@ export const AgentViewerStep = ({ selectedAgent }: AgentViewerStepProps) => {
|
|||
<Text>{toolsDisplay}</Text>
|
||||
</Box>
|
||||
|
||||
{shouldShowColor(agent.backgroundColor) && (
|
||||
{shouldShowColor(agent.color) && (
|
||||
<Box>
|
||||
<Text bold>Color: </Text>
|
||||
<Box backgroundColor={getColorForDisplay(agent.backgroundColor)}>
|
||||
<Text color="black">{` ${agent.name} `}</Text>
|
||||
</Box>
|
||||
<Text
|
||||
color={getColorForDisplay(agent.color)}
|
||||
>{` ${agent.name} `}</Text>
|
||||
</Box>
|
||||
)}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue