Retrieve Conversation Stream
conversations.messages.stream(strconversation_id, MessageStreamParams**kwargs) -> object
/v1/conversations/{conversation_id}/stream
Resume the stream for the most recent active run in a conversation.
This endpoint allows you to reconnect to an active background stream for a conversation, enabling recovery from network interruptions.
Parameters
Returns
object
Retrieve Conversation Stream
import os
from letta_client import Letta
client = Letta(
api_key=os.environ.get("LETTA_API_KEY"), # This is the default and can be omitted
)
response = client.conversations.messages.stream(
conversation_id="conv-123e4567-e89b-42d3-8456-426614174000",
)
print(response)
{}
Returns Examples
{}