Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
himanshu-dixit committed Jan 4, 2025
1 parent 4d13503 commit 0eb24df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/src/frameworks/vercel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ export class VercelAIToolSet extends BaseComposioToolSet {
private generateVercelTool(schema: RawActionData) {
return tool({
description: schema.description,
parameters: jsonSchema(schema.parameters as unknown as any),
// @ts-ignore the type are JSONSchemV7. Internally it's resolved
parameters: jsonSchema(schema.parameters as unknown),
execute: async (params) => {
return await this.executeToolCall(
{
Expand Down

0 comments on commit 0eb24df

Please sign in to comment.