mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-04-29 03:00:45 -04:00
* add MMLU subset * add theoremqa subset * remove redundant packages from requirements.txt, adjust prompts, handle gpt3.5 propose a wrong answer after a correct answer * add MBPP subset * add humaneval subset * update README * exit actively after the agent finishes the task
13 lines
272 B
Python
13 lines
272 B
Python
from .base import Task
|
|
from .codegen import HumanEvalTask, MBPPTask
|
|
from .reasoning import MultipleChoiceTask, ReasoningTask, TheoremqaTask
|
|
|
|
__all__ = [
|
|
'Task',
|
|
'MultipleChoiceTask',
|
|
'ReasoningTask',
|
|
'TheoremqaTask',
|
|
'MBPPTask',
|
|
'HumanEvalTask',
|
|
]
|