@sateeshreddy/n8n-nodes-nvidia-nim 1.0.8 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +27 -24
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,7 +30,8 @@ This package includes **two nodes**:
|
|
|
30
30
|
- ✅ Free tier models via [build.nvidia.com](https://build.nvidia.com)
|
|
31
31
|
- ✅ **Language model node** — plugs into AI Agent, Basic LLM Chain, Summarization Chain
|
|
32
32
|
- ✅ **Embeddings node** — plugs into any n8n vector store (Qdrant, Pinecone, PGVector, Supabase, Weaviate, Chroma)
|
|
33
|
-
- ✅ Supports 17
|
|
33
|
+
- ✅ Supports 17 latest chat models including DeepSeek v4, Nemotron-3, Mistral, and Gemma 4
|
|
34
|
+
- ✅ **Smart Defaults:** Automatically updates optimal temperature and max tokens when a chat model is selected
|
|
34
35
|
- ✅ Supports 5 embedding models including free hosted endpoints
|
|
35
36
|
- ✅ Drop-in OpenAI-compatible API — no extra setup
|
|
36
37
|
|
|
@@ -40,25 +41,27 @@ This package includes **two nodes**:
|
|
|
40
41
|
|
|
41
42
|
### Chat / Language Models
|
|
42
43
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
|
46
|
-
|
|
47
|
-
|
|
|
48
|
-
|
|
|
49
|
-
|
|
|
50
|
-
|
|
|
51
|
-
|
|
|
52
|
-
|
|
|
53
|
-
|
|
|
54
|
-
|
|
|
55
|
-
|
|
|
56
|
-
|
|
|
57
|
-
|
|
|
58
|
-
|
|
|
59
|
-
|
|
|
60
|
-
|
|
|
61
|
-
|
|
|
44
|
+
When you select a model, the node will automatically configure the recommended `max_tokens` and `temperature` to provide the best results out of the box. You can still override these manually.
|
|
45
|
+
|
|
46
|
+
| Model ID | Default Max Tokens | Default Temperature |
|
|
47
|
+
|---|---|---|
|
|
48
|
+
| `minimaxai/minimax-m3` | 8192 | 1 |
|
|
49
|
+
| `nvidia/nemotron-3-ultra-550b-a55b` | 16384 | 1 |
|
|
50
|
+
| `stepfun-ai/step-3.7-flash` | 16384 | 1 |
|
|
51
|
+
| `moonshotai/kimi-k2.6` | 16384 | 1 |
|
|
52
|
+
| `mistralai/mistral-medium-3.5-128b` | 16384 | 0.7 |
|
|
53
|
+
| `mistralai/mistral-nemotron` | 4096 | 0.6 |
|
|
54
|
+
| `sarvamai/sarvam-m` | 16384 | 0.5 |
|
|
55
|
+
| `nvidia/nemotron-3-nano-30b-a3b` | 16384 | 1 |
|
|
56
|
+
| `stepfun-ai/step-3.5-flash` | 16384 | 1 |
|
|
57
|
+
| `qwen/qwen3.5-122b-a10b` | 16384 | 0.6 |
|
|
58
|
+
| `nvidia/nemotron-3-super-120b-a12b` | 16384 | 1 |
|
|
59
|
+
| `mistralai/mistral-small-4-119b-2603` | 16384 | 0.1 |
|
|
60
|
+
| `google/gemma-4-31b-it` | 16384 | 1 |
|
|
61
|
+
| `minimaxai/minimax-m2.7` | 8192 | 1 |
|
|
62
|
+
| `z-ai/glm-5.1` | 16384 | 1 |
|
|
63
|
+
| `deepseek-ai/deepseek-v4-pro` | 16384 | 1 |
|
|
64
|
+
| `deepseek-ai/deepseek-v4-flash` | 16384 | 1 |
|
|
62
65
|
|
|
63
66
|
### Embedding Models
|
|
64
67
|
|
|
@@ -118,16 +121,16 @@ Use this node anywhere n8n expects a **language model**.
|
|
|
118
121
|
1. Add an **AI Agent** (or Basic LLM Chain) node to your workflow
|
|
119
122
|
2. In the **Model** slot, click `+`
|
|
120
123
|
3. Search for **NVIDIA NIM** and select it
|
|
121
|
-
4. Choose your model
|
|
124
|
+
4. Choose your model — the optimal temperature and max tokens will be populated automatically!
|
|
122
125
|
5. Run your workflow
|
|
123
126
|
|
|
124
127
|
**Configuration Options:**
|
|
125
128
|
|
|
126
129
|
| Parameter | Type | Default | Description |
|
|
127
130
|
|---|---|---|---|
|
|
128
|
-
| Model | Dropdown | `
|
|
129
|
-
| Temperature | Number
|
|
130
|
-
| Max Tokens | Number
|
|
131
|
+
| Model | Dropdown | `deepseek-ai/deepseek-v4-flash` | The NIM chat model to use |
|
|
132
|
+
| Temperature | Number | *Dynamic* | Controls output randomness. Automatically updates based on the model chosen. |
|
|
133
|
+
| Max Tokens | Number | *Dynamic* | Maximum tokens in the response. Automatically updates based on the model chosen. |
|
|
131
134
|
|
|
132
135
|
---
|
|
133
136
|
|