mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-08 18:36:53 +08:00
10 lines
298 B
Python
10 lines
298 B
Python
from contextvars import ContextVar
|
|
from typing import TYPE_CHECKING
|
|
|
|
if TYPE_CHECKING:
|
|
from core.workflow.entities.variable_pool import VariablePool
|
|
|
|
tenant_id: ContextVar[str] = ContextVar("tenant_id")
|
|
|
|
workflow_variable_pool: ContextVar["VariablePool"] = ContextVar("workflow_variable_pool")
|