From 75b02ca165634f6d6ae454e0f6e7ccb9d8244c3c Mon Sep 17 00:00:00 2001 From: Don Kang Date: Tue, 1 Apr 2025 12:57:19 -0700 Subject: [PATCH] Update dependencies and version for 0.1.1 release --- README.md | 3 +++ pyproject.toml | 7 +++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 41474af..9910271 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,9 @@ The combination of these technologies creates an agent that can reason effective # Install from PyPI pip install smart-agent +# Install with monitoring support +pip install smart-agent[monitoring] + # Install from source git clone https://github.com/ddkang1/smart-agent.git cd smart-agent diff --git a/pyproject.toml b/pyproject.toml index 74c0db1..9b86db2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "smart-agent" -version = "0.1.0" +version = "0.1.1" description = "Smart AI agent with reasoning and tool use capabilities" readme = "README.md" authors = [ @@ -19,13 +19,16 @@ classifiers = [ requires-python = ">=3.8" dependencies = [ "colorama", - "langfuse", "openai", "asyncio", "click", "python-dotenv", + "pyyaml", ] +[project.optional-dependencies] +monitoring = ["langfuse"] + [project.urls] "Homepage" = "https://github.com/ddkang1/smart-agent" "Bug Tracker" = "https://github.com/ddkang1/smart-agent/issues"