Files
Auto-GPT/agbenchmark/challenges/code/d3/data.json
merwanehamadi 7bc7d9213d Replace hidden files with custom python (#99)
Signed-off-by: Merwane Hamadi <merwanehamadi@gmail.com>
2023-07-14 14:39:47 -07:00

19 lines
643 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": ["AssertionError"],
"files": ["test.py"],
"type": "execute_python_code"
},
"info": {
"difficulty": "advanced",
"description": "Tests ability for the agent to build a simple web server locally",
"side_effects": []
}
}