From 8baa7ec8da364b195a9cd16d365c6feed13e196f Mon Sep 17 00:00:00 2001 From: fynnfluegge Date: Sat, 13 Jan 2024 16:58:55 +0100 Subject: [PATCH] fix: faiss-gpu installation prompt --- codeqai/vector_store.py | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/codeqai/vector_store.py b/codeqai/vector_store.py index 5dfa724..78481a9 100644 --- a/codeqai/vector_store.py +++ b/codeqai/vector_store.py @@ -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", ), diff --git a/pyproject.toml b/pyproject.toml index 647c8dc..65bd0fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "codeqai" -version = "0.0.7" +version = "0.0.8" description = "" authors = ["fynnfluegge "] readme = "README.md"