Model Pricing
Use the built-in pricing component to configure model pricing catalogs for
cost estimates on managed or manually observed LLM responses. Manual lifecycle
end events must supply a response codec or normalized response annotation with
model and token usage. Relay leaves cost absent when no configured source
matches the provider, model, and token usage.
Configuration
Add the pricing component to plugins.toml. The following configuration
loads a JSON catalog and defines an inline catalog. Relay searches sources in
the listed order, so place overrides before their fallbacks:
Use type = "file" with a JSON catalog path or type = "inline" with the
catalog in plugins.toml. Relay checks sources and catalog entries in listed
order, and it uses the first entry that matches the provider and model.
Relay publishes a numeric total only when every nonzero usage category has a
configured rate. If a response reports nonzero cache-read or cache-write usage
and the matching catalog entry omits cache_read_per_million or
cache_write_per_million, Relay keeps the priced components but omits the
aggregate total. Set a rate to 0.0 when a category is intentionally free.
When Relay merges explicit-or-user and system configuration files, it prepends
higher-priority sources instead of replacing lower-priority sources. The
effective order is system, then explicit-or-user. This lets an
enterprise catalog override narrower catalogs while preserving those catalogs
as fallbacks.
Manage Catalog Sources with the CLI
Run the following commands to validate a catalog and add it to user configuration:
Replace <path/to/pricing.json> with the path to your pricing catalog before
running either command. Use --user for the user configuration file or
--global for system configuration at /etc/nemo-relay/plugins.toml on Unix or
%ProgramData%\nemo-relay\plugins.toml on Windows. add-source places a new
source ahead of existing sources by default. Use --append to keep it as a
fallback.
Verify the Active Configuration
Run the following command to resolve a model against the configured catalogs:
Use nemo-relay doctor to validate configured model pricing sources with the
rest of the gateway configuration. Refer to Add Model Pricing for Cost
Estimates
for the catalog schema, source precedence, and complete CLI workflow.