mirror of
https://github.com/langgenius/dify.git
synced 2025-07-13 20:21:37 +00: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()
|