Skip to content

Commit

Permalink
Merge pull request #162 from griptape-ai:dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
shhlife authored Nov 9, 2024
2 parents 8a1a219 + f9774d0 commit f242626
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 13 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@ You can previous and download more examples [here](examples/README.md).

## Recent Changelog

### Nov 9, 2024
* Upgrade to Griptape Framework v0.34.2
* Fixed combine nodes breaking when re-connecting output

### Nov 6, 2024
* Upgrade to Griptape Framework v0.34.1
* Fix to `WebScraperTool` provides better results when using `off_prompt`.
Expand Down
14 changes: 7 additions & 7 deletions js/CombineNodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ function setupCombineNode(nodeType, nodeData, app) {
return;
if(type==1) {
handleInputConnection(this, link_info, app, input_name);
}

const specialInputCount = countSpecialInputs(this);
const select_slot = this.inputs.find(x => x.name == "select");

const specialInputCount = countSpecialInputs(this);
const select_slot = this.inputs.find(x => x.name == "select");

handleInputRemoval(this, index, connected, specialInputCount);
renameInputs(this, input_name);
updateWidgets(this, input_name, select_slot);
handleInputRemoval(this, index, connected, specialInputCount);
renameInputs(this, input_name);
updateWidgets(this, input_name, select_slot);
}
}

}
Expand Down
11 changes: 9 additions & 2 deletions js/versions.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
export const versions = {
"version": "0.34.1",
"releaseDate": "2024-11-5",
"version": "0.34.2",
"releaseDate": "2024-11-9",
"name": "ComfyUI-Griptape",
"description": "Griptape integration for ComfyUI",
"author": "Jason Schleifer",
"repository": "https://github.com/griptape-ai/ComfyUI-Griptape",
"changelog": [
{
"version": "0.34.2",
"date": "2024-11-6",
"changes": [
"Fixed issue with `dynamicprompt` inputs",
]
},
{
"version": "0.34.1",
"date": "2024-11-6",
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
python-dotenv = "^1.0.1"
griptape = { version = "^0.34.1", extras = ["all"]}
griptape = { version = "^0.34.2", extras = ["all"]}

[tool.poetry.group.dev.dependencies]
icecream = "^2.1.3"
Expand All @@ -26,9 +26,9 @@ priority = "explicit"
[project]
name = "comfyui-griptape"
description = "Griptape LLM(Large Language Model) Nodes for ComfyUI."
version = "1.0.19"
version = "1.0.20"
license = {file = "LICENSE"}
dependencies = ["griptape[all]==0.34.1", "python-dotenv"]
dependencies = ["griptape[all]==0.34.2", "python-dotenv"]

[project.urls]
Repository = "https://github.com/griptape-ai/ComfyUI-Griptape"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
griptape[all]==0.34.1
griptape[all]==0.34.2
python-dotenv

0 comments on commit f242626

Please sign in to comment.