mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-06 15:54:22 +01:00
Challenges Data Schema of Benchmark
General challenges
Input:
- category (str[]): Category of the challenge such as 'retrieval', 'comprehension', etc. this is not currently used. for the future it may be needed
- task (str): The task that the agent needs to solve.
- dependencies (str[]): The dependencies that the challenge needs to run.
- ground (dict): The ground truth.
- answer (str): The raw text of the ground truth answer.
- should_contain (list): The exact strings that are required in the final answer.
- should_not_contain (list): The exact strings that should not be in the final answer.
- files (list): Files that are used for retrieval. Can specify file here or an extension.
- mock_func (str): Function to mock the agent's response. This is used for testing purposes.
- info (dict): Additional info about the challenge.
- difficulty (str): The difficulty of this query.
- description (str): Description of the challenge.
- side_effects (str[]): Describes the effects of the challenge.
Example:
{
"category": ["basic"],
"task": "What is the capital of America?",
"ground": {
"answer": "Washington",
"should_contain": ["Washington"],
"should_not_contain": ["New York", "Los Angeles", "San Francisco"],
"files": ["file_to_check.txt"]
},
"mock_func": "write_file_mock",
"info": {
"difficulty": "easy",
"description": "Tests the writing to file",
"side_effects": ["tests if there is in fact an LLM attached"]
}
}
Current Output:
- score (float): scores range from [0, 1]