(machineId: string)
| 628 | } |
| 629 | |
| 630 | async getMachineCursorModels(machineId: string): Promise<CursorModelsResponse> { |
| 631 | return await this.request<CursorModelsResponse>( |
| 632 | `/api/machines/${encodeURIComponent(machineId)}/cursor-models` |
| 633 | ) |
| 634 | } |
| 635 | |
| 636 | async getMachineOpencodeModelsForCwd(machineId: string, cwd: string): Promise<OpencodeModelsResponse> { |
| 637 | return await this.request<OpencodeModelsResponse>( |
no outgoing calls
no test coverage detected