Interface EmbeddingsHuggingFaceInferenceNodeParameters

Source
interface EmbeddingsHuggingFaceInferenceNodeParameters {
    modelName?: string;
    options?: {
        endpointUrl?: string;
        provider?:
            | "auto"
            | "black-forest-labs"
            | "cerebras"
            | "cohere"
            | "fal-ai"
            | "featherless-ai"
            | "fireworks-ai"
            | "groq"
            | "hf-inference"
            | "hyperbolic"
            | "nebius"
            | "novita"
            | "nscale"
            | "openai"
            | "ovhcloud"
            | "replicate"
            | "sambanova"
            | "together";
    };
}

Properties§

Source§

readonly modelName?: string

The model name to use from HuggingFace library Default: "sentence-transformers/distilbert-base-nli-mean-tokens"

Source§

readonly options?: {
    endpointUrl?: string;
    provider?:
        | "auto"
        | "black-forest-labs"
        | "cerebras"
        | "cohere"
        | "fal-ai"
        | "featherless-ai"
        | "fireworks-ai"
        | "groq"
        | "hf-inference"
        | "hyperbolic"
        | "nebius"
        | "novita"
        | "nscale"
        | "openai"
        | "ovhcloud"
        | "replicate"
        | "sambanova"
        | "together";
}

Additional options to add Default: {}