Skip to content

Commit 65941a7

Browse files
committed
fix: call-actor input
1 parent 703db22 commit 65941a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/actor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,8 @@ export const getActor: ToolEntry = {
265265
const callActorArgs = z.object({
266266
actorName: z.string()
267267
.describe('The name of the Actor to call.'),
268-
input: z.any()
269-
.describe('The input to pass to the Actor.'),
268+
input: z.object({}).passthrough()
269+
.describe('The input JSON to pass to the Actor.'),
270270
callOptions: z.object({
271271
memory: z.number().optional(),
272272
timeout: z.number().optional(),

0 commit comments

Comments
 (0)