Files
Auto-GPT/agbenchmark/challenges/interface/read_file/data.json
2023-07-08 18:43:38 -07:00

18 lines
493 B
JSON

{
"name": "ReadFile",
"category": ["interface"],
"task": "Write the string 'random string' before any existing text to the file called file_to_check.txt",
"dependencies": ["TestWriteFile"],
"ground": {
"answer": "random string Hello World!",
"should_contain": ["random string", "Hello World!"],
"files": ["file_to_check.txt"],
"type": "file"
},
"info": {
"description": "This reads the file quickly",
"difficulty": "basic",
"side_effects": [""]
}
}