import { handleCompletionStream } from "./completion-stream"; import { handleDownloadAsset } from "./download-asset"; import { handleLoadModel } from "./load-model/index"; import { handleUnloadModel } from "./unload-model"; import { handleEmbed } from "./embed"; import { handleTranscribe } from "./transcribe"; import { handleTranscribeStream } from "./transcribe-stream"; import { handleBciTranscribe } from "./bci-transcribe"; import { handleBciTranscribeStream } from "./bci-transcribe-stream"; import { provideHandler } from "./provideHandler"; import { stopProvideHandler } from "./stopProvideHandler"; import { handleTranslate } from "./translate"; import { handleLoggingStream } from "./logging-stream"; import { handleRag } from "./rag"; import { cancelHandler } from "./cancelHandler"; import { handleDeleteCache } from "./delete-cache"; import { handleTextToSpeech } from "./text-to-speech"; import { handleTextToSpeechStream } from "./text-to-speech-stream"; import { handleGetModelInfo } from "./get-model-info"; import { handleGetLoadedModelInfo } from "./get-loaded-model-info"; import { handleFinetune } from "./finetune"; import { handleOCRStream } from "./ocr-stream"; import { handleHeartbeat } from "./heartbeat"; import { handleDiffusionStream } from "./diffusion-stream"; import { handleVideoStream } from "./video-stream"; import { handleUpscaleStream } from "./upscale-stream"; import { handlePluginInvoke, handlePluginInvokeStream } from "./plugin-invoke"; import { handleModelRegistryList, handleModelRegistrySearch, handleModelRegistryGetModel } from "./registry"; import { handleSuspend } from "./suspend"; import { handleResume } from "./resume"; import { handleState } from "./state"; export declare const handlers: { heartbeat: typeof handleHeartbeat; completionStream: typeof handleCompletionStream; downloadAsset: typeof handleDownloadAsset; deleteCache: typeof handleDeleteCache; loadModel: typeof handleLoadModel; unloadModel: typeof handleUnloadModel; embed: typeof handleEmbed; transcribe: typeof handleTranscribe; transcribeStream: typeof handleTranscribeStream; bciTranscribe: typeof handleBciTranscribe; bciTranscribeStream: typeof handleBciTranscribeStream; provide: typeof provideHandler; stopProvide: typeof stopProvideHandler; translate: typeof handleTranslate; loggingStream: typeof handleLoggingStream; rag: typeof handleRag; cancel: typeof cancelHandler; textToSpeech: typeof handleTextToSpeech; textToSpeechStream: typeof handleTextToSpeechStream; getModelInfo: typeof handleGetModelInfo; getLoadedModelInfo: typeof handleGetLoadedModelInfo; finetune: typeof handleFinetune; ocrStream: typeof handleOCRStream; diffusionStream: typeof handleDiffusionStream; videoStream: typeof handleVideoStream; upscaleStream: typeof handleUpscaleStream; pluginInvoke: typeof handlePluginInvoke; pluginInvokeStream: typeof handlePluginInvokeStream; modelRegistryList: typeof handleModelRegistryList; modelRegistrySearch: typeof handleModelRegistrySearch; modelRegistryGetModel: typeof handleModelRegistryGetModel; suspend: typeof handleSuspend; resume: typeof handleResume; state: typeof handleState; }; //# sourceMappingURL=index.d.ts.map