From 722787230874787d2cafd4537a41914a3082269d Mon Sep 17 00:00:00 2001 From: madina1203 Date: Fri, 24 Apr 2026 16:13:02 +0200 Subject: [PATCH] Fix node name mismatch --- streamlit_webapp/streamlit_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/streamlit_webapp/streamlit_utils.py b/streamlit_webapp/streamlit_utils.py index c48cf40..de6460b 100644 --- a/streamlit_webapp/streamlit_utils.py +++ b/streamlit_webapp/streamlit_utils.py @@ -305,10 +305,10 @@ def new_process_langgraph_output(k, v, session_id): contents.append({"type": "text", "content": f"Agent Supervisor is calling {agent_name}. \n\n"}) elif 'next' in v and v['next'] == "FINISH": contents.append({"type": "text", "content": "Chain finished"}) - elif k == "Entry_agent": + elif k == "Entry_Agent": content = v['messages'][0].content contents.append({"type": "text", "content": f"Entry agent: {content}. \n\n"}) - elif k == "Validator_agent": + elif k == "Validator": content = v['messages'][0].content contents.append({"type": "text", "content": f"Validator agent: {content}. \n\n"}) elif k == "ENPKG_agent":