(machineId: string)
| 598 | } |
| 599 | |
| 600 | async getMachineCodexModels(machineId: string): Promise<CodexModelsResponse> { |
| 601 | return await this.request<CodexModelsResponse>( |
| 602 | `/api/machines/${encodeURIComponent(machineId)}/codex-models` |
| 603 | ) |
| 604 | } |
| 605 | |
| 606 | async getSessionCodexModels(sessionId: string): Promise<CodexModelsResponse> { |
| 607 | return await this.request<CodexModelsResponse>( |