UNPKG

react-native-executorch

Version:

An easy way to run AI models in react native with ExecuTorch

24 lines 1.75 kB
import { Spec as ObjectDetectionInterface } from './NativeObjectDetection'; import { Spec as StyleTransferInterface } from './NativeStyleTransfer'; import { Spec as ImageSegmentationInterface } from './NativeImageSegmentation'; import { Spec as ETModuleInterface } from './NativeETModule'; import { Spec as OCRInterface } from './NativeOCR'; import { Spec as VerticalOCRInterface } from './NativeVerticalOCR'; import { Spec as SpeechToTextInterface } from './NativeSpeechToText'; import { Spec as TextEmbeddingsInterface } from './NativeTextEmbeddings'; import { Spec as LLMInterface } from './NativeLLM'; import { Spec as ClassificationInterface } from './NativeClassification'; import { Spec as TokenizerInterface } from './NativeTokenizer'; declare const LLMNativeModule: LLMInterface; declare const ETModuleNativeModule: ETModuleInterface; declare const ClassificationNativeModule: ClassificationInterface; declare const ImageSegmentationNativeModule: ImageSegmentationInterface; declare const ObjectDetectionNativeModule: ObjectDetectionInterface; declare const StyleTransferNativeModule: StyleTransferInterface; declare const SpeechToTextNativeModule: SpeechToTextInterface; declare const OCRNativeModule: OCRInterface; declare const VerticalOCRNativeModule: VerticalOCRInterface; declare const TokenizerNativeModule: TokenizerInterface; declare const TextEmbeddingsNativeModule: TextEmbeddingsInterface; export { LLMNativeModule, ETModuleNativeModule, ClassificationNativeModule, ObjectDetectionNativeModule, StyleTransferNativeModule, ImageSegmentationNativeModule, SpeechToTextNativeModule, OCRNativeModule, VerticalOCRNativeModule, TextEmbeddingsNativeModule, TokenizerNativeModule, }; //# sourceMappingURL=RnExecutorchModules.d.ts.map