Pinecone TypeScript SDK - v8.1.0
    Preparing search index...

    Interface AssistantModel

    Describes the configuration and status of a Pinecone Assistant.

    Assistant

    interface AssistantModel {
        createdAt?: Date;
        host?: string;
        instructions?: string | null;
        metadata?: object | null;
        name: string;
        region?: string;
        status: string;
        updatedAt?: Date;
    }
    Index
    createdAt?: Date

    The timestamp when the assistant was created, in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ).

    Assistant

    host?: string

    The host where the assistant is deployed.

    Assistant

    instructions?: string | null

    Guidance applied to all responses generated by the assistant.

    Assistant

    metadata?: object | null

    Optional metadata associated with the assistant. Metadata is a JSON object that can store custom organizational data, tags, and attributes.

    Assistant

    name: string

    The name of the assistant. Resource name must be 1-63 characters long, start and end with an alphanumeric character, and consist only of lower case alphanumeric characters or -.

    Assistant

    region?: string

    The region where the assistant is deployed.

    Assistant

    status: string

    The current operational status of the assistant.

    Assistant

    updatedAt?: Date

    The timestamp of the most recent update to the assistant, in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ).

    Assistant