-
Hi Guys, I have 2 instances of openwebui with litellm (via docker compose) and the only difference is: instance 2 has a postgres db backend for config. I added Perplexity to litellm config on both instances (so they have the same litellm-config.yaml): [...]
- model_name: "Perplexity Sonar Pro"
litellm_params:
model: "perplexity/sonar-pro"
api_key: "os.environ/PERPLEXITYAI_API_KEY"
[...] and got a Is for some reason the PERPLEXITYAI_API_KEY not picked up when using db backend? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Nevermimd, i fixed it by executing a |
Beta Was this translation helpful? Give feedback.
Nevermimd, i fixed it by executing a
docker compose down proxy && docker compose up -d
on instance 2. now everything is ok