mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-10 20:44:42 +02:00
fix(stt): joindre LiteLLM en IP directe (192.168.10.1:4000)
L'indirection litellm-ext (Service sans sélecteur + Endpoints manuel) ne routait pas
('All connection attempts failed'). open-webui joint LiteLLM en IP directe — on copie
ce pattern éprouvé et on supprime litellm-external.yaml.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_013FmcxGsyXZXogiAHQLjnZT
This commit is contained in:
parent
35f37bd293
commit
ed387d9a3a
6 changed files with 14 additions and 36 deletions
|
|
@ -6,9 +6,9 @@ import os
|
|||
|
||||
|
||||
class Settings:
|
||||
# LiteLLM (s01) — joint via un Service ExternalName/Endpoints dans le cluster.
|
||||
# LiteLLM (s01) — joint en IP directe depuis le cluster (cf. open-webui).
|
||||
litellm_url: str = os.getenv(
|
||||
"STT_LITELLM_URL", "http://litellm-ext:4000/v1/chat/completions"
|
||||
"STT_LITELLM_URL", "http://192.168.10.1:4000/v1/chat/completions"
|
||||
)
|
||||
litellm_key: str = os.getenv("STT_LITELLM_KEY", "lm-studio")
|
||||
model: str = os.getenv("STT_MODEL", "hermes-default")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue