mirror of
https://github.com/imartinez/privateGPT.git
synced 2026-07-16 17:00:12 +00:00
docs: fix index url (#2238)
(cherry picked from commit 6eb12d658f04e89b7b512a362f083418023cde2f)
This commit is contained in:
2
.github/workflows/generate-release.yml
vendored
2
.github/workflows/generate-release.yml
vendored
@@ -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:
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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""private-gpt[{html.escape(extra)}]"</code>.</p>"
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user