bstraehle commited on
Commit
c77990f
·
1 Parent(s): 1aace6b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -8,14 +8,14 @@ from trace import wandb_trace
8
 
9
  _ = load_dotenv(find_dotenv())
10
 
11
- RAG_BATCH = False # document loading, splitting, storage
12
 
13
  config = {
14
- "chunk_overlap": 150, # document splitting
15
- "chunk_size": 1500, # document splitting
16
- "k": 3, # document retrieval
17
- "model_name": "gpt-4-0613", # llm
18
- "temperature": 0, # llm
19
  }
20
 
21
  RAG_OFF = "Off"
 
8
 
9
  _ = load_dotenv(find_dotenv())
10
 
11
+ RAG_BATCH = True # document loading, splitting, storage
12
 
13
  config = {
14
+ "chunk_overlap": 150, # document splitting
15
+ "chunk_size": 1500, # document splitting
16
+ "k": 3, # document retrieval
17
+ "model_name": "gpt-4", # llm
18
+ "temperature": 0, # llm
19
  }
20
 
21
  RAG_OFF = "Off"