AutoBE
    Preparing search index...

    Interface IAutoBePlaygroundSwaggerChatbotSession

    Persisted Swagger chatbot session backed by Agentica.

    The AI vendor credentials are reused from playground vendors. Target API connection data is bound to the session so the WebSocket agent can be reconstructed after reconnects.

    Samchon

    interface IAutoBePlaygroundSwaggerChatbotSession {
        completed_at: string & Format<"date-time"> | null;
        created_at: string & Format<"date-time">;
        events: IEvent[];
        histories: IHistory[];
        id: string & Format<"uuid">;
        locale: string;
        model: string;
        swaggers: IAutoBePlaygroundSwaggerChatbotSession.ISwagger[];
        timezone: string;
        title: string | null;
        token_usage: IAutoBePlaygroundSwaggerChatbotSession.ITokenUsage;
        vendor: IAutoBePlaygroundVendor;
    }

    Hierarchy (View Summary)

    Index

    Properties

    completed_at: string & Format<"date-time"> | null

    Timestamp when this session was completed, or null if still active.

    created_at: string & Format<"date-time">

    Timestamp when this session was created.

    events: IEvent[]

    Complete Agentica events persisted for the session.

    histories: IHistory[]

    Complete Agentica histories persisted for the session.

    id: string & Format<"uuid">

    Unique identifier for this session.

    locale: string

    Locale used by Agentica.

    model: string

    AI model identifier used by Agentica.

    Original Swagger/OpenAPI files supplied by the user.

    timezone: string

    IANA timezone used by Agentica.

    title: string | null

    Optional user-provided session title.

    Accumulated Agentica token usage.

    Stored AI vendor configuration used for the Agentica LLM calls.