Skip to content

Commit 8ca1511

Browse files
update pyproject
1 parent 07ce468 commit 8ca1511

File tree

5 files changed

+9
-14
lines changed

5 files changed

+9
-14
lines changed

__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
}
99

1010
WEB_DIRECTORY = "web"
11-
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS"]
11+
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS", "WEB_DIRECTORY"]

__pycache__/__init__.cpython-311.pyc

7 Bytes
Binary file not shown.

__pycache__/polymath.cpython-311.pyc

-54 Bytes
Binary file not shown.

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[project]
2-
name = "comfyui-Polymath"
3-
description = "Polymath is a ComfyUI node that facilitates seamless interaction with various LLMs via API. Designed to enhance user experience, it supports multiple language models, web search integration, and customizable instructions, making it a powerful extension for AI-driven workflows."
4-
version = "1.0.1"
2+
name = "llm_polymath"
3+
description = ""
4+
version = "1.0.0"
55
license = {file = "LICENSE"}
66
dependencies = ["openai", "googlesearch-python", "requests", "bs4", "jax"]
77

88
[project.urls]
9-
Repository = "https://github.com/fairy-root/ComfyUI-Polymath"
9+
Repository = "https://github.com/lum3on/comfyui_LLM_Polymath"
1010
# Used by Comfy Registry https://comfyregistry.org
1111

1212
[tool.comfy]
13-
PublisherId = "fairy-root"
14-
DisplayName = "ComfyUI-Polymath"
13+
PublisherId = "lum3on"
14+
DisplayName = "comfyui_LLM_Polymath"
1515
Icon = ""

web/appearance.js

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
import { app } from "../../scripts/app.js";
22

33
app.registerExtension({
4-
<<<<<<< HEAD
5-
name: "LLM-Polymath.appearance", // Extension name - was ist der richtige Name hier?
6-
async nodeCreated(node) {
7-
=======
84
name: "polymath.appearance", // Extension name - was ist der richtige Name hier?
9-
nodeCreated(node) {
10-
>>>>>>> da240e8 (first commit)
11-
if (node.comfyClass === "polymath") {
5+
async nodeCreated(node) {
6+
if (node.comfyClass === "polymath") { // was ist der richtige Name hier?
127
// Apply styling
138
node.color = "#16727c";
149
node.bgcolor = "#4F0074";

0 commit comments

Comments
 (0)