fix(docs): Update quickstart doc and set version in pyproject.toml to 0.2.0

This commit is contained in:
Guido Schulz 2023-12-26 13:09:31 +01:00 committed by GitHub
parent 2d27a9f956
commit 0a89d76cc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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)**?

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "private-gpt"
version = "0.1.0"
version = "0.2.0"
description = "Private GPT"
authors = ["Zylon <hi@zylon.ai>"]