You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/sim/stores/panel-new/copilot/tools.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,14 +3,14 @@ export const COPILOT_TOOLS = [
3
3
{
4
4
id: 'run_workflow',
5
5
description:
6
-
'Execute the current workflow. Use this to run workflows that require manual execution or chat input.',
6
+
'Execute the current workflow. Use this to run workflows that require manual execution or input fields.',
7
7
parameters: {
8
8
type: 'object',
9
9
properties: {
10
10
workflow_input: {
11
-
type: 'string',
11
+
type: 'object',
12
12
description:
13
-
'Optional chat or message to include with the workflow execution. If the workflow requires chat input, you must supply a chat message here.',
13
+
'JSON object with key-value mappings where each key is an input field name required by the workflow. For example: {"message": "Hello", "temperature": 0.7}',
0 commit comments