Hiyve Components - v1.0.0
    Preparing search index...

    Interface TranscriptionEntry

    A single transcription entry from speech-to-text.

    Each entry represents a segment of speech transcribed in real-time. Entries are typically grouped by speaker and time window for display.

    interface TranscriptionEntry {
        confidence?: number;
        emotion?: string;
        engagement?: number;
        id: string;
        language?: string;
        receivedAt?: Date;
        sentiment?: "positive" | "negative" | "neutral";
        speaker: string;
        speakerName?: string;
        text: string;
        timestamp: Date;
    }
    Index

    Properties

    confidence?: number

    Confidence score for the transcription (0-1). Higher values indicate more accurate transcription.

    emotion?: string

    Emotion classification from mood analysis.

    engagement?: number

    Engagement level from mood analysis (0-1).

    id: string

    Unique identifier for this entry. Typically ${speaker}-${timestamp}.

    language?: string

    ISO language code (e.g., 'en', 'es', 'fr').

    receivedAt?: Date

    When the transcription was received by the client.

    sentiment?: "positive" | "negative" | "neutral"

    Sentiment classification from mood analysis.

    speaker: string

    User ID of the speaker.

    speakerName?: string

    Display name of the speaker (if available).

    text: string

    The transcribed text content.

    timestamp: Date

    When the transcription was generated.