mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-28 11:24:30 +01:00
21 lines
551 B
JSON
21 lines
551 B
JSON
{
|
|
"name": "TestReadFile",
|
|
"category": ["interface"],
|
|
"task": "Read the file called file_to_read.txt and write its content to a file called output.txt",
|
|
"dependencies": ["TestWriteFile"],
|
|
"cutoff": 60,
|
|
"ground": {
|
|
"answer": "The content of output.txt should be 'Hello World!'",
|
|
"should_contain": ["Hello World!"],
|
|
"files": ["output.txt"],
|
|
"eval": {
|
|
"type": "file"
|
|
}
|
|
},
|
|
"info": {
|
|
"description": "Tests the ability for an agent to read a file.",
|
|
"difficulty": "interface",
|
|
"side_effects": [""]
|
|
}
|
|
}
|