mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-13 21:08:17 +08:00

Co-authored-by: chenhe <guchenhe@gmail.com> Co-authored-by: Pascal M <11357019+perzeuss@users.noreply.github.com>
10 lines
252 B
Python
10 lines
252 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()
|