@squidcloud/backend
    Preparing search index...

    Type Alias AiSessionOptions

    Optional settings for an AI session, allowing partial specification of identifiers.

    type AiSessionOptions = {
        agentId: string | undefined;
        clientId: string;
        jobId: JobId;
        rootAgentId: string | undefined;
        traceId: string | undefined;
    }
    Index

    Properties

    agentId: string | undefined

    The ID of the AI agent involved in the session, if specified.

    clientId: string

    The ID of the client initiating the session, if specified.

    jobId: JobId

    The ID of the job associated with the session, if specified.

    rootAgentId: string | undefined

    The ID of the AI agent involved in starting the session, if specified.

    traceId: string | undefined

    A unique identifier for tracing the session, if provided.