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
14 changes: 7 additions & 7 deletions cpp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,23 +28,23 @@ Included demos:

The agent connects to an OpenAI-compatible LLM server at `http://localhost:8000/api/v1` by default. The reference backend is [Lemonade Server](https://github.com/lemonade-sdk/lemonade), which runs models locally on AMD hardware.

Download and install Lemonade Server v10.0.0, then start it:
Download and install Lemonade Server v10.2.0, then start it:

**Windows:**
```powershell
# Download and run the MSI installer
curl -L -o lemonade-server-minimal.msi https://github.com/lemonade-sdk/lemonade/releases/download/v10.0.0/lemonade-server-minimal.msi
curl -L -o lemonade-server-minimal.msi https://github.com/lemonade-sdk/lemonade/releases/download/v10.2.0/lemonade-server-minimal.msi
msiexec /i lemonade-server-minimal.msi
```

**Linux:**
**Linux (Ubuntu 24.04+):**
```bash
# Download and install the .deb package
curl -L -o lemonade-server_10.0.0_amd64.deb https://github.com/lemonade-sdk/lemonade/releases/download/v10.0.0/lemonade-server_10.0.0_amd64.deb
sudo dpkg -i lemonade-server_10.0.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.0.0 release page](https://github.com/lemonade-sdk/lemonade/releases/tag/v10.0.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
20 changes: 9 additions & 11 deletions docs/cpp/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -76,17 +76,17 @@ icon: "wrench"

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

Download and run the installer (v10.0.0):
Download and run the installer (v10.2.0):

```powershell
# Download the MSI installer
curl -L -o lemonade-server-minimal.msi https://github.com/lemonade-sdk/lemonade/releases/download/v10.0.0/lemonade-server-minimal.msi
curl -L -o lemonade-server-minimal.msi https://github.com/lemonade-sdk/lemonade/releases/download/v10.2.0/lemonade-server-minimal.msi

# Run the installer
msiexec /i lemonade-server-minimal.msi
```

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

After installation, restart your terminal and start the server:
```powershell
Expand Down 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.0.0):
Install via the Launchpad PPA (Ubuntu 24.04+, v10.2.0):

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

# Install it
sudo dpkg -i lemonade-server_10.0.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.0.0 release page](https://github.com/lemonade-sdk/lemonade/releases/tag/v10.0.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 Expand Up @@ -221,7 +219,7 @@ icon: "wrench"
| C++ Compiler | C++17 support (MSVC 2019+ or GCC 9+) | `cl` (Windows) or `g++ --version` (Linux) |
| CMake | 3.14+ | `cmake --version` |
| Git | any | `git --version` |
| [Lemonade Server](https://lemonade-server.ai) | 10.0.0 | `lemonade-server --version` |
| [Lemonade Server](https://lemonade-server.ai) | 10.2.0 | `lemonade-server --version` |
| uvx | any (optional) | `uvx --version` |

<Note>
Expand Down
2 changes: 1 addition & 1 deletion docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@
"navbar": {
"links": [
{
"label": "v0.17.2 \u00b7 Lemonade 10.0.0",
"label": "v0.17.2 \u00b7 Lemonade 10.2.0",
"href": "https://github.com/amd/gaia/releases"
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/gaia/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
__version__ = "0.17.2"

# Lemonade version used across CI and installer
LEMONADE_VERSION = "10.0.0"
LEMONADE_VERSION = "10.2.0"


def get_package_version() -> str:
Expand Down
Loading