Skip to content

Commit 1ef54db

Browse files
committed
fix: typos in gh tools
1 parent a2be7d5 commit 1ef54db

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/calling-apis/chatbot/app/(ai-sdk)/lib/tools/list-repositories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { TokenVaultError } from "@auth0/ai/interrupts";
88

99
export const listRepositories = withGitHub(
1010
tool({
11-
description: "List respositories for the current user on GitHub",
11+
description: "List repositories for the current user on GitHub",
1212
inputSchema: z.object({}),
1313
execute: async () => {
1414
// Get the access token from Auth0 AI

examples/calling-apis/chatbot/app/(genkit)/lib/tools/list-repositories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { TokenVaultError } from "@auth0/ai/interrupts";
99
export const listRepositories = ai.defineTool(
1010
...withGitHub(
1111
{
12-
description: "List respositories for the current user on GitHub",
12+
description: "List repositories for the current user on GitHub",
1313
inputSchema: z.object({}),
1414
name: "listRepositories",
1515
},

examples/calling-apis/chatbot/app/(llamaindex)/lib/tools/list-repositories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export const listRepositories = () =>
3636
},
3737
{
3838
name: "listRepositories",
39-
description: "List respositories for the current user on GitHub",
39+
description: "List repositories for the current user on GitHub",
4040
parameters: z.object({}),
4141
}
4242
)

0 commit comments

Comments
 (0)