diff --git a/.github/workflows/generate-release.yml b/.github/workflows/generate-release.yml index 43dead61..aec99680 100644 --- a/.github/workflows/generate-release.yml +++ b/.github/workflows/generate-release.yml @@ -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: diff --git a/fern/docs/pages/getting-started/quickstart.mdx b/fern/docs/pages/getting-started/quickstart.mdx index 6007aa2d..8c836962 100644 --- a/fern/docs/pages/getting-started/quickstart.mdx +++ b/fern/docs/pages/getting-started/quickstart.mdx @@ -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]" ``` @@ -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]" ``` diff --git a/fern/docs/pages/installation/package.mdx b/fern/docs/pages/installation/package.mdx index 572b27f6..ed902cda 100644 --- a/fern/docs/pages/installation/package.mdx +++ b/fern/docs/pages/installation/package.mdx @@ -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. - 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. --- @@ -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 ``` diff --git a/scripts/build_pip_index.py b/scripts/build_pip_index.py index 70e5df2b..fbcfd789 100644 --- a/scripts/build_pip_index.py +++ b/scripts/build_pip_index.py @@ -170,7 +170,7 @@ def build_index(package_dir: Path, output_dir: Path, extra: str) -> None: "PrivateGPT package index", ( "

Install PrivateGPT with uv tool install --find-links " - "https://wheels.privategpt.dev/private-gpt/packages/ " + "https://wheels.privategpt.dev/packages/ " f""private-gpt[{html.escape(extra)}]".

" ), ),