summaryrefslogtreecommitdiff
path: root/readme
diff options
context:
space:
mode:
authorYour Name <you@example.com>2026-01-04 15:16:16 +0100
committerYour Name <you@example.com>2026-01-04 15:16:16 +0100
commit73ee9f6b9355c244e078e021797e4b37e87f8f3b (patch)
tree06095829df9cdac7dd4ec96cfe371ed20e3f3391 /readme
parent3a98216eccf326cfd322478cbf791232d3390c61 (diff)
fixed edge case for python versionHEADmain
Diffstat (limited to 'readme')
-rw-r--r--readme3
1 files changed, 3 insertions, 0 deletions
diff --git a/readme b/readme
index 8e37e85..f07bd89 100644
--- a/readme
+++ b/readme
@@ -1,6 +1,8 @@
1#Installation: (pytorch higher version should work as well, the gpu i have is a bit old) 1#Installation: (pytorch higher version should work as well, the gpu i have is a bit old)
2python3 -m venv venv && source venv/bin/activate 2python3 -m venv venv && source venv/bin/activate
3pip install -r requirements.txt --extra-index-url https://download.pytorch.org/whl/cu121 3pip install -r requirements.txt --extra-index-url https://download.pytorch.org/whl/cu121
4Python 3.10+ (developed on 3.12.9)
5please use nvidia gpu, it vvv slow on cpu
4 6
5#Usage: 7#Usage:
6./search.py "your research question" 8./search.py "your research question"
@@ -14,3 +16,4 @@ This program uses two research tools:
14 - local document(in ./documents) search using an embedding model + ChromaDB for semantic retrieval 16 - local document(in ./documents) search using an embedding model + ChromaDB for semantic retrieval
15 - web search using duckduckgo 17 - web search using duckduckgo
16A local llm orchestrates the research loop, deciding when enough information has been gathered, then provides a final concise summary. 18A local llm orchestrates the research loop, deciding when enough information has been gathered, then provides a final concise summary.
19