added csv-code executor
Browse files- controller.py +1 -0
controller.py
CHANGED
@@ -258,6 +258,7 @@ async def code_execution_csv(
|
|
258 |
)
|
259 |
|
260 |
formatted_output = await executor.process_response(result_body, request.chatId)
|
|
|
261 |
return {"answer": formatted_output}
|
262 |
|
263 |
except Exception as e:
|
|
|
258 |
)
|
259 |
|
260 |
formatted_output = await executor.process_response(result_body, request.chatId)
|
261 |
+
logger.info("Formatted Output:", formatted_output)
|
262 |
return {"answer": formatted_output}
|
263 |
|
264 |
except Exception as e:
|