Update app.py
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ async def run_all(promt):
|
|
27 |
def chat_completion_interface(promt):
|
28 |
results = asyncio.run(run_all(promt))
|
29 |
formatted_results = "\n\n".join(results)
|
30 |
-
return
|
31 |
|
32 |
iface = gr.Interface(fn=chat_completion_interface, inputs="text", outputs="text")
|
33 |
iface.launch()
|
|
|
27 |
def chat_completion_interface(promt):
|
28 |
results = asyncio.run(run_all(promt))
|
29 |
formatted_results = "\n\n".join(results)
|
30 |
+
return formatted_results
|
31 |
|
32 |
iface = gr.Interface(fn=chat_completion_interface, inputs="text", outputs="text")
|
33 |
iface.launch()
|