From 0a89d76cc5ed4371ffe8068858f23dfbb5e8cc37 Mon Sep 17 00:00:00 2001 From: Guido Schulz Date: Tue, 26 Dec 2023 13:09:31 +0100 Subject: [PATCH] fix(docs): Update quickstart doc and set version in pyproject.toml to 0.2.0 --- fern/docs/pages/overview/quickstart.mdx | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fern/docs/pages/overview/quickstart.mdx b/fern/docs/pages/overview/quickstart.mdx index 47a2322edf..d22aff1a3e 100644 --- a/fern/docs/pages/overview/quickstart.mdx +++ b/fern/docs/pages/overview/quickstart.mdx @@ -11,10 +11,10 @@ python3.11 -m venv .venv && source .venv/bin/activate && \ pip install --upgrade pip poetry && poetry install --with ui,local && ./scripts/setup # Launch the privateGPT API server **and** the gradio UI -python3.11 -m private_gpt +poetry run python3.11 -m private_gpt # In another terminal, create a new browser window on your private GPT! -open http:////127.0.0.1:8001/ +open http://127.0.0.1:8001/ ``` The above is not working, or it is too slow, so **you want to run it on GPU(s)**? diff --git a/pyproject.toml b/pyproject.toml index f0d79d32a4..e75a7cb9a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "private-gpt" -version = "0.1.0" +version = "0.2.0" description = "Private GPT" authors = ["Zylon "]