Support define is tool logic function (#17926)
- supports isTool and timeout settings in defineLogicFunction in apps and in setting tabs definition - compute for all toolInputSchema for logic funciton, in settings and in code steps <img width="991" height="802" alt="image" src="https://github.com/user-attachments/assets/05dc1221-cac9-45a3-87b0-3b13161446fd" />
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
import { type InputJsonSchema } from '@/logic-function';
|
||||
|
||||
export const DEFAULT_TOOL_INPUT_SCHEMA: InputJsonSchema = {
|
||||
type: 'object',
|
||||
properties: {},
|
||||
};
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
import { type InputJsonSchema } from '@/logic-function';
|
||||
|
||||
export const SEED_LOGIC_FUNCTION_INPUT_SCHEMA: InputJsonSchema = {
|
||||
type: 'object',
|
||||
properties: {
|
||||
a: { type: 'string' },
|
||||
b: { type: 'number' },
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user