Skip to content

Commit

Permalink
Merge pull request #11 from picahq/fix/filter-by-supported-actions
Browse files Browse the repository at this point in the history
chore: filter actions by supported
  • Loading branch information
paulkr authored Feb 27, 2025
2 parents ad626e0 + bd3297d commit f8cb5a0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.1.0",
"version": "2.1.1",
"description": "Pica AI SDK for Vercel AI SDK integration",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/pica.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ ${availablePlatformsInfo}
skip: number,
limit: number
}>(
`${this.availableActionsUrl}?connectionPlatform=${platform}&skip=${skip}&limit=${limit}`,
`${this.availableActionsUrl}?supported=true&connectionPlatform=${platform}&skip=${skip}&limit=${limit}`,
{ headers: this.generateHeaders() }
).then(response => response.data);

Expand Down

0 comments on commit f8cb5a0

Please sign in to comment.