mirror of
https://github.com/langgenius/dify.git
synced 2026-05-03 17:08:03 +08:00
add debug run schedule node
This commit is contained in:
@ -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,
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user