Delete custom provider (#137)

This commit is contained in:
Will Chen
2025-05-12 17:31:03 -07:00
committed by GitHub
parent ea9301c771
commit f5a6a1abca
5 changed files with 182 additions and 5 deletions

View File

@@ -774,6 +774,12 @@ export class IpcClient {
return this.ipcRenderer.invoke("delete-custom-model", params);
}
async deleteCustomLanguageModelProvider(providerId: string): Promise<void> {
return this.ipcRenderer.invoke("delete-custom-language-model-provider", {
providerId,
});
}
// --- End window control methods ---
// --- Language Model Operations ---