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§

§readonly modelName?: string

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

§readonly options?: { ... }

Additional options to add Default: {}