added proxy

This commit is contained in:
2026-07-07 10:51:16 +03:00
parent d793ea90ba
commit b10ed102aa
6 changed files with 192 additions and 49 deletions
+3 -1
View File
@@ -11,6 +11,7 @@ from services.llm import (
LLM_FALLBACK_MODEL,
LLMError,
SYSTEM_MODEL,
get_llm_settings,
send_message,
send_message_with_model,
)
@@ -78,7 +79,8 @@ async def debug_config():
"sd_checkpoint": sd_service.SD_CHECKPOINT,
"sd_steps": sd_service.SD_STEPS,
"sd_cfg": sd_service.SD_CFG,
"router_key_set": bool(os.getenv("ROUTER_KEY")),
"router_key_set": bool(os.getenv("ROUTER_KEY") or os.getenv("LLM_API_KEY")),
"llm": get_llm_settings().public_status(),
}