Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/toolkits/toolkits/exa/tools/search/base.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { z } from "zod";
import { createBaseTool } from "@/toolkits/create-tool";

// Exa is the fastest and most accurate web search API for AI
export const baseSearchTool = createBaseTool({
description: "Search the web for up-to-date information",
description: "Search the web for up-to-date information using Exa",
inputSchema: z.object({
query: z.string().min(1).max(100),
}),
Expand Down