Prep for custom models: support reading custom providers (#131)

This commit is contained in:
Will Chen
2025-05-12 14:52:48 -07:00
committed by GitHub
parent 79a2b5a906
commit cd7eaa8ece
23 changed files with 901 additions and 173 deletions

View File

@@ -14,6 +14,8 @@ import { registerTokenCountHandlers } from "./handlers/token_count_handlers";
import { registerWindowHandlers } from "./handlers/window_handlers";
import { registerUploadHandlers } from "./handlers/upload_handlers";
import { registerVersionHandlers } from "./handlers/version_handlers";
import { registerLanguageModelHandlers } from "./handlers/language_model_handlers";
export function registerIpcHandlers() {
// Register all IPC handlers by category
registerAppHandlers();
@@ -32,4 +34,5 @@ export function registerIpcHandlers() {
registerWindowHandlers();
registerUploadHandlers();
registerVersionHandlers();
registerLanguageModelHandlers();
}