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

    Interface SearchResult

    A single search result from semantic search

    interface SearchResult {
        content: string;
        metadata: Record<string, unknown>;
        roomName: string | null;
        similarity: number;
        source: "transcription" | "document";
        speaker: string | null;
        timestamp: string | Date | null;
    }
    Index

    Properties

    content: string

    Matched content text

    metadata: Record<string, unknown>

    Additional metadata

    roomName: string | null

    Room where content originated

    similarity: number

    Similarity score 0-1

    source: "transcription" | "document"

    Source type

    speaker: string | null

    Speaker name/ID (transcriptions only)

    timestamp: string | Date | null

    Timestamp of the content