mirror of
https://github.com/langgenius/dify.git
synced 2025-11-14 10:20:05 +00:00
Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
from contextvars import ContextVar
|
|
from threading import Lock
|
|
from typing import TYPE_CHECKING
|
|
|
|
from contexts.wrapper import RecyclableContextVar
|
|
|
|
if TYPE_CHECKING:
|
|
from core.model_runtime.entities.model_entities import AIModelEntity
|
|
from core.plugin.entities.plugin_daemon import PluginModelProviderEntity
|
|
from core.tools.plugin_tool.provider import PluginToolProviderController
|
|
|
|
|
|
"""
|
|
To avoid race-conditions caused by gunicorn thread recycling, using RecyclableContextVar to replace with
|
|
"""
|
|
plugin_tool_providers: RecyclableContextVar[dict[str, "PluginToolProviderController"]] = RecyclableContextVar(
|
|
ContextVar("plugin_tool_providers")
|
|
)
|
|
|
|
plugin_tool_providers_lock: RecyclableContextVar[Lock] = RecyclableContextVar(ContextVar("plugin_tool_providers_lock"))
|
|
|
|
plugin_model_providers: RecyclableContextVar[list["PluginModelProviderEntity"] | None] = RecyclableContextVar(
|
|
ContextVar("plugin_model_providers")
|
|
)
|
|
|
|
plugin_model_providers_lock: RecyclableContextVar[Lock] = RecyclableContextVar(
|
|
ContextVar("plugin_model_providers_lock")
|
|
)
|
|
|
|
plugin_model_schema_lock: RecyclableContextVar[Lock] = RecyclableContextVar(ContextVar("plugin_model_schema_lock"))
|
|
|
|
plugin_model_schemas: RecyclableContextVar[dict[str, "AIModelEntity"]] = RecyclableContextVar(
|
|
ContextVar("plugin_model_schemas")
|
|
)
|