mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 19:52:02 +00:00
feat: enhances the capabilities of subagents by allowing them to use tools that require user
confirmation
This commit is contained in:
parent
88941daf93
commit
d0735e8eb4
8 changed files with 383 additions and 297 deletions
|
|
@ -106,7 +106,13 @@ const SubagentExecutionRenderer: React.FC<{
|
|||
data: TaskResultDisplay;
|
||||
availableHeight?: number;
|
||||
childWidth: number;
|
||||
}> = ({ data }) => <AgentExecutionDisplay data={data} />;
|
||||
}> = ({ data, availableHeight, childWidth }) => (
|
||||
<AgentExecutionDisplay
|
||||
data={data}
|
||||
availableHeight={availableHeight}
|
||||
childWidth={childWidth}
|
||||
/>
|
||||
);
|
||||
|
||||
/**
|
||||
* Component to render string results (markdown or plain text)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue