Skip to content

Commit

Permalink
Fix Genesis agent creator type error
Browse files Browse the repository at this point in the history
  • Loading branch information
bonk1t committed Dec 14, 2024
1 parent 77add5d commit 81154d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion agency_swarm/messages/message_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,9 @@ def cprint_update(self, snapshot):
"""
Update the display with new snapshot content.
"""
self.content = snapshot # Update content with the latest snapshot
self.content = (
snapshot or "No content available"
) # Update content with the latest snapshot

header_text = self.formatted_header
md_content = Markdown(self.content)
Expand Down

0 comments on commit 81154d1

Please sign in to comment.