bstraehle commited on
Commit
c5fbf4f
1 Parent(s): fb72340

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -9,15 +9,15 @@ from trace import trace_wandb
9
 
10
  _ = load_dotenv(find_dotenv())
11
 
12
- RAG_INGESTION = True # load, split, embed, and store documents
13
 
14
  RAG_OFF = "Off"
15
  RAG_LANGCHAIN = "LangChain"
16
  RAG_LLAMAINDEX = "LlamaIndex"
17
 
18
  config = {
19
- "chunk_overlap": 150, # split documents
20
- "chunk_size": 1500, # split documents
21
  "k": 3, # retrieve documents
22
  "model_name": "gpt-4-0314", # llm
23
  "temperature": 0 # llm
 
9
 
10
  _ = load_dotenv(find_dotenv())
11
 
12
+ RAG_INGESTION = False # load, split, embed, and store documents
13
 
14
  RAG_OFF = "Off"
15
  RAG_LANGCHAIN = "LangChain"
16
  RAG_LLAMAINDEX = "LlamaIndex"
17
 
18
  config = {
19
+ "chunk_overlap": 100, # split documents
20
+ "chunk_size": 2000, # split documents
21
  "k": 3, # retrieve documents
22
  "model_name": "gpt-4-0314", # llm
23
  "temperature": 0 # llm