From 49405782af49100119b83b689cb4bee2a2e4c651 Mon Sep 17 00:00:00 2001 From: goulustis Date: Sat, 28 Feb 2026 10:56:23 +0800 Subject: [PATCH] add default value for streamable_tags --- lang_agent/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang_agent/base.py b/lang_agent/base.py index cffc9be..c34be9c 100644 --- a/lang_agent/base.py +++ b/lang_agent/base.py @@ -32,7 +32,7 @@ class LangToolBase(ABC): class GraphBase(ABC): workflow: CompiledStateGraph # the main workflow - streamable_tags: List[List[str]] # which llm to stream outputs; see routing.py for complex usage + streamable_tags: List[List[str]] = [["main_llm"]] # which llm to stream outputs; see routing.py for complex usage textreleaser_delay_keys: List[str] = (None, None) # use to control when to start streaming; see routing.py for complex usage def _build_modules(self):