mateoluksenberg commited on
Commit
33243d4
·
verified ·
1 Parent(s): b4bc826

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -361,11 +361,11 @@ async def test_endpoint(
361
  # Agregar el archivo al mensaje
362
  message["files"].append({"file_content": file_content, "file_name": file_name})
363
 
364
- # Llamar a la función `simple_chat` con el mensaje
365
- print(message)
366
- response = simple_chat(message)
367
 
368
- return response
 
369
 
370
  # @app.post("/chat/")
371
  # async def test_endpoint(
 
361
  # Agregar el archivo al mensaje
362
  message["files"].append({"file_content": file_content, "file_name": file_name})
363
 
364
+ # Llamar a la función `simple_chat` con el mensaje y recolectar la salida
365
+ response = "".join([chunk for chunk in simple_chat(message)])
 
366
 
367
+ return {"response": response}
368
+
369
 
370
  # @app.post("/chat/")
371
  # async def test_endpoint(