awacke1 commited on
Commit
3c76f86
·
1 Parent(s): 09b233c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -86,7 +86,8 @@ description = """Chatbot With persistent memory dataset allowing multiagent syst
86
 
87
  def get_base(filename):
88
  basedir = os.path.dirname(__file__)
89
- loadPath = basedir + "\\" + filename
 
90
  return loadPath
91
 
92
  def chat(message, history):
 
86
 
87
  def get_base(filename):
88
  basedir = os.path.dirname(__file__)
89
+ #loadPath = basedir + "\\" + filename # works on windows
90
+ loadPath = basedir + "/" + filename # works on Ubuntu
91
  return loadPath
92
 
93
  def chat(message, history):