BaseTool 基础工具实现(提供默认的空方法)
| 16 | |
| 17 | // BaseTool 基础工具实现(提供默认的空方法) |
| 18 | type BaseTool struct { |
| 19 | ToolName string // 导出字段 |
| 20 | ToolDescription string // 导出字段 |
| 21 | } |
| 22 | |
| 23 | // NewBaseTool 创建基础工具 |
| 24 | func NewBaseTool(name, description string) *BaseTool { |
nothing calls this directly
no outgoing calls
no test coverage detected