(params?: ModelListParams)
| 154 | } |
| 155 | |
| 156 | async listModels(params?: ModelListParams): Promise<ModelListResponse> { |
| 157 | const response = await this.sendRequest('model/list', params ?? {}, { |
| 158 | timeoutMs: 30_000 |
| 159 | }); |
| 160 | return response as ModelListResponse; |
| 161 | } |
| 162 | |
| 163 | async listCollaborationModes(): Promise<CollaborationModeListResponse> { |
| 164 | const response = await this.sendRequest('collaborationMode/list', {}, { |
no test coverage detected