Skip to content

Commit

Permalink
Fix accidental removal of a line
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed Nov 12, 2023
1 parent 487aa3f commit 7f32acc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/jupyter-ai/jupyter_ai/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,10 @@ async def on_message(self, message):
# message broadcast to chat clients
chat_message_id = str(uuid.uuid4())
chat_message = HumanChatMessage(
id=chat_message_id, time=time.time(), body=chat_request.prompt
id=chat_message_id,
time=time.time(),
body=chat_request.prompt,
client=self.chat_client,
)

# broadcast the message to other clients
Expand Down

0 comments on commit 7f32acc

Please sign in to comment.