Skip to content

Commit

Permalink
Handle begin message
Browse files Browse the repository at this point in the history
  • Loading branch information
ajhai committed Oct 22, 2024
1 parent b9c30aa commit ac56b05
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions llmstack/play/actor.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ def on_receive(self, message: Message) -> Any:
self.on_error(message.data.errors)
return

if message.type == MessageType.BEGIN:
self.input(self._messages)
return

if message.type == MessageType.CONTENT_STREAM_BEGIN:
pass

Expand Down

0 comments on commit ac56b05

Please sign in to comment.