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

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_result
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()