interface CortexUtilities {
    get_embedding?: ((text: string) => Promise<number[]>);
    sounds?: {
        activated: (() => void);
        error: (() => void);
        ok: (() => void);
        success: (() => void);
    };
}

Properties

get_embedding?: ((text: string) => Promise<number[]>)
sounds?: {
    activated: (() => void);
    error: (() => void);
    ok: (() => void);
    success: (() => void);
}