You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class ThreadMessageDelta(BaseModel):
data: MessageDeltaEvent
"""Represents a message delta i.e.
any changed fields on a message during streaming.
"""
event: Literal["thread.message.delta"]
class MessageDeltaEvent(BaseModel):
id: str
"""The identifier of the message, which can be referenced in API endpoints."""
delta: MessageDelta
"""The delta containing the fields that have changed on the Message."""
object: Literal["thread.message.delta"]
"""The object type, which is always `thread.message.delta`."""
The text was updated successfully, but these errors were encountered:
with the new API, now the ThreadMessageDelta is:
The text was updated successfully, but these errors were encountered: