FunctionsAgents

Agent Tools

ai-research-agent / agents/agent-tools

AGENT_TOOLS

const AGENT_TOOLS: object[];

Defined in: src/agents/agent-tools.js:3

Type Declaration

NameTypeDefault valueDefined in

description

string

"Get current weather for a city. Input: city name. Returns temperature, conditions, and forecast."

src/agents/agent-tools.js:7

func()

(location: any) => Promise<string>

src/agents/agent-tools.js:10

name

string

"get_weather"

src/agents/agent-tools.js:6

schema

ZodObject<{ location: ZodString; }, "strip", ZodTypeAny, { location?: string; }, { location?: string; }>

src/agents/agent-tools.js:9