Pinecone TypeScript SDK - v9.0.0
    Preparing search index...

    Interface UpdateAssistantOptions

    The configuration updates for the assistant.

    import type { UpdateAssistantOptions } from '@pinecone-database/pinecone';
    const options: UpdateAssistantOptions = {
    name: 'support-guide',
    instructions: 'Cite the uploaded support policies in your answers.',
    };
    interface UpdateAssistantOptions {
        instructions?: string;
        metadata?: Record<string, string>;
        name: string;
    }
    Index
    instructions?: string

    Description or directive for the assistant to apply to all responses.

    metadata?: Record<string, string>

    Metadata associated with the assistant.

    name: string

    The name of the assistant to update.