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

    Interface CreateAssistantOptions

    The configuration needed to create an assistant.

    import type { CreateAssistantOptions } from '@pinecone-database/pinecone';
    const options: CreateAssistantOptions = { name: 'support-guide' };
    interface CreateAssistantOptions {
        instructions?: string;
        metadata?: Record<string, string>;
        name: string;
        region?: 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 assistant name, such as support-guide. Use lowercase letters, numbers, and hyphens.

    region?: string

    The hosting region: us or eu. Omit to use the service default.