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

    Interface UseNoteGenerationOptions

    Options for the useNoteGeneration hook.

    interface UseNoteGenerationOptions {
        apiEndpoint?: string;
        onError?: (error: Error) => void;
        onSuccess?: (fileId: string, content: string) => void;
    }
    Index

    Properties

    apiEndpoint?: string

    API endpoint for note generation (default: '/api/generate-note')

    onError?: (error: Error) => void

    Callback when note generation fails

    onSuccess?: (fileId: string, content: string) => void

    Callback when note is successfully generated and saved