Learn how to extend prompts with tools and create multi-step agents
AgentMark supports extending prompts with custom tools (like API calls or calculations) and creating agents that can make multiple LLM calls to solve complex tasks.
---name: weather-advisortext_config: model_name: gpt-4 tools: check_weather: description: Get current weather for a location parameters: type: object properties: location: type: string description: City or location name date: type: string description: Date to check (YYYY-MM-DD) required: ["location"]---<System>You are a travel advisor that can check weather conditions. Use the weather tool to provide accurate forecasts.</System><User>What's the weather like in Paris today?</User>