File tree Expand file tree Collapse file tree
core/n8n-automation-gpt-oss Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ n8n includes a **native Lemonade node** (`Lemonade Chat Model`) that provides a
2121
2222## Prerequisites
2323
24- <!-- @require:lemonade -->
24+ <!-- @require:lemonade,nodejs -->
2525
2626## Installing n8n
2727
@@ -87,8 +87,8 @@ The imported workflow contains 7 connected nodes:
8787
8888Before running the workflow, you need to connect it to your local Lemonade server:
8989
90- 1 . Click the ** Lemonade Chat Model** node
91- 2 . Click ** Credential to connect with** → ** Create New Credential**
90+ 1 . Double click the ** Lemonade Chat Model** node
91+ 2 . In the dropdown menu ** Credential to connect with** select ** Create New Credential**
92923 . Enter the following settings:
9393
9494| Field | Value |
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ This document describes the expected platform configurations for running this pl
1313
1414### Lemonade LLM
1515
16- The Lemonade server should be running with gpt-oss-20b loaded:
16+ The Lemonade server should be running with gpt-oss-120b loaded:
1717
1818| Service | Endpoint | Model |
1919| ---------| ----------| -------|
Original file line number Diff line number Diff line change 1+ ### Node.js
2+
3+ Node.js 20.19.2 LTS (Iron) is the recommended version for this platform.
4+
5+ <!-- @os:windows -->
6+
7+ 1 . Download the Windows 64-bit Installer from [ nodejs.org] ( https://nodejs.org/dist/v20.19.2/node-v20.19.2-x64.msi )
8+ 2 . Run the installer and follow the prompts
9+ 3 . Verify installation:
10+ ``` cmd
11+ node --version
12+ npm --version
13+ ```
14+
15+ <!-- @os:end -->
16+
17+ <!-- @os:linux -->
18+
19+ ``` bash
20+ curl -fsSL https://nodejs.org/dist/v20.19.2/node-v20.19.2-linux-x64.tar.xz | tar -xJ
21+ sudo mv node-v20.19.2-linux-x64 /usr/local/node
22+ sudo ln -s /usr/local/node/bin/node /usr/local/bin/node
23+ sudo ln -s /usr/local/node/bin/npm /usr/local/bin/npm
24+ ```
25+
26+ <!-- @os:end -->
27+
28+ > ** Note** : See [ Node.js Downloads] ( https://nodejs.org/en/download/ ) for additional installation options and platforms.
Original file line number Diff line number Diff line change 7171 "category" : " driver" ,
7272 "platforms" : [" windows" , " linux" ],
7373 "file" : " driver.md"
74+ },
75+ "nodejs" : {
76+ "name" : " Node.js" ,
77+ "version" : " 20.19.2" ,
78+ "description" : " JavaScript runtime for server-side applications" ,
79+ "category" : " runtime" ,
80+ "platforms" : [" windows" , " linux" ],
81+ "file" : " nodejs.md"
82+ },
83+ "memory_config" : {
84+ "name" : " AMD Memory Configuration" ,
85+ "description" : " Suggested memory configurations for Strix Halo Systems" ,
86+ "category" : " framework" ,
87+ "platforms" : [" windows" , " linux" ],
88+ "file" : " memoryconfig.md"
7489 }
7590 },
7691 "setup" : {
You can’t perform that action at this time.
0 commit comments