mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-11 22:51:28 +00:00
* refactor(rust): extract config crate * refactor(config): split crate modules * refactor(gateway): remove gil health counter
13 lines
578 B
YAML
13 lines
578 B
YAML
# Sample realtime config for the LiteLLM Rust AI Gateway.
|
|
#
|
|
# litellm-config resolves this model_list at boot through the Python config
|
|
# reader (litellm.proxy.read_model_list), then the gateway builds its router.
|
|
# Includes, environment secrets, and database-stored models still work.
|
|
#
|
|
# Secrets are referenced (never inlined) via os.environ/. A real deploy can
|
|
# override this file (e.g. mount a Render secret file at LITELLM_CONFIG_PATH).
|
|
model_list:
|
|
- model_name: gpt-realtime
|
|
litellm_params:
|
|
model: openai/gpt-realtime
|
|
api_key: os.environ/OPENAI_API_KEY
|