Skip to content

Commit

Permalink
fix(docs): Update quickstart doc and set version in pyproject.toml to…
Browse files Browse the repository at this point in the history
… 0.2.0
  • Loading branch information
chamaoskurumi authored Dec 26, 2023
1 parent 2d27a9f commit 0a89d76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions fern/docs/pages/overview/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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)**?
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "private-gpt"
version = "0.1.0"
version = "0.2.0"
description = "Private GPT"
authors = ["Zylon <[email protected]>"]

Expand Down

0 comments on commit 0a89d76

Please sign in to comment.