perf(workflow): add tests, adapt some LLM node output formats, optimize sandbox return format

This commit is contained in:
Eternity
2026-02-06 15:17:58 +08:00
parent 7b72bf0cd0
commit 87d53fb9b7
25 changed files with 6576 additions and 15 deletions

View File

@@ -47,7 +47,7 @@ async def run_python_code(code: str, preload: str, options: RunnerOptions):
except Exception as e:
logger.error(f"Python execution failed: {e}", exc_info=True)
return error_response(-500, str(e))
return error_response(500, str(e))
async def list_python_dependencies():