mirror of
https://github.com/deepseek-ai/awesome-deepseek-integration
synced 2025-03-10 14:49:23 +00:00
…
|
||
---|---|---|
.. | ||
assets | ||
README_cn.md | ||
README_ja.md | ||
README.md |

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

Integrate with Deepseek API
Configure via Python code
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:
DEEPSEEK_API_KEY="sk-******"
DEEPSEEK_API_BASE="https://xxxxxx"
For more details, please refer to the Documentation: DeepSeek Integration