mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 19:52:02 +00:00
feat: subagent feature wip
This commit is contained in:
parent
549f296eb5
commit
6b09aee32b
30 changed files with 329 additions and 239 deletions
|
|
@ -17,7 +17,7 @@ import {
|
|||
TodoResultDisplay,
|
||||
TaskResultDisplay,
|
||||
} from '@qwen-code/qwen-code-core';
|
||||
import { SubagentExecutionDisplay } from '../subagents/index.js';
|
||||
import { AgentExecutionDisplay } from '../subagents/index.js';
|
||||
|
||||
const STATIC_HEIGHT = 1;
|
||||
const RESERVED_LINE_COUNT = 5; // for tool name, status, padding etc.
|
||||
|
|
@ -106,7 +106,7 @@ const SubagentExecutionRenderer: React.FC<{
|
|||
data: TaskResultDisplay;
|
||||
availableHeight?: number;
|
||||
childWidth: number;
|
||||
}> = ({ data }) => <SubagentExecutionDisplay data={data} />;
|
||||
}> = ({ data }) => <AgentExecutionDisplay data={data} />;
|
||||
|
||||
/**
|
||||
* Component to render string results (markdown or plain text)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue