ComfyUI tool use the new internal enumeration class "VariableKey" (#8533)

This commit is contained in:
Qun 2024-09-20 17:42:47 +08:00 committed by GitHub
parent c87f710d58
commit 1583283635
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -333,7 +333,7 @@ class ComfyuiStableDiffusionTool(BuiltinTool):
break
return self.create_blob_message(
blob=image, meta={"mime_type": "image/png"}, save_as=self.VARIABLE_KEY.IMAGE.value
blob=image, meta={"mime_type": "image/png"}, save_as=self.VariableKey.IMAGE.value
)
except Exception as e: