diff --git a/README.md b/README.md index 6f7c848..f8142cd 100644 --- a/README.md +++ b/README.md @@ -18,19 +18,17 @@ limitations under the License. - License - Documentation - GitHub release - Contributor Covenant + License + Documentation + GitHub release + Contributor Covenant

-

Smolagents - 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! - -This library offers: +Smolagents is a library that enables you to run powerful agents in a few lines of code. It offers: ✨ **Simplicity**: the logic for agents fits in ~thousand lines of code. We kept abstractions to their minimal shape above raw code! diff --git a/pyproject.toml b/pyproject.toml index f090cb3..2ffb4ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,8 +4,11 @@ build-backend = "setuptools.build_meta" [project] name = "smolagents" -version = "0.1.0" -description = "Add your description here" +version = "0.0.1" +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"}, +] readme = "README.md" requires-python = ">=3.10" dependencies = [ @@ -16,7 +19,6 @@ dependencies = [ "pandas>=2.2.3", "jinja2>=3.1.4", "pillow>=11.0.0", - "llama-cpp-python>=0.3.4", "markdownify>=0.14.1", "gradio>=5.8.0", "duckduckgo-search>=6.3.7", diff --git a/requirements.in b/requirements.in index d200183..038401b 100644 --- a/requirements.in +++ b/requirements.in @@ -5,7 +5,6 @@ rich>=13.9.4 pandas>=2.2.3 jinja2>=3.1.4 pillow>=11.0.0 -llama-cpp-python>=0.3.4 markdownify>=0.14.1 gradio>=5.8.0 duckduckgo-search>=6.3.7 diff --git a/src/smolagents/__init__.py b/src/smolagents/__init__.py index deaf924..fb05cbd 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.1.0" +__version__ = "0.0.1" from typing import TYPE_CHECKING