Skip to content

Commit 9f219a0

Browse files
committed
update muagent to 0.0.5
1 parent b317fd7 commit 9f219a0

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ Developed by the Ant CodeFuse Team, CodeFuse-muAgent is a Multi-Agent framework
3333
![](docs/resources/agent_runtime.png)
3434

3535
## 🚀 快速使用
36-
For complete documentation, see: [CodeFuse-muAgent](docs/overview/o1.muagent.md)
37-
For more [demos](docs/overview/o3.quick-start.md)
36+
For complete documentation, see: [CodeFuse-muAgent](https://codefuse-ai.github.io/docs/api-docs/MuAgent/overview/multi-agent)
37+
For more [demos](https://codefuse-ai.github.io/docs/api-docs/MuAgent/connector/customed_examples)
3838

3939
1. Installation
4040
```
@@ -115,7 +115,7 @@ We are deeply grateful for your interest in the Codefuse project and warmly welc
115115

116116
Feel free to raise your suggestions, opinions, and comments directly through GitHub Issues. There are numerous ways to participate in and contribute to the Codefuse project: code implementation, writing tests, process tool improvements, documentation enhancements, etc.
117117

118-
We welcome any contribution and will add you to the list of contributors. See [Contribution Guide...](docs/contribution/contribute_guide.md)
118+
We welcome any contribution and will add you to the list of contributors. See [Contribution Guide...](https://codefuse-ai.github.io/contribution/contribution)
119119

120120

121121
## 🗂 Miscellaneous

README_zh.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ CodeFuse-muAgent 是蚂蚁CodeFuse团队开发的Mulit Agent框架,其核心
3434

3535

3636
## 🚀 快速使用
37-
完整文档见:[CodeFuse-muAgent](docs/overview/o1.muagent.md)
38-
更多[demo](docs/overview/o3.quick-start.md)
37+
完整文档见:[CodeFuse-muAgent](https://codefuse-ai.github.io/zh-CN/docs/api-docs/MuAgent/overview/multi-agent)
38+
更多[demo](https://codefuse-ai.github.io/zh-CN/docs/api-docs/MuAgent/connector/customed_examples)
3939

4040
1. 安装
4141
```
@@ -120,7 +120,7 @@ print(output_memory3.to_str_messages(return_all=True, content_key="parsed_output
120120

121121
您对 Codefuse 的各种建议、意见、评论可以直接通过 GitHub 的 Issues 提出。
122122

123-
参与 Codefuse 项目并为其作出贡献的方法有很多:代码实现、测试编写、流程工具改进、文档完善等等。任何贡献我们都会非常欢迎,并将您加入贡献者列表。详见[Contribution Guide...](docs/contribution/contribute_guide.md)
123+
参与 Codefuse 项目并为其作出贡献的方法有很多:代码实现、测试编写、流程工具改进、文档完善等等。任何贡献我们都会非常欢迎,并将您加入贡献者列表。详见[Contribution Guide...](https://codefuse-ai.github.io/zh-CN/contribution/issue)
124124

125125

126126
## 🗂 其他

setup.py

+10-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="codefuse-muagent",
8-
version="0.0.4",
8+
version="0.0.5",
99
author="shanshi",
1010
author_email="[email protected]",
1111
description="A multi-agent framework that facilitates the rapid construction of collaborative teams of agents.",
@@ -19,21 +19,27 @@
1919
"Operating System :: OS Independent",
2020
],
2121
install_requires=[
22-
"openai==0.28.1",
23-
"langchain<=0.0.266",
22+
"openai==1.34.0",
23+
"langchain==0.2.3",
24+
"langchain_community==0.2.4",
25+
"langchain_openai==0.1.8",
26+
"langchain_huggingface==0.0.3",
2427
"sentence_transformers",
2528
"loguru",
26-
"fastapi~=0.99.1",
29+
"fastapi",
2730
"pandas",
2831
"Pyarrow",
2932
"jieba",
3033
"psutil",
3134
"faiss-cpu",
3235
"notebook",
36+
"docker",
37+
"sseclient",
3338
#
3439
"chromadb==0.4.17",
3540
"javalang==0.13.0",
3641
"nebula3-python==3.1.0",
42+
"SQLAlchemy==2.0.19",
3743
"redis==5.0.1",
3844
"pydantic<=1.10.14"
3945
],

0 commit comments

Comments
 (0)