From 5fab800f09b22cb0cc8bd924efd11e9deb4f154f Mon Sep 17 00:00:00 2001 From: yzlin Date: Fri, 29 Mar 2024 14:19:56 +0800 Subject: [PATCH] v0.8.0 release --- README.md | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index edb2066a3..9f129105c 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,8 @@

## News +🚀 Mar. 29, 2024: [v0.8.0](https://github.com/geekan/MetaGPT/releases/tag/v0.8.0) released. Now you can use Data Interpreter via pypi package import. Meanwhile, we integrated RAG module and supported multiple new LLMs. + 🚀 Mar. 14, 2024: Our **Data Interpreter** paper is on [arxiv](https://arxiv.org/abs/2402.18679). Check the [example](https://docs.deepwisdom.ai/main/en/DataInterpreter/) and [code](https://github.com/geekan/MetaGPT/tree/main/examples/di)! 🚀 Feb. 08, 2024: [v0.7.0](https://github.com/geekan/MetaGPT/releases/tag/v0.7.0) released, supporting assigning different LLMs to different Roles. We also introduced [Data Interpreter](https://github.com/geekan/MetaGPT/blob/main/examples/di/README.md), a powerful agent capable of solving a wide range of real-world problems. diff --git a/setup.py b/setup.py index 6d1251401..4ea0b366e 100644 --- a/setup.py +++ b/setup.py @@ -67,7 +67,7 @@ def run(self): setup( name="metagpt", - version="0.7.6", + version="0.8.0", description="The Multi-Agent Framework", long_description=long_description, long_description_content_type="text/markdown",