Weize Chen
Weize Chen
Should be fixed now. For environment setup, please initiate a new conda environment and run the subsequent commands: ```bash pip install -e . # To utilize the local models, ensure...
可能是你的命令行没有正确配置代理。试试命令行中以下代码能否正确运行? ```python import openai import asyncio async def create_chat_completion(): chat_completion_resp = await openai.ChatCompletion.acreate(model="gpt-3.5-turbo", messages=[{"role": "user", "content": "Hello world"}]) return chat_completion_resp if __name__ == '__main__': response = asyncio.run(create_chat_completion()) print(response) ```
See #121. Regarding the dependencies, our testing has been limited to macOS environments. It may be feasible to exclude these problematic dependencies and proceed with running the environment. Not all...
Hello! Sorry for the delayed response, really busy these days. I've verified the issue you mentioned and have taken steps to address it. I am now able to again successfully...
It seems that due to some time passing, the versions of packages related to mineflayer and previous code have become somewhat incompatible. I have attempted to set the versions of...
目前没有,如果您是想用来做Task Solving,基本的步骤是: 1. 在`agentverse/tasks/tasksolving`文件夹中添加你的task文件夹,例如`agentverse/tasks/tasksolving/my_task`并在其中写一个yaml,可以先复制其他任务的yaml,再修改其中的参数。 2. 在yaml的environment配置中,指定你所想要使用的4个rule。目前支持`https://github.com/OpenBMB/AgentVerse/tree/main/agentverse/environments/tasksolving_env/rules`这里各个文件夹中实现的组件。例如,如果您decision maker想使用[vertical_solver_first](https://github.com/OpenBMB/AgentVerse/blob/main/agentverse/environments/tasksolving_env/rules/decision_maker/vertical_solver_first.py),那么根据 https://github.com/OpenBMB/AgentVerse/blob/5fb1f7713988c0ef71c1a8a455d7a74d821fd7cb/agentverse/environments/tasksolving_env/rules/decision_maker/vertical_solver_first.py#L17 就在yaml中environment的decision_maker处指定为vertical-solver-first 3. 如果你要自定义某一个rule, 1. 首先在对应的rule文件夹中新建你的自定义模块文件,例如你想要自定义一个decision maker,叫做`custom-decision-maker`,那么你可以首先创建文件`agentverse/environments/tasksolving_env/rules/decision_maker/custom.py` 2. 在其中`from . import decision_maker_registry` 3. 写一个继承于`BaseDecisionMaker`的class,例如`class CustomDecisionMaker(BaseDecisionMaker)` 4. 用`@decision_maker_registry.register("custom-decision-maker")`对类进行装饰 5. 在`agentverse/environments/tasksolving_env/rules/decision_maker/__init__.py`中,加上`from .custom import CustomDecisionMaker` 6....
Should be fixed in the latest commit. The `env` has been uploaded and the invalid class references are removed (which are actually redundant lines).
感谢帮忙迁移至openai 1.x版本!我看似乎主要是`agentverse/llms/openai.py`还未完成迁移?不知道是否有更新?如果没有的话我可以再推一下
We have updated the Docker files. Please try downloading them from the following [link](https://cloud.tsinghua.edu.cn/f/6c1213d699ef415ebf21/?dl=1). Also, it appears your server is unable to access the Tsinghua mirror for pip. To resolve...
Currently not supported. We have tested on macos, when the `http_proxy` is configured appropriately (configured to the address and port listened by clash or any other tunnel app), it should...