From 10b94c3a29337e4f2d817e627869f9452d8400e6 Mon Sep 17 00:00:00 2001 From: Ivan Leo Date: Thu, 17 Oct 2024 03:29:14 +0000 Subject: [PATCH 1/2] fix: add missing jinja2 dependency --- poetry.lock | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index 84f5e6619..12643bf1d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -6105,4 +6105,4 @@ vertexai = ["google-cloud-aiplatform", "jsonref"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "8413bb04ad220cc66b1498c83d97eaf9e7c5d32ea9cbbf8537863f341a60c605" +content-hash = "379967b63bcaafa3a42f75d563b57114e7552a9d478e1372c747a9ce3475940c" diff --git a/pyproject.toml b/pyproject.toml index 2b60631fe..540a6fadd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,7 @@ aiohttp = "^3.9.1" tenacity = ">=9.0.0,<10.0.0" pydantic-core = "^2.18.0" jiter = "^0.5.0" +jinja2 = "^3.1.4" # dependency versions for extras fastapi = { version = "^0.109.2", optional = true } From f9bb7c1d4e3996069f2b194188f7673b0f56d972 Mon Sep 17 00:00:00 2001 From: Ivan Leo Date: Thu, 17 Oct 2024 03:35:26 +0000 Subject: [PATCH 2/2] fix: bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 540a6fadd..79da3a636 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "instructor" -version = "1.6.0" +version = "1.6.1" description = "structured outputs for llm" authors = ["Jason Liu "] license = "MIT"