mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-04-25 00:36:55 +02:00
11 lines
379 B
Python
11 lines
379 B
Python
# -*- coding: utf-8 -*-
|
|
# @Date : 6/27/2024 18:00 PM
|
|
# @Author : didi
|
|
# @Desc : test on humaneval graph
|
|
|
|
import asyncio
|
|
|
|
from examples.ags.benchmark.humaneval import sample_generate, samples_generate
|
|
|
|
asyncio.run(sample_generate("HumanEval/id", result_path="result_path", mode="alpha_codium"))
|
|
asyncio.run(samples_generate(mode="alpha_codium", result_path="result_path"))
|