Skip to content

Commit

Permalink
Merge pull request #7 from picahq/chore/update-gemini-execute-parameters
Browse files Browse the repository at this point in the history
chore: update gemini tool zod parameter definition
  • Loading branch information
paulkr authored Feb 14, 2025
2 parents 69c9aa1 + 6ce67a5 commit f29de78
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@picahq/ai",
"version": "2.0.4",
"version": "2.0.5",
"description": "Pica AI SDK for Vercel AI SDK integration",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions src/pica.ts
Original file line number Diff line number Diff line change
Expand Up @@ -426,9 +426,9 @@ ${connectionsInfo}
}),
method: z.string(),
connectionKey: z.string(),
data: z.object({}).passthrough().optional(),
pathVariables: z.object({}).passthrough().optional(),
queryParams: z.object({}).passthrough().optional(),
data: z.any().optional(),
pathVariables: z.any().optional(),
queryParams: z.any().optional(),
}),
execute: async (params: {
platform: string;
Expand Down

0 comments on commit f29de78

Please sign in to comment.