@squidcloud/client
    Preparing search index...

    Interface AiAgentContext

    Represents an AI agent's context entry with metadata and content.

    interface AiAgentContext {
        agentId: string;
        createdAt: Date;
        id: string;
        metadata: AiContextMetadata;
        preview: boolean;
        sizeBytes: number;
        text: string;
        title: string;
        type: AiContextType;
        updatedAt: Date;
    }
    Index

    Properties

    agentId: string

    The ID of the agent owning this context.

    createdAt: Date

    The date and time the context was created.

    id: string

    The unique identifier of the context entry.

    Metadata associated with the context.

    preview: boolean

    Indicates whether the context is a preview; defaults to false.

    sizeBytes: number

    The size of the context content in bytes.

    text: string

    The text content of the context.

    title: string

    A title describing the context content.

    The type of context (e.g., 'text' or 'file').

    updatedAt: Date

    The date and time the context was last updated.