vjain commited on
Commit
79227a8
1 Parent(s): dbb5ddb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -71,7 +71,7 @@ def reply(input, dataset_name):
71
  model="text-davinci-003"
72
  )["choices"][0]["text"].strip(" \n")
73
  chat_transcript = ""
74
- chat_transcript += input + "\n\n" + message + "\n\n"
75
 
76
  return chat_transcript
77
  except Exception as e:
 
71
  model="text-davinci-003"
72
  )["choices"][0]["text"].strip(" \n")
73
  chat_transcript = ""
74
+ chat_transcript += input + "\n\n" + response + "\n\n"
75
 
76
  return chat_transcript
77
  except Exception as e: