/** * @license * Copyright 2026 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import { AiChatTask } from "./AiChatTask"; import { AiChatWithKbTask } from "./AiChatWithKbTask"; import { BackgroundRemovalTask } from "./BackgroundRemovalTask"; import { ContextBuilderTask } from "./ContextBuilderTask"; import { CountTokensTask } from "./CountTokensTask"; import { DocumentEnricherTask } from "./DocumentEnricherTask"; import { FaceDetectorTask } from "./FaceDetectorTask"; import { FaceLandmarkerTask } from "./FaceLandmarkerTask"; import { ImageEditTask } from "./generation/ImageEditTask"; import { ImageGenerateTask } from "./generation/ImageGenerateTask"; import { GestureRecognizerTask } from "./GestureRecognizerTask"; import { HandLandmarkerTask } from "./HandLandmarkerTask"; import { HierarchicalChunkerTask } from "./HierarchicalChunkerTask"; import { ImageClassificationTask } from "./ImageClassificationTask"; import { ImageEmbeddingTask } from "./ImageEmbeddingTask"; import { ImageSegmentationTask } from "./ImageSegmentationTask"; import { ImageToTextTask } from "./ImageToTextTask"; import { KbAddDocumentTask } from "./KbAddDocumentTask"; import { KbDeleteTask } from "./KbDeleteTask"; import { KbReindexTask } from "./KbReindexTask"; import { KbSearchTask } from "./KbSearchTask"; import { KbToDocumentsTask } from "./KbToDocumentsTask"; import { ModelDownloadRemoveTask } from "./ModelDownloadRemoveTask"; import { ModelDownloadTask } from "./ModelDownloadTask"; import { ModelInfoTask } from "./ModelInfoTask"; import { ModelSearchTask } from "./ModelSearchTask"; import { ObjectDetectionTask } from "./ObjectDetectionTask"; import { PoseLandmarkerTask } from "./PoseLandmarkerTask"; import { QueryExpanderTask } from "./QueryExpanderTask"; import { RerankerTask } from "./RerankerTask"; import { StructuralParserTask } from "./StructuralParserTask"; import { StructuredGenerationTask } from "./StructuredGenerationTask"; import { TextChunkerTask } from "./TextChunkerTask"; import { TextClassificationTask } from "./TextClassificationTask"; import { TextEmbeddingTask } from "./TextEmbeddingTask"; import { TextFillMaskTask } from "./TextFillMaskTask"; import { TextGenerationTask } from "./TextGenerationTask"; import { TextLanguageDetectionTask } from "./TextLanguageDetectionTask"; import { TextNamedEntityRecognitionTask } from "./TextNamedEntityRecognitionTask"; import { TextQuestionAnswerTask } from "./TextQuestionAnswerTask"; import { TextRerankerTask } from "./TextRerankerTask"; import { TextRewriterTask } from "./TextRewriterTask"; import { TextSummaryTask } from "./TextSummaryTask"; import { TextTranslationTask } from "./TextTranslationTask"; import { ToolCallingTask } from "./ToolCallingTask"; import { TopicSegmenterTask } from "./TopicSegmenterTask"; import { VectorQuantizeTask } from "./VectorQuantizeTask"; import { VectorSimilarityTask } from "./VectorSimilarityTask"; /** * Centralized registration ensures tasks are available for JSON deserialization * and prevents tree-shaking issues. */ export declare const registerAiTasks: () => (typeof ToolCallingTask | typeof CountTokensTask | typeof HierarchicalChunkerTask | typeof RerankerTask | typeof TextEmbeddingTask | typeof TextRerankerTask | typeof AiChatTask | typeof KbSearchTask | typeof AiChatWithKbTask | typeof BackgroundRemovalTask | typeof ContextBuilderTask | typeof TextNamedEntityRecognitionTask | typeof TextSummaryTask | typeof DocumentEnricherTask | typeof FaceDetectorTask | typeof FaceLandmarkerTask | typeof ImageEditTask | typeof ImageGenerateTask | typeof GestureRecognizerTask | typeof HandLandmarkerTask | typeof ImageClassificationTask | typeof ImageEmbeddingTask | typeof ImageSegmentationTask | typeof ImageToTextTask | typeof KbAddDocumentTask | typeof KbDeleteTask | typeof KbReindexTask | typeof KbToDocumentsTask | typeof ModelDownloadRemoveTask | typeof ModelDownloadTask | typeof ModelInfoTask | typeof ModelSearchTask | typeof ObjectDetectionTask | typeof PoseLandmarkerTask | typeof QueryExpanderTask | typeof StructuralParserTask | typeof StructuredGenerationTask | typeof TextChunkerTask | typeof TextClassificationTask | typeof TextFillMaskTask | typeof TextGenerationTask | typeof TextLanguageDetectionTask | typeof TextQuestionAnswerTask | typeof TextRewriterTask | typeof TextTranslationTask | typeof TopicSegmenterTask | typeof VectorQuantizeTask | typeof VectorSimilarityTask)[]; //# sourceMappingURL=registerAiTasks.d.ts.map