Skip to content

Commit

Permalink
Merge pull request #202 from bonk1t/fix/genesis-cli-type-error
Browse files Browse the repository at this point in the history
Fix Genesis agent creator type error
  • Loading branch information
bonk1t authored Dec 26, 2024
2 parents 1e28824 + fc145f6 commit b86abc0
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 b86abc0

Please sign in to comment.