mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-01 13:24:22 +01:00
20 lines
535 B
JSON
20 lines
535 B
JSON
{
|
|
"name": "basic_read_file",
|
|
"category": ["basic"],
|
|
"task": "Write the string 'random string' before any existing text to the file called file_to_check.txt",
|
|
"dependencies": ["basic_write_file"],
|
|
"ground": {
|
|
"answer": "random string: Hello World!",
|
|
"should_contain": ["random string: Hello World!"],
|
|
"files": ["file_to_check.txt"]
|
|
},
|
|
"mock": {
|
|
"mock_func": "basic_read_file_mock"
|
|
},
|
|
"info": {
|
|
"description": "This reads the file quickly",
|
|
"difficulty": "basic",
|
|
"side_effects": [""]
|
|
}
|
|
}
|