From 38b0d5df157883d6a8053b1e0010e56704c709c0 Mon Sep 17 00:00:00 2001 From: goulustis Date: Thu, 5 Mar 2026 14:42:14 +0800 Subject: [PATCH] change default port --- lang_agent/pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang_agent/pipeline.py b/lang_agent/pipeline.py index 025be73..c79beec 100644 --- a/lang_agent/pipeline.py +++ b/lang_agent/pipeline.py @@ -62,7 +62,7 @@ class PipelineConfig(LLMNodeConfig): host: str = "0.0.0.0" """where am I hosted""" - port: int = 8588 + port: int = 8500 """what is my port""" # graph_config: AnnotatedGraph = field(default_factory=ReactGraphConfig)