Search Results for

    Show / Hide Table of Contents

    Class RealtimeEvent.Server.Conversation.Item

    Inheritance
    object
    RealtimeEvent.Server.Conversation.Item
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Glitch9.AIDevKit.OpenAI.Realtime
    Assembly: Glitch9.AIDevKit.Provider.OpenAI.dll
    Syntax
    public static class RealtimeEvent.Server.Conversation.Item

    Fields

    | Edit this page View Source

    Added

    Returned when a conversation item is created.

    Declaration
    public const string Added = "conversation.item.added"
    Field Value
    Type Description
    string
    | Edit this page View Source

    Deleted

    Returned when an item in the conversation is deleted.

    Declaration
    public const string Deleted = "conversation.item.deleted"
    Field Value
    Type Description
    string
    | Edit this page View Source

    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
    | Edit this page View Source

    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
    | Edit this page View Source

    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
    • Edit this page
    • View Source
    In this article
    Back to top AI DevKit Documentation