# `GEPA.LLM.Response`
[🔗](https://github.com/nshkrdotcom/gepa_ex/blob/v0.3.0/lib/gepa/llm/response.ex#L1)

Normalized LLM adapter response.

# `t`

```elixir
@type t() :: %GEPA.LLM.Response{
  adapter: module() | nil,
  cost: map() | number() | nil,
  messages: [term()] | nil,
  metadata: map(),
  model: String.t() | nil,
  object: map() | nil,
  provider: atom() | nil,
  raw: term(),
  session_ref: term(),
  stop_reason: atom() | String.t() | nil,
  text: String.t() | nil,
  tool_calls: [term()],
  tool_results: [term()],
  usage: map() | nil
}
```

# `text`

```elixir
@spec text(t()) :: String.t()
```

---

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