From aa217cf86cc85ba8dcd1786b830dafe7509ef0cb Mon Sep 17 00:00:00 2001 From: Jason Schleifer Date: Fri, 3 Jan 2025 11:47:15 +1300 Subject: [PATCH] pinned openai --- CHANGELOG.md | 4 ++++ pyproject.toml | 6 +++--- requirements.txt | 1 + 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 826c4da..ce6fa0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed ### Security --> +## [2.1.02] - 2025-03-01 +### Fixed +- Pinned `openai` to `>=1.58.1` + ## [2.1.01] - 2025-03-01 ### Fixed - Updated `attrs` library to `>=24.3.0` diff --git a/pyproject.toml b/pyproject.toml index c16ff5f..9e14fa4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "comfyui-griptape" -version = "2.1.01" +version = "2.1.02" description = "Griptape LLM(Large Language Model) Nodes for ComfyUI." authors = ["Jason Schleifer "] readme = "README.md" @@ -9,9 +9,9 @@ readme = "README.md" [project] name = "comfyui-griptape" description = "Griptape LLM(Large Language Model) Nodes for ComfyUI." -version = "2.1.01" +version = "2.1.02" license = {file = "LICENSE"} -dependencies = ["attrs==^24.3.0", "griptape[all]==^1.1.0", "python-dotenv", "poetry==1.8.5", "griptape-black-forest @ git+https://github.com/griptape-ai/griptape-black-forest.git"] +dependencies = ["attrs==^24.3.0", "openai==^1.58.1", "griptape[all]==^1.1.0", "python-dotenv", "poetry==1.8.5", "griptape-black-forest @ git+https://github.com/griptape-ai/griptape-black-forest.git"] [project.urls] Repository = "https://github.com/griptape-ai/ComfyUI-Griptape" diff --git a/requirements.txt b/requirements.txt index 07ef6d1..0a0b0a4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ attrs>=24.3.0 +openai>=1.58.1 griptape[all]==1.1.0 python-dotenv poetry==1.8.5