We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 972a2bc commit afd87c7Copy full SHA for afd87c7
apps/sim/app/api/copilot/chat/route.ts
@@ -72,6 +72,8 @@ const ChatMessageSchema = z.object({
72
'knowledge',
73
'templates',
74
'docs',
75
+ 'table',
76
+ 'file',
77
]),
78
label: z.string(),
79
chatId: z.string().optional(),
@@ -81,6 +83,8 @@ const ChatMessageSchema = z.object({
81
83
blockIds: z.array(z.string()).optional(),
82
84
templateId: z.string().optional(),
85
executionId: z.string().optional(),
86
+ tableId: z.string().optional(),
87
+ fileId: z.string().optional(),
88
})
89
)
90
.optional(),
0 commit comments