> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://developers.meshapi.ai/llms.txt.
> For full documentation content, see https://developers.meshapi.ai/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developers.meshapi.ai/_mcp/server.

# Responses API (Reasoning)

> Query reasoning models with the Go SDK.

# Responses API (Reasoning)

Access models like OpenAI's o-series that require a specific reasoning interface.

```go
resp, err := client.Responses.Create(ctx, meshapi.ResponsesParams{
    Model: "openai/o3-mini",
    Input: "Explain quantum computing in one sentence.",
    Reasoning: &meshapi.ReasoningParams{
        Effort: "medium",
    },
})

if err == nil {
    fmt.Println(resp.Output)
}
```

Streaming is also supported via `client.Responses.Stream(ctx, params)`.