Update app.py
Browse files
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 |
|