base_agent/tools/tool.template

16 lines
324 B
Plaintext
Raw Normal View History

2026-03-03 00:47:44 +00:00
import json
class MyDemoTool(BaseTool):
name = "{{ name }}"
description = "{{ description }}"
parameters = {{ parameters }}
def execute(self, parameter1: str, parameter2: int):
...
"""
"""
生成agent技能工具用于实现当前系统进程状态查询技能工具代码示例如下"
"""