refactor: rename the name to input_id

This commit is contained in:
BennyKok 2023-12-15 12:50:31 +08:00
parent eac8d709f9
commit e6f5b16a54
2 changed files with 7 additions and 7 deletions

View File

@ -8,7 +8,7 @@ class ComfyUIDeployExternalImage:
def INPUT_TYPES(s):
return {
"required": {
"name": (
"input_id": (
"STRING",
{"multiline": False, "default": "input_image"},
),
@ -25,14 +25,14 @@ class ComfyUIDeployExternalImage:
CATEGORY = "image"
def run(self, name, default_image=None):
def run(self, input_id, default_image=None):
image = default_image
try:
if name.startswith('http'):
if input_id.startswith('http'):
import requests
from io import BytesIO
print("Fetching image from url: ", name)
response = requests.get(name)
print("Fetching image from url: ", input_id)
response = requests.get(input_id)
image = Image.open(BytesIO(response.content))
else:
raise ValueError("Invalid image url provided.")

View File

@ -53,8 +53,8 @@ export async function createRun(
if (inputs && workflow_api) {
for (const key in inputs) {
Object.entries(workflow_api).forEach(([_, node]) => {
if (node.inputs["name"] === key) {
node.inputs["name"] = inputs[key];
if (node.inputs["input_id"] === key) {
node.inputs["input_id"] = inputs[key];
}
});
}