assistance-engine/synthetic_datasets/test.json

9 lines
454 B
JSON

[
{
"task_id": "GD-C-001",
"text": "Read 'name' parameter and return personalized greeting",
"code": "addParam(\"nombre\", usuario_nombre)\naddParam(\"edad\", usuario_edad)\nAddVariableToJSON(\"nombre\", usuario_nombre, perfil)\nAddVariableToJSON(\"edad\", usuario_edad, perfil)\naddResult(perfil)",
"test_inputs": {"nombre": "Juan", "edad": "25"},
"test_list": ["re.match(r'.*Juan.*', perfil)", "re.match(r'.*25.*', perfil)"]
}
]