Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
sonnynomnom committed Dec 23, 2020
1 parent 6c9dd20 commit f4f6447
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
)

# Training with Personal Ques & Ans
training_data_simple = open('https://raw.githubusercontent.com/sonnynomnom/codey-mentorbot/main/app/training_data/normal.txt').read().splitlines()
training_data_personal = open('https://raw.githubusercontent.com/sonnynomnom/codey-mentorbot/main/app/training_data/all.txt').read().splitlines()
training_data_simple = open(url_for('training_data', filename='normal.txt')).read().splitlines()
training_data_personal = open(url_for('training_data', filename='all.txt')).read().splitlines()

training_data = training_data_simple + training_data_personal

Expand Down

0 comments on commit f4f6447

Please sign in to comment.