# `LlmCore.Router.ResolvedRoute`
[🔗](https://github.com/fosferon/llm_core/blob/v0.3.0/lib/llm_core/router/structs.ex#L124)

Fully-realized routing decision containing the agent metadata.

# `t`

```elixir
@type t() :: %LlmCore.Router.ResolvedRoute{
  agent: any(),
  alias: String.t(),
  mode: :abstracted | :passthrough
}
```

# `new`

```elixir
@spec new(String.t(), :abstracted | :passthrough, any()) :: t()
```

Creates a new `ResolvedRoute` with the given alias, mode, and agent.

---

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