feat: Release version 0.0.9

This commit is contained in:
Jerry Z H
2024-06-14 18:29:12 +08:00
parent f32ff360ff
commit 39c40f007e
6 changed files with 34 additions and 4 deletions

View File

@@ -24,6 +24,21 @@ Note - Additional remarks regarding the version.
***************************************************
# Version Update History
## [0.0.9] - 2024-06-14
### Added
- Added standard integration for Claude and Ollama LLM components
- Added new Qwen embedding module
- Added default agents for ReAct-Type and NL2API-Type
### Note
- Added new use cases
- RAG-Type Agent Examples: Legal Consultation Agent
- ReAct-Type Agent Examples: Python Code Generation and Execution Agent
- Multi-Agent: Discussion Group Based on Multi-Turn Multi-Agent Mode
For more details, please refer to the use case section in the user documentation.
- Some code optimizations and documentation updates.
## [0.0.8] - 2024-06-06
### Added
- Introduced a new monitor module

View File

@@ -24,6 +24,21 @@ Note - 对于版本的额外说明。
***************************************************
# 版本更新记录
## [0.0.9] - 2024-06-14
### Added
- LLM组件新增claude、ollama标准接入
- 新增qwen embedding模块
- 新增ReAct、nl2api默认agent
### Note
- 新增使用案例
- RAG类Agent案例-法律咨询Agent
- ReAct类Agent案例-Python代码生成与执行Agent
- 多智能体案例-基于多轮多Agent的讨论小组
详情请看用户文档案例部分。
- 部分代码优化与文档更新
## [0.0.8] - 2024-06-06
### Added
- 新增monitor模块

View File

@@ -5,7 +5,7 @@ Language version: [English](./README.md) | [中文](./README_zh.md) | [日本語
![](https://img.shields.io/badge/framework-agentUniverse-pink)
![](https://img.shields.io/badge/python-3.10%2B-blue?logo=Python)
[![](https://img.shields.io/badge/%20license-Apache--2.0-yellow)](LICENSE)
[![Static Badge](https://img.shields.io/badge/pypi-v0.0.8-blue?logo=pypi)](https://pypi.org/project/agentUniverse/)
[![Static Badge](https://img.shields.io/badge/pypi-v0.0.9-blue?logo=pypi)](https://pypi.org/project/agentUniverse/)
![](docs/guidebook/_picture/logo_bar.jpg)
****************************************

View File

@@ -5,7 +5,7 @@
![](https://img.shields.io/badge/framework-agentUniverse-pink)
![](https://img.shields.io/badge/python-3.10%2B-blue?logo=Python)
[![](https://img.shields.io/badge/%20license-Apache--2.0-yellow)](LICENSE)
[![Static Badge](https://img.shields.io/badge/pypi-v0.0.8-blue?logo=pypi)](https://pypi.org/project/agentUniverse/)
[![Static Badge](https://img.shields.io/badge/pypi-v0.0.9-blue?logo=pypi)](https://pypi.org/project/agentUniverse/)
![](docs/guidebook/_picture/logo_bar.jpg)
****************************************

View File

@@ -5,7 +5,7 @@
![](https://img.shields.io/badge/framework-agentUniverse-pink)
![](https://img.shields.io/badge/python-3.10%2B-blue?logo=Python)
[![](https://img.shields.io/badge/%20license-Apache--2.0-yellow)](LICENSE)
[![Static Badge](https://img.shields.io/badge/pypi-v0.0.8-blue?logo=pypi)](https://pypi.org/project/agentUniverse/)
[![Static Badge](https://img.shields.io/badge/pypi-v0.0.9-blue?logo=pypi)](https://pypi.org/project/agentUniverse/)
![](docs/guidebook/_picture/logo_bar.jpg)
****************************************

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "agentUniverse"
version = "0.0.8"
version = "0.0.9"
description = "agentUniverse is a framework for developing applications powered by multi-agent base on large language model."
authors = ["AntGroup <jerry.zzw@antgroup.com>"]