Files
Auto-GPT/agbenchmark/challenges/interface/read_file/data.json
2023-07-15 22:10:20 -04:00

19 lines
517 B
JSON

{
"name": "TestReadFile",
"category": ["interface"],
"task": "Write the string 'random string' before any existing text to the file called file_to_check.txt",
"dependencies": ["TestWriteFile"],
"cutoff": 60,
"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": "interface",
"side_effects": [""]
}
}