mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-13 15:28:16 +08:00
11 lines
253 B
Python
11 lines
253 B
Python
from core.tools.tool_manager import ToolManager
|
|
|
|
|
|
def test_tool_providers():
|
|
"""
|
|
Test that all tool providers can be loaded
|
|
"""
|
|
providers = ToolManager.list_builtin_providers()
|
|
for provider in providers:
|
|
provider.get_tools()
|