Josejc00 commited on
Commit
744c606
·
1 Parent(s): 7c7483b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 formatted_results
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_result
31
 
32
  iface = gr.Interface(fn=chat_completion_interface, inputs="text", outputs="text")
33
  iface.launch()