mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
46 lines
1.2 KiB
Python
46 lines
1.2 KiB
Python
from mmengine.config import read_base
|
|
|
|
from opencompass.lagent.actions.python_interpreter import PythonInterpreter
|
|
from opencompass.models import OpenAI
|
|
from opencompass.models.lagent import CodeAgent
|
|
from opencompass.partitioners import SizePartitioner
|
|
from opencompass.runners import LocalRunner
|
|
from opencompass.tasks import OpenICLInferTask
|
|
|
|
PYTHON_INTERPRETER_DESCRIPTION = """\
|
|
It can run a Python code. The code must be a valid code that contains only python method.
|
|
"""
|
|
|
|
actions = [
|
|
dict(
|
|
type=PythonInterpreter,
|
|
description=PYTHON_INTERPRETER_DESCRIPTION,
|
|
answer_expr=None,
|
|
)
|
|
]
|
|
|
|
with read_base():
|
|
from opencompass.configs.datasets.ds1000.ds1000_gen_5c4bec import \
|
|
ds1000_datasets as datasets
|
|
|
|
models = [
|
|
dict(abbr='gpt-3.5-react',
|
|
type=CodeAgent,
|
|
llm=dict(
|
|
type=OpenAI,
|
|
path='gpt-3.5-turbo',
|
|
key='ENV',
|
|
query_per_second=1,
|
|
max_seq_len=4096,
|
|
),
|
|
actions=actions,
|
|
batch_size=8),
|
|
]
|
|
|
|
infer = dict(
|
|
partitioner=dict(type=SizePartitioner, max_task_size=40000),
|
|
runner=dict(type=LocalRunner,
|
|
max_num_workers=16,
|
|
task=dict(type=OpenICLInferTask)),
|
|
)
|