Files
Auto-GPT/agbenchmark/challenges/code/d3/data.json
merwanehamadi 437e066a66 Add "Simple web server" challenge (#74)
Co-authored-by: Silen Naihin <silen.naihin@gmail.com>
2023-07-10 20:46:03 -04:00

19 lines
610 B
JSON

{
"name": "TestCreateSimpleWebServer",
"category": ["code"],
"task": "Build a basic web server that responds to a GET localhost:8079/health with a 200 OK. Deploy this web server locally at the port 8079. ",
"dependencies": ["TestDebugSimpleTypoWithGuidance"],
"ground": {
"answer": "GET localhost:8079/health responds with a 200 OK",
"should_contain": [],
"should_not_contain": [],
"files": [],
"type": "custom_python"
},
"info": {
"difficulty": "medium",
"description": "Tests ability for the agent to build a simple web server locally",
"side_effects": []
}
}