Describes the metadata associated with a chat segment.

ChatMetadata

interface ChatMetadata {
    contentType?: string;
    keywords?: string[];
    length: number;
    participants: string[];
    timestamp?: string;
    merge(other: ChatMetadata): ChatMetadata;
}

Hierarchy (View Summary)

Implemented by

Properties

contentType?: string

The content type of the chat. merge - Merges the metadata with another metadata object.

keywords?: string[]

The keywords associated with the chat.

length: number

The length of the chat.

participants: string[]

The participants in the chat.

timestamp?: string

The timestamp of the chat.

Methods