Skip to content

Commit 09b836c

Browse files
authored
Merge pull request #171 from HolobiomicsLab/dev_madina
Fix node name mismatch
2 parents 8adb7a3 + 7227872 commit 09b836c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

streamlit_webapp/streamlit_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,10 +305,10 @@ def new_process_langgraph_output(k, v, session_id):
305305
contents.append({"type": "text", "content": f"Agent Supervisor is calling {agent_name}. \n\n"})
306306
elif 'next' in v and v['next'] == "FINISH":
307307
contents.append({"type": "text", "content": "Chain finished"})
308-
elif k == "Entry_agent":
308+
elif k == "Entry_Agent":
309309
content = v['messages'][0].content
310310
contents.append({"type": "text", "content": f"Entry agent: {content}. \n\n"})
311-
elif k == "Validator_agent":
311+
elif k == "Validator":
312312
content = v['messages'][0].content
313313
contents.append({"type": "text", "content": f"Validator agent: {content}. \n\n"})
314314
elif k == "ENPKG_agent":

0 commit comments

Comments
 (0)