docs: fix index url (#2238)

(cherry picked from commit 6eb12d658f04e89b7b512a362f083418023cde2f)
This commit is contained in:
Javier Martinez
2026-06-02 20:40:40 +02:00
committed by GitHub
parent e19cd87b24
commit 65f717e046
4 changed files with 7 additions and 7 deletions

View File

@@ -11,7 +11,7 @@ env:
HOMEBREW_TAP_REPOSITORY: zylon-ai/homebrew-tap
RELEASE_PACKAGE_EXTRA: "core"
PACKAGE_INDEX_BRANCH: gh-pages
PACKAGE_FILES_URL: https://wheels.privategpt.dev/private-gpt/packages/
PACKAGE_FILES_URL: https://wheels.privategpt.dev/packages/
platforms: linux/amd64,linux/arm64
jobs:
build-and-publish-package:

View File

@@ -19,7 +19,7 @@ PrivateGPT connects to any OpenAI-compatible LLM server and exposes a private, s
# Then install PrivateGPT
uv tool install --python 3.11 `
--find-links https://wheels.privategpt.dev/private-gpt/packages/ `
--find-links https://wheels.privategpt.dev/packages/ `
"private-gpt[core]"
```
</Tab>
@@ -30,7 +30,7 @@ PrivateGPT connects to any OpenAI-compatible LLM server and exposes a private, s
# Then install PrivateGPT
uv tool install --python 3.11 \
--find-links https://wheels.privategpt.dev/private-gpt/packages/ \
--find-links https://wheels.privategpt.dev/packages/ \
"private-gpt[core]"
```
</Tab>

View File

@@ -6,7 +6,7 @@ description: "Install PrivateGPT via Homebrew or uv — the fastest way to get s
This is the recommended installation method for developers who want to run PrivateGPT against an existing LLM server (Ollama, LM Studio, etc.) without cloning the repository.
<Note>
PrivateGPT package files are hosted at `https://wheels.privategpt.dev/private-gpt/packages/`. `uv` uses that location to find the PrivateGPT release and continues to resolve public dependencies from PyPI by default.
PrivateGPT package files are hosted at `https://wheels.privategpt.dev/packages/`. `uv` uses that location to find the PrivateGPT release and continues to resolve public dependencies from PyPI by default.
</Note>
---
@@ -31,7 +31,7 @@ This is the recommended installation method for developers who want to run Priva
```bash
# Install the core package
uv tool install \
--find-links https://wheels.privategpt.dev/private-gpt/packages/ \
--find-links https://wheels.privategpt.dev/packages/ \
"private-gpt[core]"
```
@@ -42,7 +42,7 @@ This is the recommended installation method for developers who want to run Priva
Upgrade:
```bash
uv tool upgrade \
--find-links https://wheels.privategpt.dev/private-gpt/packages/ \
--find-links https://wheels.privategpt.dev/packages/ \
private-gpt
```
</Tab>

View File

@@ -170,7 +170,7 @@ def build_index(package_dir: Path, output_dir: Path, extra: str) -> None:
"PrivateGPT package index",
(
"<p>Install PrivateGPT with <code>uv tool install --find-links "
"https://wheels.privategpt.dev/private-gpt/packages/ "
"https://wheels.privategpt.dev/packages/ "
f"&quot;private-gpt[{html.escape(extra)}]&quot;</code>.</p>"
),
),