+
{t('tools.setBuiltInTools.parameters')}
+
+ {detail.parameters.length > 0 && (
+
+ {detail.parameters.map((item: any, index) => (
+
+
+
{item.label[language]}
+
+ {getType(item.type)}
+
+ {item.required && (
+
{t('tools.setBuiltInTools.required')}
+ )}
+
+ {item.human_description && (
+
+ {item.human_description?.[language]}
+
+ )}
+
+ ))}
+
+ )}
+
+ {detail.output_schema && (
+ <>
+
+
OUTPUT
+ {outputSchema.length > 0 && (
+
+ {outputSchema.map((outputItem, index) => (
+
+
+
{outputItem.name}
+
{outputItem.type}
+
+ {outputItem.description && (
+
+ {outputItem.description}
+
+ )}
+
+ ))}
+
+ )}
+ >
+ )}
+