summaryrefslogtreecommitdiff
path: root/readme
diff options
context:
space:
mode:
authorYour Name <you@example.com>2026-01-04 14:37:35 +0100
committerYour Name <you@example.com>2026-01-04 14:37:35 +0100
commit3a98216eccf326cfd322478cbf791232d3390c61 (patch)
treef24feec1d516db15dca75dacaed0e9f84f718ec6 /readme
initial_commit
Diffstat (limited to 'readme')
-rw-r--r--readme16
1 files changed, 16 insertions, 0 deletions
diff --git a/readme b/readme
new file mode 100644
index 0000000..8e37e85
--- /dev/null
+++ b/readme
@@ -0,0 +1,16 @@
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
3pip install -r requirements.txt --extra-index-url https://download.pytorch.org/whl/cu121
4
5#Usage:
6./search.py "your research question"
7./search.py --test # sanity check to test llm workability
8./search.py "what does mcdonalds serve?"
9./search.py "is new york one of the locations of the sept 11 attacks?"
10./search.py "strawberries. what colour are they?"
11
12#Documentation:
13This program uses two research tools:
14 - local document(in ./documents) search using an embedding model + ChromaDB for semantic retrieval
15 - web search using duckduckgo
16A local llm orchestrates the research loop, deciding when enough information has been gathered, then provides a final concise summary.