# `PhoenixAI.Response`
[🔗](https://github.com/franciscpd/phoenix-ai/blob/main/lib/phoenix_ai/response.ex#L1)

Represents a completed response from an AI provider.

# `t`

```elixir
@type t() :: %PhoenixAI.Response{
  content: String.t() | nil,
  finish_reason: String.t() | nil,
  model: String.t() | nil,
  parsed: map() | nil,
  provider: atom() | nil,
  provider_response: map(),
  tool_calls: [PhoenixAI.ToolCall.t()],
  usage: PhoenixAI.Usage.t()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
