feat(api/workflow): Add Conversation.dialogue_count (#7275)
This commit is contained in:
parent
8f5d8397f9
commit
32dc963556
29 changed files with 205 additions and 259 deletions
|
|
@ -1,3 +1,7 @@
|
|||
from contextvars import ContextVar
|
||||
|
||||
tenant_id: ContextVar[str] = ContextVar('tenant_id')
|
||||
from core.workflow.entities.variable_pool import VariablePool
|
||||
|
||||
tenant_id: ContextVar[str] = ContextVar('tenant_id')
|
||||
|
||||
workflow_variable_pool: ContextVar[VariablePool] = ContextVar('workflow_variable_pool')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue