refactor(chat): drop alternate streaming entry path; use graph_stream

This commit is contained in:
CREDO23 2026-05-07 19:25:20 +02:00
parent 52895e37e9
commit 7e07092f67
23 changed files with 61 additions and 1278 deletions

View file

@ -490,12 +490,6 @@ class Config:
ENABLE_DESKTOP_LOCAL_FILESYSTEM = (
os.getenv("ENABLE_DESKTOP_LOCAL_FILESYSTEM", "FALSE").upper() == "TRUE"
)
# Streaming entrypoint switch. Keep this at the route layer so orchestrator
# code stays free of legacy fallback branching.
ENABLE_CHAT_STREAM_ORCHESTRATOR = (
os.getenv("SURFSENSE_ENABLE_CHAT_STREAM_ORCHESTRATOR", "TRUE").upper()
== "TRUE"
)
@classmethod
def is_self_hosted(cls) -> bool: