9 lines
130 B
Python
9 lines
130 B
Python
|
|
"""
|
||
|
|
工具模块配置
|
||
|
|
"""
|
||
|
|
|
||
|
|
from langchain_core.tools import tool
|
||
|
|
from backend.app.logger import info
|
||
|
|
|
||
|
|
__all__ = ["tool", "info"]
|