https://docs.docker.com/compose/how-tos/use-secrets/
Currently we use env vars for our LLM keys.
Such as the master key in
|
- LITELLM_MASTER_KEY={{ llm_context.litellm_master_key }} |
And the per-CRS keys (change how they are passed from provisioner to CRS).
Let's use secrets instead for best practice and security.
https://docs.docker.com/compose/how-tos/use-secrets/
Currently we use env vars for our LLM keys.
Such as the master key in
oss-crs/oss_crs/src/templates/run-crs-compose.docker-compose.yaml.j2
Line 98 in ceb67e0
And the per-CRS keys (change how they are passed from provisioner to CRS).
Let's use secrets instead for best practice and security.