* 批量激活 Agents * @param agentIds Agent ID 列表
(agentIds: string[])
| 318 | * @param agentIds Agent ID 列表 |
| 319 | */ |
| 320 | async activateBatch(agentIds: string[]): Promise<void> { |
| 321 | await this.request("/v1/agents/batch/activate", { |
| 322 | method: "POST", |
| 323 | body: { agentIds }, |
| 324 | }); |
| 325 | } |
| 326 | |
| 327 | // ========================================================================== |
| 328 | // Agent Clone |