You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add command-line option for selecting embeddings backend (Oracle DB or ChromaDB). Oracle DB is now the default, with ChromaDB as fallback. Update documentation.
|`--verbose`| Show full content of sources |`False`|
396
+
|`--quiet`| Disable verbose logging |`False`|
397
+
398
+
### Examples
399
+
400
+
Query using Oracle DB (default):
401
+
```bash
402
+
python local_rag_agent.py --query "How does vector search work?"
403
+
```
404
+
405
+
Force using ChromaDB:
406
+
```bash
407
+
python local_rag_agent.py --query "How does vector search work?" --embeddings chromadb
408
+
```
409
+
410
+
Query with Chain of Thought reasoning:
411
+
```bash
412
+
python local_rag_agent.py --query "Explain the difference between RAG and fine-tuning" --use-cot
413
+
```
414
+
415
+
Query a specific collection:
416
+
```bash
417
+
python local_rag_agent.py --query "How to implement a queue?" --collection "Repository Collection"
418
+
```
419
+
376
420
## Contributing
377
421
378
422
This project is open source. Please submit your contributions by forking this repository and submitting a pull request! Oracle appreciates any contributions that are made by the open source community.
0 commit comments