Files
Auto-GPT/benchmark/agbenchmark/challenges/deprecated/code/2_write/data.json
merwanehamadi f4e7b1c61c Add eval_id and sync Skill Tree with Frontend(#5287)
Add eval_id to skill tree

Signed-off-by: Merwane Hamadi <merwanehamadi@gmail.com>
2023-09-21 13:36:17 -07:00

32 lines
887 B
JSON

{
"category": [
"code",
"iterate"
],
"cutoff": 120,
"dependencies": [
"TestReturnCodeSimple"
],
"eval_id": "d36bf9f5-ee0f-4d84-b4d8-71f20e8454d5",
"ground": {
"answer": "Just a simple multiple by 2 function. Num is 4 so answer is 8",
"eval": {
"type": "python"
},
"files": [
"test.py"
],
"should_contain": [
"8"
],
"should_not_contain": []
},
"info": {
"description": "Small step up, just writing the function with a name as well as the return statement.",
"difficulty": "novice",
"side_effects": []
},
"name": "ReturnCodeWrite",
"task": "Add a function called multiply_int in sample_code.py that multiplies numbers by 2. You can make sure you have correctly done this by running test.py"
}