Skip to content

Response Tools

Overview

Response tools are a Built in function tools provided by the API providers

Quick Start

csharp
using LlmTornado.Agents;
using LlmTornado.Responses;

TornadoAgent Agent = new TornadoAgent(
            client: api,
            model: ChatModel.OpenAi.Gpt5.V5Mini,
            name: "assistant",
            instructions: instructions);

Agent.ResponseOptions = new ResponseRequest() { Tools = [new ResponseWebSearchTool()] };

Conversation result = await agent.RunAsync("What is the weather in Boston Ma?");