From b51c490a2a558392c1515ad790893c72d9769984 Mon Sep 17 00:00:00 2001 From: Aymeric Date: Fri, 27 Dec 2024 16:36:50 +0100 Subject: [PATCH] Update version --- README.md | 2 +- pyproject.toml | 2 +- src/smolagents/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 740590c..a71d3ce 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ limitations under the License.

-

🤗 `smolagents` - a smol library to build great agents!

+

🤗 smolagents - a smol library to build great agents!

`smolagents` is a library that enables you to run powerful agents in a few lines of code. It offers: diff --git a/pyproject.toml b/pyproject.toml index 6c2d7f5..d575db7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "smolagents" -version = "0.0.1" +version = "0.1.0" description = "🤗 `smolagents`: a barebones library for agents. Agents just write python code to call/orchestrate tools." authors = [ { name="Aymeric Roucher", email="aymeric@hf.co" }, { name="Thomas Wolf"}, diff --git a/src/smolagents/__init__.py b/src/smolagents/__init__.py index fb05cbd..deaf924 100644 --- a/src/smolagents/__init__.py +++ b/src/smolagents/__init__.py @@ -14,7 +14,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.0.1" +__version__ = "0.1.0" from typing import TYPE_CHECKING