Class RealtimeEvent.Server.Conversation.Item
Inherited Members
Namespace: Glitch9.AIDevKit.OpenAI.Realtime
Assembly: Glitch9.AIDevKit.Provider.OpenAI.dll
Syntax
public static class RealtimeEvent.Server.Conversation.Item
Fields
| Edit this page View SourceAdded
Returned when a conversation item is created.
Declaration
public const string Added = "conversation.item.added"
Field Value
| Type | Description |
|---|---|
| string |
Deleted
Returned when an item in the conversation is deleted.
Declaration
public const string Deleted = "conversation.item.deleted"
Field Value
| Type | Description |
|---|---|
| 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.
Declaration
public const string Done = "conversation.item.done"
Field Value
| Type | Description |
|---|---|
| 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.
Declaration
public const string Retrieved = "conversation.item.retrieved"
Field Value
| Type | Description |
|---|---|
| string |
Truncated
Returned when an earlier assistant audio message item is truncated by the client.
Declaration
public const string Truncated = "conversation.item.truncated"
Field Value
| Type | Description |
|---|---|
| string |