curl --request POST \
--url https://zeus-api.agentspro.cn/api/agent/resume \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"session_id": "sess_456",
"llm_config": {
"baseUrl": "https://api.openai.com/v1",
"apiKey": "sk-...",
"modelName": "gpt-4o"
},
"tool_call_results": [
{
"tool_call_id": "call_abc",
"tool_name": "sandbox_exec",
"decision": "approved"
}
],
"human_order": "Make sure to back up the files before executing"
}'