* 批量删除 Agents * @param agentIds Agent ID 列表
(agentIds: string[])
| 296 | * @param agentIds Agent ID 列表 |
| 297 | */ |
| 298 | async deleteBatch(agentIds: string[]): Promise<void> { |
| 299 | await this.request("/v1/agents/batch", { |
| 300 | method: "DELETE", |
| 301 | body: { agentIds }, |
| 302 | }); |
| 303 | } |
| 304 | |
| 305 | /** |
| 306 | * 批量归档 Agents |
no test coverage detected