mirror of
https://github.com/HeyPuter/puter.git
synced 2026-08-24 15:07:17 +00:00
51 lines
2.0 KiB
TypeScript
51 lines
2.0 KiB
TypeScript
/*
|
|
* Copyright (C) 2024-present Puter Technologies Inc.
|
|
*
|
|
* This file is part of Puter.
|
|
*
|
|
* Puter is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { ChatCompletionDriver } from './ai-chat/ChatCompletionDriver';
|
|
import { ImageGenerationDriver } from './ai-image/ImageGenerationDriver';
|
|
import { OCRDriver } from './ai-ocr/OCRDriver';
|
|
import { VoiceChangerDriver } from './ai-speech2speech/VoiceChangerDriver';
|
|
import { SpeechToTextDriver } from './ai-speech2txt/SpeechToTextDriver';
|
|
import { TTSDriver } from './ai-tts/TTSDriver';
|
|
import { VideoGenerationDriver } from './ai-video/VideoGenerationDriver';
|
|
import { AppDriver } from './apps/AppDriver.js';
|
|
import { KVStoreDriver } from './kv/KVStoreDriver';
|
|
import { NotificationDriver } from './notification/NotificationDriver';
|
|
import { SubdomainDriver } from './subdomain/SubdomainDriver';
|
|
import type { IPuterDriverRegistry } from './types';
|
|
import { WorkerDriver } from './workers/WorkerDriver';
|
|
|
|
export { Driver } from './decorators';
|
|
export { resolveDriverMeta } from './meta';
|
|
|
|
export const puterDrivers = {
|
|
kvStore: KVStoreDriver,
|
|
aiChat: ChatCompletionDriver,
|
|
aiImage: ImageGenerationDriver,
|
|
aiTts: TTSDriver,
|
|
aiVideo: VideoGenerationDriver,
|
|
aiSpeech2Speech: VoiceChangerDriver,
|
|
aiSpeech2Txt: SpeechToTextDriver,
|
|
aiOcr: OCRDriver,
|
|
apps: AppDriver,
|
|
subdomains: SubdomainDriver,
|
|
notifications: NotificationDriver,
|
|
workers: WorkerDriver,
|
|
} satisfies IPuterDriverRegistry;
|