We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
您好,请问现在有如何增加新任务的指导手册吗?或者后续考虑添加这块的指导吗?
The text was updated successfully, but these errors were encountered:
目前没有,如果您是想用来做Task Solving,基本的步骤是:
agentverse/tasks/tasksolving
agentverse/tasks/tasksolving/my_task
https://github.com/OpenBMB/AgentVerse/tree/main/agentverse/environments/tasksolving_env/rules
AgentVerse/agentverse/environments/tasksolving_env/rules/decision_maker/vertical_solver_first.py
Line 17 in 5fb1f77
custom-decision-maker
agentverse/environments/tasksolving_env/rules/decision_maker/custom.py
from . import decision_maker_registry
BaseDecisionMaker
class CustomDecisionMaker(BaseDecisionMaker)
@decision_maker_registry.register("custom-decision-maker")
agentverse/environments/tasksolving_env/rules/decision_maker/__init__.py
from .custom import CustomDecisionMaker
之后正常启动程序,将--task指定为你的任务目录,例如python agentverse_command/main_tasksolving_cli.py --task tasksolving/my_task,这样就可以使用你的自定义模块了。
--task
python agentverse_command/main_tasksolving_cli.py --task tasksolving/my_task
我们暂时没有时间把这个过程完整化为一个教程,如果您有空且感兴趣的话,欢迎您在跑通之后帮助我们完善文档🙏
Sorry, something went wrong.
No branches or pull requests
您好,请问现在有如何增加新任务的指导手册吗?或者后续考虑添加这块的指导吗?
The text was updated successfully, but these errors were encountered: