evalscope/examples/example_eval_toolbench.py

18 lines
298 B
Python

# Copyright (c) Alibaba, Inc. and its affiliates.
from evalscope.third_party.toolbench_static import run_task
def main():
# Construct the task config dictionary
task_cfg_d: dict = dict(
)
# Run the task
run_task(task_cfg=task_cfg_d)
if __name__ == '__main__':
main()