Update app.py
Browse files
app.py
CHANGED
@@ -50,7 +50,7 @@ def predict(system_msg, inputs, top_p, temperature, chat_counter, chatbot=[], hi
|
|
50 |
}
|
51 |
print(f"chat_counter - {chat_counter}")'''
|
52 |
#else: #if chat_counter != 0 :
|
53 |
-
|
54 |
for data in chatbot:
|
55 |
user = {}
|
56 |
user["role"] = "user"
|
|
|
50 |
}
|
51 |
print(f"chat_counter - {chat_counter}")'''
|
52 |
#else: #if chat_counter != 0 :
|
53 |
+
messages=multi_turn_message # Of the type of - [{"role": "system", "content": system_msg},]
|
54 |
for data in chatbot:
|
55 |
user = {}
|
56 |
user["role"] = "user"
|