* 删除自定义工具 * @param toolId 工具 ID 或名称
(toolId: string)
| 76 | * @param toolId 工具 ID 或名称 |
| 77 | */ |
| 78 | async delete(toolId: string): Promise<void> { |
| 79 | await this.request(`/v1/tools/${toolId}`, { |
| 80 | method: "DELETE", |
| 81 | }); |
| 82 | } |
| 83 | |
| 84 | // ========================================================================== |
| 85 | // Tool Execution |
no test coverage detected