Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions cpp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ curl -L -o lemonade-server-minimal.msi https://github.com/lemonade-sdk/lemonade/
msiexec /i lemonade-server-minimal.msi
```

**Linux:**
**Linux (Ubuntu 24.04+):**
```bash
# Download and install the .deb package
curl -L -o lemonade-server_10.2.0_amd64.deb https://github.com/lemonade-sdk/lemonade/releases/download/v10.2.0/lemonade-server_10.2.0_amd64.deb
sudo dpkg -i lemonade-server_10.2.0_amd64.deb
# Install via Launchpad PPA
sudo add-apt-repository ppa:lemonade-team/stable
sudo apt install lemonade-server
```

Or download directly from the [Lemonade v10.2.0 release page](https://github.com/lemonade-sdk/lemonade/releases/tag/v10.2.0).
Or browse all platform options on the [Lemonade v10.2.0 release page](https://github.com/lemonade-sdk/lemonade/releases/tag/v10.2.0).

After installation, start the server:
```bash
Expand Down
12 changes: 5 additions & 7 deletions docs/cpp/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -168,17 +168,15 @@ icon: "wrench"

The agent needs an OpenAI-compatible LLM server. [Lemonade Server](https://lemonade-server.ai) is recommended (optimized for AMD hardware).

Download and install the `.deb` package (v10.2.0):
Install via the Launchpad PPA (Ubuntu 24.04+, v10.2.0):

```bash
# Download the .deb package
curl -L -o lemonade-server_10.2.0_amd64.deb https://github.com/lemonade-sdk/lemonade/releases/download/v10.2.0/lemonade-server_10.2.0_amd64.deb

# Install it
sudo dpkg -i lemonade-server_10.2.0_amd64.deb
# Add the Lemonade team PPA and install
sudo add-apt-repository ppa:lemonade-team/stable
sudo apt install lemonade-server
```

Or download directly from the [Lemonade v10.2.0 release page](https://github.com/lemonade-sdk/lemonade/releases/tag/v10.2.0).
Or browse all platform options on the [Lemonade v10.2.0 release page](https://github.com/lemonade-sdk/lemonade/releases/tag/v10.2.0).

After installation, start the server:
```bash
Expand Down
2 changes: 1 addition & 1 deletion docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@
"navbar": {
"links": [
{
"label": "v0.17.4 \u00b7 Lemonade 10.0.0",
"label": "v0.17.4 \u00b7 Lemonade 10.2.0",
"href": "https://github.com/amd/gaia/releases"
},
{
Expand Down
Loading