mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-20 22:44:22 +01:00
19 lines
583 B
JSON
19 lines
583 B
JSON
{
|
|
"name": "TestBasicRetrieval",
|
|
"category": ["retrieval"],
|
|
"task": "Write the price of the book in this url 'http://books.toscrape.com/catalogue/meditations_33/index.html' to a .txt file.",
|
|
"dependencies": ["TestWriteFile", "TestSearch"],
|
|
"ground": {
|
|
"answer": "£25.89",
|
|
"should_contain": ["25.89"],
|
|
"should_not_contain": [],
|
|
"files": [".txt"],
|
|
"type": "file"
|
|
},
|
|
"info": {
|
|
"difficulty": "basic",
|
|
"description": "Tests ability to retrieve information from a website.",
|
|
"side_effects": ["tests if there is in fact an LLM attached"]
|
|
}
|
|
}
|