Files
Auto-GPT/agbenchmark/challenges/abilities/read_file/data.json
Silen Naihin b6ad300eda restructure library, deprecate challenges (#336)
Signed-off-by: Merwane Hamadi <merwanehamadi@gmail.com>
Co-authored-by: Merwane Hamadi <merwanehamadi@gmail.com>
2023-08-30 22:38:31 -07:00

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": [""]
}
}