mirror of
https://github.com/deepseek-ai/awesome-deepseek-integration
synced 2025-03-09 22:23:20 +00:00
Add agentUniverse multi-agent collaboration framework (#320)
This commit is contained in:
parent
c05871a86b
commit
08eec9ae82
@ -321,6 +321,11 @@ English/[简体中文](https://github.com/deepseek-ai/awesome-deepseek-integrati
|
||||
<td> <a href="docs/translate.js/README.md">translate.js</a> </td>
|
||||
<td> AI i18n for front-end developers. It can achieve fully automatic HTML translation with just two lines of JavaScript. You can switch among dozens of languages with a single click. There is no need to modify the page, no language configuration files are required, and it supports dozens of fine-tuning extension instructions. It is SEO-friendly. Moreover, it opens up a standard text translation API interface. </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width=80> <img src="docs/agentUniverse/assets/agentUniverse_logo_s.png" alt="Icon" width="64" height="auto" /> </td>
|
||||
<td> <a href="https://github.com/antgroup/agentUniverse"> agentUniverse </a> </td>
|
||||
<td> agentUniverse is a multi-agent collaboration framework designed for complex business scenarios. It offers rapid and user-friendly development capabilities for LLM agent applications, with a focus on mechanisms such as agent collaborative scheduling, autonomous decision-making, and dynamic feedback. The framework originates from Ant Group's real-world business practices in the financial industry. In June 2024, agentUniverse achieved full integration support for the DeepSeek series of models. </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
### RAG frameworks
|
||||
|
@ -239,6 +239,11 @@
|
||||
<td> <a href="docs/translate.js/README_cn.md">translate.js</a> </td>
|
||||
<td> 面向前端开发者的 AI i18n, 两行js实现html全自动翻译,几十语种一键切换,无需改动页面、无语言配置文件、支持几十个微调扩展指令、对SEO友好。并且开放标准文本翻译API接口</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width=80> <img src="docs/agentUniverse/assets/agentUniverse_logo_s.png" alt="Icon" width="64" height="auto" /> </td>
|
||||
<td> <a href="https://github.com/antgroup/agentUniverse"> agentUniverse </a> </td>
|
||||
<td> agentUniverse 是一个面向复杂业务场景设计的多智能体协作框架。其提供了快速易用的大模型智能体应用搭建能力,并着重于提供智能体协同调度、自主决策与动态反馈等机制,其源自蚂蚁集团在金融领域的真实业务实践沉淀。agentUniverse于2024年6月全面接入支持deepseek系列模型。 </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
@ -215,6 +215,11 @@ DeepSeek API を人気のソフトウェアに統合します。API キーを取
|
||||
<td> <a href="docs/translate.js/README_ja.md">translate.js</a> </td>
|
||||
<td>フロントエンド開発者向けのAI i 18 n、2行のjsはhtmlの全自動翻訳を実現し、数十言語のワンクリック切り替えで、ページを変更する必要がなく、言語プロファイルがなく、数十個の微調整拡張命令をサポートし、SEOに友好的である。また、標準テキスト翻訳APIインタフェースを開放する</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width=80> <img src="docs/agentUniverse/assets/agentUniverse_logo_s.png" alt="Icon" width="64" height="auto" /> </td>
|
||||
<td> <a href="https://github.com/antgroup/agentUniverse"> agentUniverse </a> </td>
|
||||
<td> agentUniverseは、複雑なビジネスシーン向けに設計されたマルチエージェント協調フレームワークです。迅速で使いやすい大規模モデルのインテリジェントエージェントアプリケーション構築能力を提供し、特にエージェント間の協調スケジューリング、自律的な意思決定、動的なフィードバックなどのメカニズムに重点を置いています。これは、Ant Groupの金融業界における実践的なビジネス経験に基づいて開発されました。agentUniverseは、2024年6月にDeepSeekシリーズモデルのサポートを全面的に統合しました。 </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
### RAG フレームワーク
|
||||
|
30
docs/agentUniverse/README.md
Normal file
30
docs/agentUniverse/README.md
Normal file
@ -0,0 +1,30 @@
|
||||
___
|
||||
<img src="assets/agentUniverse_logo.jpg" width="auto" height="auto" />
|
||||
|
||||
___
|
||||
|
||||
# [agentUniverse](https://github.com/antgroup/agentUniverse)
|
||||
|
||||
agentUniverse is a multi-agent collaboration framework designed for complex business scenarios. It offers rapid and user-friendly development capabilities for LLM agent applications, with a focus on mechanisms such as agent collaborative scheduling, autonomous decision-making, and dynamic feedback. The framework originates from Ant Group's real-world business practices in the financial industry. In June 2024, agentUniverse achieved full integration support for the DeepSeek series of models.
|
||||
|
||||
## Concepts
|
||||
|
||||
<img src="https://raw.githubusercontent.com/antgroup/agentUniverse/refs/heads/master/docs/guidebook/_picture/agentuniverse_structure_en.png" />
|
||||
|
||||
## Integrate with Deepseek API
|
||||
|
||||
### Configure via Python code
|
||||
```python
|
||||
import os
|
||||
os.environ['DEEPSEEK_API_KEY'] = 'sk-***'
|
||||
os.environ['DEEPSEEK_API_BASE'] = 'https://xxxxxx'
|
||||
```
|
||||
### Configure via the configuration file
|
||||
In the custom_key.toml file under the config directory of the project, add the configuration:
|
||||
```toml
|
||||
DEEPSEEK_API_KEY="sk-******"
|
||||
DEEPSEEK_API_BASE="https://xxxxxx"
|
||||
```
|
||||
|
||||
For more details, please refer to the [Documentation: DeepSeek Integration](https://github.com/antgroup/agentUniverse/blob/master/docs/guidebook/en/In-Depth_Guides/Components/LLMs/DeepSeek_LLM_Use.md)
|
||||
|
32
docs/agentUniverse/README_cn.md
Normal file
32
docs/agentUniverse/README_cn.md
Normal file
@ -0,0 +1,32 @@
|
||||
___
|
||||
<img src="assets/agentUniverse_logo.jpg" width="auto" height="auto" />
|
||||
|
||||
___
|
||||
|
||||
# [agentUniverse](https://github.com/antgroup/agentUniverse)
|
||||
|
||||
agentUniverse 是一个面向复杂业务场景设计的多智能体协作框架。其提供了快速易用的大模型智能体应用搭建能力,并着重于提供智能体协同调度、自主决策与动态反馈等机制,其源自蚂蚁集团在金融领域的真实业务实践沉淀。agentUniverse于2024年6月全面接入支持deepseek系列模型。
|
||||
|
||||
## 设计理念
|
||||
|
||||
<img src="https://raw.githubusercontent.com/antgroup/agentUniverse/refs/heads/master/docs/guidebook/_picture/agentuniverse_structure.png" />
|
||||
|
||||
## 在项目中使用 deepseek API
|
||||
|
||||
### 通过python代码配置
|
||||
必须配置:DEEPSEEK_API_KEY
|
||||
可选配置:DEEPSEEK_API_BASE
|
||||
```python
|
||||
import os
|
||||
os.environ['DEEPSEEK_API_KEY'] = 'sk-***'
|
||||
os.environ['DEEPSEEK_API_BASE'] = 'https://xxxxxx'
|
||||
```
|
||||
### 通过配置文件配置
|
||||
在项目的config目录下的custom_key.toml当中,添加配置:
|
||||
```toml
|
||||
DEEPSEEK_API_KEY="sk-******"
|
||||
DEEPSEEK_API_BASE="https://xxxxxx"
|
||||
```
|
||||
|
||||
更多使用详情可参阅[官方文档:DeepSeek接入使用](https://github.com/antgroup/agentUniverse/blob/master/docs/guidebook/zh/In-Depth_Guides/%E7%BB%84%E4%BB%B6%E5%88%97%E8%A1%A8/%E6%A8%A1%E5%9E%8B%E5%88%97%E8%A1%A8/DeepSeek%E4%BD%BF%E7%94%A8.md)
|
||||
|
30
docs/agentUniverse/README_ja.md
Normal file
30
docs/agentUniverse/README_ja.md
Normal file
@ -0,0 +1,30 @@
|
||||
___
|
||||
<img src="assets/agentUniverse_logo.jpg" width="auto" height="auto" />
|
||||
|
||||
___
|
||||
|
||||
# [agentUniverse](https://github.com/antgroup/agentUniverse)
|
||||
|
||||
agentUniverseは、複雑なビジネスシーン向けに設計されたマルチエージェント協調フレームワークです。迅速で使いやすい大規模モデルのインテリジェントエージェントアプリケーション構築能力を提供し、特にエージェント間の協調スケジューリング、自律的な意思決定、動的なフィードバックなどのメカニズムに重点を置いています。これは、Ant Groupの金融業界における実践的なビジネス経験に基づいて開発されました。agentUniverseは、2024年6月にDeepSeekシリーズモデルのサポートを全面的に統合しました。
|
||||
|
||||
## 概念
|
||||
|
||||
<img src="https://raw.githubusercontent.com/antgroup/agentUniverse/refs/heads/master/docs/guidebook/_picture/agentuniverse_structure_en.png" />
|
||||
|
||||
## Deepseek APIと統合する
|
||||
|
||||
### Pythonコードを使って設定する
|
||||
```python
|
||||
import os
|
||||
os.environ['DEEPSEEK_API_KEY'] = 'sk-***'
|
||||
os.environ['DEEPSEEK_API_BASE'] = 'https://xxxxxx'
|
||||
```
|
||||
### 設定ファイルを使って設定する
|
||||
プロジェクトのconfigディレクトリ内のcustom_key.tomlファイルに、設定を追加します:
|
||||
```toml
|
||||
DEEPSEEK_API_KEY="sk-******"
|
||||
DEEPSEEK_API_BASE="https://xxxxxx"
|
||||
```
|
||||
|
||||
詳細についてはドキュメントを参照してください - [Documentation: DeepSeek Integration](https://github.com/antgroup/agentUniverse/blob/master/docs/guidebook/en/In-Depth_Guides/Components/LLMs/DeepSeek_LLM_Use.md).
|
||||
|
BIN
docs/agentUniverse/assets/agentUniverse_logo.jpg
Normal file
BIN
docs/agentUniverse/assets/agentUniverse_logo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 782 KiB |
BIN
docs/agentUniverse/assets/agentUniverse_logo_s.png
Normal file
BIN
docs/agentUniverse/assets/agentUniverse_logo_s.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 220 KiB |
Loading…
Reference in New Issue
Block a user