diff --git a/packages/tasks/src/local-apps.ts b/packages/tasks/src/local-apps.ts index 155d4bf40..bbe325986 100644 --- a/packages/tasks/src/local-apps.ts +++ b/packages/tasks/src/local-apps.ts @@ -425,6 +425,13 @@ export const LOCAL_APPS = { displayOnModelPage: isLlamaCppGgufModel, snippet: snippetOllama, }, + ttsGenerationWebui: { + prettyLabel: "TTS Generation WebUI", + docsUrl: "https://github.com/rsxdalv/tts-generation-webui", + mainTask: "text-to-speech", + displayOnModelPage: (model) => false, + deeplink: (model) => new URL(`https://github.com/rsxdalv/tts-generation-webui`), + }, } satisfies Record; export type LocalAppKey = keyof typeof LOCAL_APPS;