teaevo commited on
Commit
928fc23
·
1 Parent(s): b15f680

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -108,7 +108,7 @@ def sqlquery(input):
108
 
109
  # Maintain the conversation history
110
  conversation_history.append("User: " + input)
111
- conversation_history.append("Bot: " + sql_response)
112
 
113
  output = " ".join(conversation_history)
114
 
 
108
 
109
  # Maintain the conversation history
110
  conversation_history.append("User: " + input)
111
+ conversation_history.append("Bot: " + " ".join(sql_response) )
112
 
113
  output = " ".join(conversation_history)
114