AutoBE
    Preparing search index...

    Properties for creating a new vendor configuration.

    The API key is provided in plaintext and will be encrypted by the server before storage. It is never returned in any API response.

    interface ICreate {
        apiKey: string;
        baseURL?: string | null;
        name: string;
        semaphore?: number & Type<"uint32">;
    }
    Index

    Properties

    apiKey: string

    API key for the AI vendor's services.

    Provided in plaintext; the server encrypts it with AES-CBC before persisting to the database.

    baseURL?: string | null

    Optional custom base URL.

    name: string

    Human-readable label for this vendor configuration.

    semaphore?: number & Type<"uint32">

    Maximum concurrent API requests.

    16