Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 30 additions & 3 deletions apps/sim/lib/copilot/generated/tool-catalog-v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1245,7 +1245,16 @@ export const File: ToolCatalogEntry = {
name: 'file',
route: 'subagent',
mode: 'async',
parameters: { type: 'object' },
parameters: {
properties: {
prompt: {
description:
"Optional brief instruction (one short sentence) to scope the task. The agent inherits the full conversation history — do NOT restate or rewrite conversation content, only add scoping the history doesn't convey.",
type: 'string',
},
},
type: 'object',
},
subagentId: 'file',
internal: true,
}
Expand Down Expand Up @@ -2716,7 +2725,16 @@ export const Media: ToolCatalogEntry = {
name: 'media',
route: 'subagent',
mode: 'async',
parameters: { type: 'object' },
parameters: {
properties: {
prompt: {
description:
"Optional brief instruction (one short sentence) to scope the task. The agent inherits the full conversation history — do NOT restate or rewrite conversation content, only add scoping the history doesn't convey.",
type: 'string',
},
},
type: 'object',
},
subagentId: 'media',
internal: true,
}
Expand Down Expand Up @@ -4176,7 +4194,16 @@ export const Workflow: ToolCatalogEntry = {
name: 'workflow',
route: 'subagent',
mode: 'async',
parameters: { type: 'object' },
parameters: {
properties: {
prompt: {
description:
"Optional brief instruction (one short sentence) to scope the task. The agent inherits the full conversation history — do NOT restate or rewrite conversation content, only add scoping the history doesn't convey.",
type: 'string',
},
},
type: 'object',
},
subagentId: 'workflow',
internal: true,
}
Expand Down
21 changes: 21 additions & 0 deletions apps/sim/lib/copilot/generated/tool-schemas-v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1051,6 +1051,13 @@ export const TOOL_RUNTIME_SCHEMAS: Record<string, ToolRuntimeSchemaEntry> = {
},
file: {
parameters: {
properties: {
prompt: {
description:
"Optional brief instruction (one short sentence) to scope the task. The agent inherits the full conversation history — do NOT restate or rewrite conversation content, only add scoping the history doesn't convey.",
type: 'string',
},
},
type: 'object',
},
resultSchema: undefined,
Expand Down Expand Up @@ -2498,6 +2505,13 @@ export const TOOL_RUNTIME_SCHEMAS: Record<string, ToolRuntimeSchemaEntry> = {
},
media: {
parameters: {
properties: {
prompt: {
description:
"Optional brief instruction (one short sentence) to scope the task. The agent inherits the full conversation history — do NOT restate or rewrite conversation content, only add scoping the history doesn't convey.",
type: 'string',
},
},
type: 'object',
},
resultSchema: undefined,
Expand Down Expand Up @@ -3940,6 +3954,13 @@ export const TOOL_RUNTIME_SCHEMAS: Record<string, ToolRuntimeSchemaEntry> = {
},
workflow: {
parameters: {
properties: {
prompt: {
description:
"Optional brief instruction (one short sentence) to scope the task. The agent inherits the full conversation history — do NOT restate or rewrite conversation content, only add scoping the history doesn't convey.",
type: 'string',
},
},
type: 'object',
},
resultSchema: undefined,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export type AbortRedisResultKey = keyof typeof AbortRedisResult
export type AbortRedisResultValue = (typeof AbortRedisResult)[AbortRedisResultKey]

export const AuthKeyMatch = {
Enterprise: 'enterprise',
None: 'none',
User: 'user',
} as const
Expand Down
Loading