EphAsad commited on
Commit
9b8684b
·
verified ·
1 Parent(s): 53cc6e8

Update config/settings.json

Browse files
Files changed (1) hide show
  1. config/settings.json +7 -15
config/settings.json CHANGED
@@ -1,16 +1,8 @@
1
  {
2
- "embedding_model": "nomic-embed-text",
3
- "llm": {
4
- "mode": "local",
5
- "cloud_model": "llama3.1",
6
- "local_model": "llama3.1:8b"
7
- },
8
- "paths": {
9
- "procedures": "pathway",
10
- "faiss_index": "pathway",
11
- "metadata_store": "pathway"
12
- },
13
- "retrieval": {
14
- "top_k": 10
15
- }
16
- }
 
1
  {
2
+ "llm_model": "meta-llama/Llama-3.1-8B-Instruct",
3
+ "embedding_model": "sentence-transformers/all-MiniLM-L6-v2",
4
+ "faiss_index_path": "index/faiss.index",
5
+ "metadata_path": "index/metadata.json",
6
+ "top_k": 5,
7
+ "max_context_chunks": 5
8
+ }