mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-14 01:36:14 +08:00
improve: significantly speed up the server launching time by async preloading tool providers (#9146)
This commit is contained in:
parent
f6fecb957e
commit
0bdae34b5e
@ -3,7 +3,7 @@ import logging
|
|||||||
import mimetypes
|
import mimetypes
|
||||||
from collections.abc import Generator
|
from collections.abc import Generator
|
||||||
from os import listdir, path
|
from os import listdir, path
|
||||||
from threading import Lock
|
from threading import Lock, Thread
|
||||||
from typing import Any, Optional, Union
|
from typing import Any, Optional, Union
|
||||||
|
|
||||||
from configs import dify_config
|
from configs import dify_config
|
||||||
@ -647,4 +647,5 @@ class ToolManager:
|
|||||||
raise ValueError(f"provider type {provider_type} not found")
|
raise ValueError(f"provider type {provider_type} not found")
|
||||||
|
|
||||||
|
|
||||||
ToolManager.load_builtin_providers_cache()
|
# preload builtin tool providers
|
||||||
|
Thread(target=ToolManager.load_builtin_providers_cache, name="pre_load_builtin_providers_cache", daemon=True).start()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user