mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-25 09:54:23 +01:00
23 lines
608 B
JSON
23 lines
608 B
JSON
{
|
|
"name": "basic_write_file",
|
|
"category": ["basic"],
|
|
"task": "Print the the capital of America to a .txt file",
|
|
"dependencies": [],
|
|
"ground": {
|
|
"answer": "Washington",
|
|
"should_contain": ["Washington"],
|
|
"should_not_contain": ["New York", "Los Angeles", "San Francisco"],
|
|
"files": [".txt"],
|
|
"type": "file"
|
|
},
|
|
"mock": {
|
|
"mock_func": "basic_write_file_mock",
|
|
"mock_task": "What is the capital of America?"
|
|
},
|
|
"info": {
|
|
"difficulty": "basic",
|
|
"description": "Tests the writing to file",
|
|
"side_effects": ["tests if there is in fact an LLM attached"]
|
|
}
|
|
}
|