Agent Client Protocol - v0.12.0
    Preparing search index...

    Type Alias SessionConfigOption

    SessionConfigOption: SessionConfigSelect & { type: "select" } & {
        _meta?: { [key: string]: unknown } | null;
        description?: string | null;
        id: SessionConfigId;
        name: string;
    }

    Type Declaration

    • type: "select"
    • Optional_meta?: { [key: string]: unknown } | null

      The _meta property is reserved by ACP to allow clients and agents to attach additional metadata to their interactions. Implementations MUST NOT make assumptions about values at these keys.

      See protocol docs: Extensibility

    • Optionaldescription?: string | null

      Optional description for the Client to display to the user.

    • id: SessionConfigId

      Unique identifier for the configuration option.

    • name: string

      Human-readable label for the option.