feat(api): route the npc role to its own model

This commit is contained in:
2026-07-10 12:11:54 -05:00
parent 69729f7673
commit 6cd5003930
3 changed files with 18 additions and 0 deletions

View File

@@ -18,5 +18,9 @@ def narrator_model() -> str:
return os.environ.get("OLLAMA_NARRATOR_MODEL", "qwen3.5:latest")
def npc_model() -> str:
return os.environ.get("OLLAMA_NPC_MODEL", "qwen3.5:latest")
def call_log_path() -> str | None:
return os.environ.get("CALL_LOG_PATH") or None