Hugging Face
Use Hugging Face Inference API
Integrate Hugging Face into the workflow. Can generate completions using the Hugging Face Inference API.
| Parameter | Type | Required | Description |
|---|
systemPrompt | string | No | No description |
content | string | Yes | No description |
provider | string | Yes | No description |
model | string | Yes | Model to use for chat completions (e.g., "deepseek/deepseek-v3-0324", "meta-llama/Llama-3.3-70B-Instruct") |
maxTokens | number | No | No description |
temperature | number | No | No description |
apiKey | string | Yes | No description |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Chat completion results |
↳ content | string | Generated text content |
↳ model | string | Model used for generation |
↳ usage | object | Token usage information |
↳ prompt_tokens | number | Number of tokens in the prompt |
↳ completion_tokens | number | Number of tokens in the completion |
↳ total_tokens | number | Total number of tokens used |