feat: add tool params node & tool params add array type (#2824)

* add tool params node

* add tool params enum

* node response

* tool add array type params

* fix tool params

* fix

* fix

* fix
This commit is contained in:
heheer
2024-09-28 15:58:55 +08:00
committed by shilin66
parent 6425249a4e
commit 942e6c0b08
26 changed files with 438 additions and 28 deletions

View File

@@ -355,6 +355,12 @@ export const WholeResponseContent = ({
{/* form input */}
<Row label={t('workflow:form_input_result')} value={activeModule?.formInputResult} />
{/* tool params */}
<Row
label={t('workflow:tool_params.tool_params_result')}
value={activeModule?.toolParamsResult}
/>
</Box>
) : null;
};