SimpleSam commited on
Commit
b21e441
·
verified ·
1 Parent(s): b4d4122

Update Manyata_UI.py

Browse files
Files changed (1) hide show
  1. Manyata_UI.py +1 -1
Manyata_UI.py CHANGED
@@ -34,7 +34,7 @@ def pull_messages_from_step(
34
  if isinstance(step_log, ActionStep):
35
  # Output the step number
36
  step_number = f"Step {step_log.step_number}" if step_log.step_number is not None else ""
37
- yield gr.ChatMessage(role="assistant", content=f"**{step_number}**")
38
 
39
  # First yield the thought/reasoning from the LLM
40
  # if hasattr(step_log, "model_output") and step_log.model_output is not None:
 
34
  if isinstance(step_log, ActionStep):
35
  # Output the step number
36
  step_number = f"Step {step_log.step_number}" if step_log.step_number is not None else ""
37
+ yield gr.ChatMessage(role="assistant", content=f"**{step_number}**")
38
 
39
  # First yield the thought/reasoning from the LLM
40
  # if hasattr(step_log, "model_output") and step_log.model_output is not None: