anniesaxena commited on
Commit
b079bd8
·
verified ·
1 Parent(s): 64e174c

lowercase knowledge

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ import numpy as np
7
 
8
 
9
  # Load and process the knowledge base text file
10
- with open("/content/knowledge.txt", "r", encoding="utf-8") as f:
11
  knowledge_text = f.read()
12
 
13
 
 
7
 
8
 
9
  # Load and process the knowledge base text file
10
+ with open("knowledge.txt", "r", encoding="utf-8") as f:
11
  knowledge_text = f.read()
12
 
13