Skip to content

Commit

Permalink
fix: faiss-gpu installation prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
fynnfluegge committed Jan 13, 2024
1 parent e0847e8 commit 8baa7ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions codeqai/vector_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,10 @@ def install_faiss(self):
question = [
inquirer.List(
"faiss-installation",
message="Please select the appropriate option to install FAISS.",
message="Please select the appropriate option to install FAISS. Use gpu if your system supports CUDA",
choices=[
"faiss-cpu",
"faiss-gpu (Only if your system supports CUDA))",
"faiss-gpu",
],
default="faiss-cpu",
),
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 = "codeqai"
version = "0.0.7"
version = "0.0.8"
description = ""
authors = ["fynnfluegge <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 8baa7ec

Please sign in to comment.