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