vjain commited on
Commit
103b8b9
1 Parent(s): ae8c519

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -73,8 +73,8 @@ def reply(input, dataset_name):
73
  system_message = response
74
  messages.append(system_message)
75
  chat_transcript = ""
76
- for message in respone
77
- chat_transcript += input + "\n\n" + message[response] + "\n\n"
78
 
79
  return chat_transcript
80
  except Exception as e:
 
73
  system_message = response
74
  messages.append(system_message)
75
  chat_transcript = ""
76
+ for message in messages
77
+ chat_transcript += input + "\n\n" + message + "\n\n"
78
 
79
  return chat_transcript
80
  except Exception as e: