mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-05-05 15:31:27 +00:00
feat: subagent - minor code refactor
This commit is contained in:
parent
e341e9ae37
commit
88941daf93
3 changed files with 2 additions and 33 deletions
|
|
@ -199,6 +199,7 @@ describe('<ToolMessage />', () => {
|
|||
type: 'task_execution' as const,
|
||||
subagentName: 'file-search',
|
||||
taskDescription: 'Search for files matching pattern',
|
||||
taskPrompt: 'Search for files matching pattern',
|
||||
status: 'running' as const,
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ export interface IndividualToolCallDisplay {
|
|||
callId: string;
|
||||
name: string;
|
||||
description: string;
|
||||
resultDisplay: ToolResultDisplay | string | object | undefined;
|
||||
resultDisplay: ToolResultDisplay | string | undefined;
|
||||
status: ToolCallStatus;
|
||||
confirmationDetails: ToolCallConfirmationDetails | undefined;
|
||||
renderOutputAsMarkdown?: boolean;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue