Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -13,11 +13,7 @@ def respond(
|
|
13 |
temperature,
|
14 |
top_p,
|
15 |
):
|
16 |
-
|
17 |
-
messages.append({"role": "user", "content": val[0]})
|
18 |
-
|
19 |
-
|
20 |
-
messages.append({"role": "system", "content": meo_system})
|
21 |
|
22 |
for val in history:
|
23 |
if val[0]:
|
@@ -59,4 +55,4 @@ demo = gr.ChatInterface(
|
|
59 |
|
60 |
|
61 |
if __name__ == "__main__":
|
62 |
-
demo.launch()
|
|
|
13 |
temperature,
|
14 |
top_p,
|
15 |
):
|
16 |
+
messages = [{"role": "system", "content": meo_system}]
|
|
|
|
|
|
|
|
|
17 |
|
18 |
for val in history:
|
19 |
if val[0]:
|
|
|
55 |
|
56 |
|
57 |
if __name__ == "__main__":
|
58 |
+
demo.launch()
|