Interface HuggingFaceModelDescription

interface HuggingFaceModelDescription {
    defaultRequestSettings?: {
        [key: string]: unknown;
    };
    id: string;
    model: string;
}

Properties

defaultRequestSettings?: {
    [key: string]: unknown;
}

Default request settings for the Hugging Face model.

Type declaration

  • [key: string]: unknown
id: string

The identifier of the model which will be shown in the UI.

model: string

The model ID as used by the Hugging Face API.