We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 703db22 commit 65941a7Copy full SHA for 65941a7
src/tools/actor.ts
@@ -265,8 +265,8 @@ export const getActor: ToolEntry = {
265
const callActorArgs = z.object({
266
actorName: z.string()
267
.describe('The name of the Actor to call.'),
268
- input: z.any()
269
- .describe('The input to pass to the Actor.'),
+ input: z.object({}).passthrough()
+ .describe('The input JSON to pass to the Actor.'),
270
callOptions: z.object({
271
memory: z.number().optional(),
272
timeout: z.number().optional(),
0 commit comments