mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-25 18:04:28 +01:00
20 lines
659 B
JSON
20 lines
659 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"],
|
|
"cutoff": 90,
|
|
"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": []
|
|
}
|
|
}
|