Describes the configuration and status of a Pinecone Assistant.

Assistant

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

Properties

createdAt?: Date

Assistant

host?: string

The host where the assistant is deployed.

Assistant

instructions?: null | string

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

Assistant

metadata?: null | object

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

status: string

Assistant

updatedAt?: Date

Assistant