Feat: Edit the output data of the code operator #3221 (#8649)

### What problem does this PR solve?

Feat: Edit the output data of the code operator #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-07-03 17:29:02 +08:00
committed by GitHub
parent 612abd6d89
commit a4d97dcf12
8 changed files with 144 additions and 41 deletions

View File

@ -135,9 +135,10 @@ export interface IRetrievalForm {
}
export interface ICodeForm {
inputs?: Array<{ name?: string; component_id?: string }>;
arguments: Record<string, string>;
lang: string;
script?: string;
outputs: Record<string, { value: string; type: string }>;
}
export interface IAgentForm {