mirror of
https://github.com/technovangelist/videoprojects.git
synced 2026-09-10 07:16:19 -04:00
add readme
Signed-off-by: Matt Williams <m@technovangelist.com>
This commit is contained in:
parent
f17504d30b
commit
4c301a5fba
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -1,2 +1,5 @@
|
|||
.DS_Store
|
||||
node_modules
|
||||
node_modules
|
||||
vectordb-stores
|
||||
chroma.log
|
||||
__pycache__
|
||||
|
|
|
|||
9
2024-04-04-build-rag-with-python/readme.md
Normal file
9
2024-04-04-build-rag-with-python/readme.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# Build RAG with Python
|
||||
|
||||
[](https://youtu.be/GxLoMquHynY)
|
||||
|
||||
1. Get started by installing the requirements: `pip install -f requirements.txt`
|
||||
2. Then run ChromaDB in a separate terminal: `chroma run --host localhost --port 8000 --path ../../vectordb-stores/chromadb`
|
||||
3. Edit the list of docs in `sourcedocs.txt`
|
||||
4. Import the docs: `python3 import.py`
|
||||
5. Perform a search: `python3 search.py <yoursearch>`
|
||||
Loading…
Reference in a new issue