Rohit Rajpoot commited on
Commit
40f582a
·
1 Parent(s): 1a6f50a

fixing the path for training file

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ deepseek_gen = load_deepseek()
26
 
27
  # Cache and load training corpus passages
28
  @st.cache_data
29
- def load_passages(path="training.txt"):
30
  text = open(path, encoding="utf8").read()
31
  paras = [p.strip() for p in text.split("\n\n") if p.strip()]
32
  return paras
 
26
 
27
  # Cache and load training corpus passages
28
  @st.cache_data
29
+ def load_passages(path="RepoSage Training.txt"):
30
  text = open(path, encoding="utf8").read()
31
  paras = [p.strip() for p in text.split("\n\n") if p.strip()]
32
  return paras