LlmCore.Router.RoutingTable (llm_core v0.3.0)

Copy Markdown View Source

In-memory representation of the routing rules loaded from YAML.

Summary

Types

t()

@type t() :: %LlmCore.Router.RoutingTable{
  default: LlmCore.Router.RouteEntry.t(),
  loaded_at: DateTime.t(),
  rules: %{optional(String.t()) => LlmCore.Router.RouteEntry.t()}
}

Functions

new(map)

@spec new(map()) :: t()