Class RealtimeEvent.Server.Conversation.Item
public static class RealtimeEvent.Server.Conversation.Item
- Inheritance
-
objectRealtimeEvent.Server.Conversation.Item
Fields
Added
Returned when a conversation item is created.
public const string Added = "conversation.item.added"
Field Value
- string
Deleted
Returned when an item in the conversation is deleted.
public const string Deleted = "conversation.item.deleted"
Field Value
- string
Done
Returned when a conversation item is finalized.
The event will include the full content of the Item except for audio data,
which can be retrieved separately with a conversation.item.retrieve event if needed.
public const string Done = "conversation.item.done"
Field Value
- string
Retrieved
Returned when a conversation item is retrieved with conversation.item.retrieve. This is provided as a way to fetch the server's representation of an item, for example to get access to the post-processed audio data after noise cancellation and VAD. It includes the full content of the Item, including audio data.
public const string Retrieved = "conversation.item.retrieved"
Field Value
- string
Truncated
Returned when an earlier assistant audio message item is truncated by the client.
public const string Truncated = "conversation.item.truncated"
Field Value
- string