mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-06-06 19:35:44 +02:00
commit
43d124c1a0
2 changed files with 5 additions and 2 deletions
|
|
@ -200,7 +200,7 @@ export const WorkflowTool = z.object({
|
|||
description: z.string(),
|
||||
})),
|
||||
required: z.array(z.string()).optional(),
|
||||
}).optional(),
|
||||
}),
|
||||
});
|
||||
|
||||
export const AgenticAPIAgent = WorkflowAgent
|
||||
|
|
|
|||
|
|
@ -273,7 +273,10 @@ function reducer(state: State, action: Action): State {
|
|||
draft.workflow?.tools.push({
|
||||
name: newToolName,
|
||||
description: "",
|
||||
parameters: undefined,
|
||||
parameters: {
|
||||
type: "object",
|
||||
properties: {},
|
||||
},
|
||||
mockInPlayground: true,
|
||||
autoSubmitMockedResponse: true,
|
||||
...action.tool
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue