Publish current ComfyUI O1Key code baseline

Replace the prior release tree with the current plugin, frontend, tests, and documentation. Document retired node IDs and the public Gitea update source.
This commit is contained in:
Jony
2026-09-24 19:56:48 +08:00
parent 3e337722ab
commit ba920f2b66
183 changed files with 49496 additions and 9934 deletions
+5 -1
View File
@@ -12,6 +12,7 @@ from typing import Optional, Tuple
import torch
from ..utils.image_utils import tensor_to_pil
from ..utils.config import get_runtime_config_signature
from ..clients.sora_client import SoraClient
from ..models_config import (
get_enabled_sora_models,
@@ -242,6 +243,7 @@ class SoraVideo:
def __init__(self):
self.client = None
self._client_config_signature = None
@classmethod
def INPUT_TYPES(cls):
@@ -417,8 +419,10 @@ class SoraVideo:
pbar = ProgressBar(生成数量 if 生成数量 > 1 else 100)
try:
if self.client is None:
config_signature = get_runtime_config_signature()
if self.client is None or config_signature != self._client_config_signature:
self.client = SoraClient()
self._client_config_signature = config_signature
if 生成数量 == 1:
# ── 单个视频:保留详细进度(提交→轮询→下载)