From 6c542d4649b4332b7623f7bbea89e435bcc47da7 Mon Sep 17 00:00:00 2001 From: Shroominic Date: Sat, 17 Feb 2024 18:37:05 +0800 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20v0.3.1=20-=20rm=20unnesses?= =?UTF-8?q?ary=20deps?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3e00b4f..24ea58d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,14 +1,15 @@ [project] name = "funcchain" -version = "0.3.0" +version = "0.3.1" description = "🔖 write prompts as python functions" authors = [{ name = "Shroominic", email = "contact@shroominic.com" }] dependencies = [ - "langchain_openai>=0.0.3", + "langchain_core>=0.1", "pydantic-settings>=2", "docstring-parser>=0.15", - "rich>=13", "jinja2>=3", + "openai>=1.12", + "tiktoken>=0.6", ] license = "MIT" readme = "README.md" @@ -51,6 +52,7 @@ dev-dependencies = [ "pre-commit", "types-PyYAML>=6", "mkdocs-material>=9.4", + "rich>=13", ] [project.optional-dependencies] @@ -93,5 +95,5 @@ disallow_untyped_calls = true disallow_incomplete_defs = true [tool.ruff] -select = ["E", "F", "I"] +lint.select = ["E", "F", "I"] line-length = 120