Describes the configuration and status of a Pinecone Assistant.

Assistant

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

Properties

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?: null | string

Guidance applied to all responses generated by the assistant.

Assistant

metadata?: null | object

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