add debug run schedule node

This commit is contained in:
hjlarry
2025-09-28 16:37:15 +08:00
parent 6795015d00
commit 2ff4af8ce3
8 changed files with 170 additions and 12 deletions

View File

@ -1,6 +1,6 @@
import uuid
from collections.abc import Generator, Mapping
from typing import Any, Union
from typing import Any, Optional, Union
from openai._exceptions import RateLimitError
@ -32,6 +32,7 @@ class AppGenerateService:
args: Mapping[str, Any],
invoke_from: InvokeFrom,
streaming: bool = True,
root_node_id: Optional[str] = None,
):
"""
App Content Generate
@ -115,6 +116,7 @@ class AppGenerateService:
args=args,
invoke_from=invoke_from,
streaming=streaming,
root_node_id=root_node_id,
call_depth=0,
),
),