react-native-executorch 0.7.0-nightly-b4770df-20260205 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/rnexecutorch/ErrorCodes.h +15 -30
- package/common/rnexecutorch/host_objects/ModelHostObject.h +5 -0
- package/common/rnexecutorch/models/llm/LLM.cpp +7 -0
- package/common/rnexecutorch/models/llm/LLM.h +1 -0
- package/lib/module/constants/llmDefaults.js +31 -0
- package/lib/module/constants/llmDefaults.js.map +1 -1
- package/lib/module/constants/modelUrls.js +220 -0
- package/lib/module/constants/modelUrls.js.map +1 -1
- package/lib/module/constants/ocr/models.js +255 -73
- package/lib/module/constants/ocr/models.js.map +1 -1
- package/lib/module/constants/ocr/symbols.js +4 -0
- package/lib/module/constants/ocr/symbols.js.map +1 -1
- package/lib/module/constants/tts/models.js +6 -2
- package/lib/module/constants/tts/models.js.map +1 -1
- package/lib/module/constants/tts/voices.js +27 -3
- package/lib/module/constants/tts/voices.js.map +1 -1
- package/lib/module/constants/versions.js +2 -2
- package/lib/module/controllers/LLMController.js +9 -0
- package/lib/module/controllers/LLMController.js.map +1 -1
- package/lib/module/errors/ErrorCodes.js +54 -0
- package/lib/module/errors/ErrorCodes.js.map +1 -1
- package/lib/module/errors/errorUtils.js +30 -6
- package/lib/module/errors/errorUtils.js.map +1 -1
- package/lib/module/hooks/computer_vision/useClassification.js +7 -0
- package/lib/module/hooks/computer_vision/useClassification.js.map +1 -1
- package/lib/module/hooks/computer_vision/useImageEmbeddings.js +8 -0
- package/lib/module/hooks/computer_vision/useImageEmbeddings.js.map +1 -1
- package/lib/module/hooks/computer_vision/useImageSegmentation.js +7 -0
- package/lib/module/hooks/computer_vision/useImageSegmentation.js.map +1 -1
- package/lib/module/hooks/computer_vision/useOCR.js +7 -0
- package/lib/module/hooks/computer_vision/useOCR.js.map +1 -1
- package/lib/module/hooks/computer_vision/useObjectDetection.js +7 -0
- package/lib/module/hooks/computer_vision/useObjectDetection.js.map +1 -1
- package/lib/module/hooks/computer_vision/useStyleTransfer.js +7 -0
- package/lib/module/hooks/computer_vision/useStyleTransfer.js.map +1 -1
- package/lib/module/hooks/computer_vision/useTextToImage.js +7 -0
- package/lib/module/hooks/computer_vision/useTextToImage.js.map +1 -1
- package/lib/module/hooks/computer_vision/useVerticalOCR.js +7 -0
- package/lib/module/hooks/computer_vision/useVerticalOCR.js.map +1 -1
- package/lib/module/hooks/general/useExecutorchModule.js +8 -0
- package/lib/module/hooks/general/useExecutorchModule.js.map +1 -1
- package/lib/module/hooks/natural_language_processing/useLLM.js +11 -3
- package/lib/module/hooks/natural_language_processing/useLLM.js.map +1 -1
- package/lib/module/hooks/natural_language_processing/useSpeechToText.js +8 -0
- package/lib/module/hooks/natural_language_processing/useSpeechToText.js.map +1 -1
- package/lib/module/hooks/natural_language_processing/useTextEmbeddings.js +7 -0
- package/lib/module/hooks/natural_language_processing/useTextEmbeddings.js.map +1 -1
- package/lib/module/hooks/natural_language_processing/useTextToSpeech.js +8 -0
- package/lib/module/hooks/natural_language_processing/useTextToSpeech.js.map +1 -1
- package/lib/module/hooks/natural_language_processing/useTokenizer.js +7 -0
- package/lib/module/hooks/natural_language_processing/useTokenizer.js.map +1 -1
- package/lib/module/hooks/natural_language_processing/useVAD.js +7 -0
- package/lib/module/hooks/natural_language_processing/useVAD.js.map +1 -1
- package/lib/module/hooks/useModule.js +12 -0
- package/lib/module/hooks/useModule.js.map +1 -1
- package/lib/module/index.js +10 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/modules/BaseModule.js +22 -0
- package/lib/module/modules/BaseModule.js.map +1 -1
- package/lib/module/modules/computer_vision/ClassificationModule.js +20 -0
- package/lib/module/modules/computer_vision/ClassificationModule.js.map +1 -1
- package/lib/module/modules/computer_vision/ImageEmbeddingsModule.js +19 -0
- package/lib/module/modules/computer_vision/ImageEmbeddingsModule.js.map +1 -1
- package/lib/module/modules/computer_vision/ImageSegmentationModule.js +22 -0
- package/lib/module/modules/computer_vision/ImageSegmentationModule.js.map +1 -1
- package/lib/module/modules/computer_vision/OCRModule.js +26 -0
- package/lib/module/modules/computer_vision/OCRModule.js.map +1 -1
- package/lib/module/modules/computer_vision/ObjectDetectionModule.js +22 -0
- package/lib/module/modules/computer_vision/ObjectDetectionModule.js.map +1 -1
- package/lib/module/modules/computer_vision/StyleTransferModule.js +20 -0
- package/lib/module/modules/computer_vision/StyleTransferModule.js.map +1 -1
- package/lib/module/modules/computer_vision/TextToImageModule.js +33 -0
- package/lib/module/modules/computer_vision/TextToImageModule.js.map +1 -1
- package/lib/module/modules/computer_vision/VerticalOCRModule.js +27 -0
- package/lib/module/modules/computer_vision/VerticalOCRModule.js.map +1 -1
- package/lib/module/modules/general/ExecutorchModule.js +21 -0
- package/lib/module/modules/general/ExecutorchModule.js.map +1 -1
- package/lib/module/modules/natural_language_processing/LLMModule.js +104 -0
- package/lib/module/modules/natural_language_processing/LLMModule.js.map +1 -1
- package/lib/module/modules/natural_language_processing/SpeechToTextModule.js +67 -21
- package/lib/module/modules/natural_language_processing/SpeechToTextModule.js.map +1 -1
- package/lib/module/modules/natural_language_processing/TextEmbeddingsModule.js +21 -0
- package/lib/module/modules/natural_language_processing/TextEmbeddingsModule.js.map +1 -1
- package/lib/module/modules/natural_language_processing/TextToSpeechModule.js +40 -0
- package/lib/module/modules/natural_language_processing/TextToSpeechModule.js.map +1 -1
- package/lib/module/modules/natural_language_processing/TokenizerModule.js +54 -2
- package/lib/module/modules/natural_language_processing/TokenizerModule.js.map +1 -1
- package/lib/module/modules/natural_language_processing/VADModule.js +20 -0
- package/lib/module/modules/natural_language_processing/VADModule.js.map +1 -1
- package/lib/module/types/classification.js +4 -0
- package/lib/module/types/classification.js.map +1 -0
- package/lib/module/types/common.js +96 -0
- package/lib/module/types/common.js.map +1 -1
- package/lib/module/types/executorchModule.js +4 -0
- package/lib/module/types/executorchModule.js.map +1 -0
- package/lib/module/types/imageEmbeddings.js +4 -0
- package/lib/module/types/imageEmbeddings.js.map +1 -0
- package/lib/module/types/imageSegmentation.js +22 -1
- package/lib/module/types/imageSegmentation.js.map +1 -1
- package/lib/module/types/llm.js +80 -2
- package/lib/module/types/llm.js.map +1 -1
- package/lib/module/types/objectDetection.js +42 -2
- package/lib/module/types/objectDetection.js.map +1 -1
- package/lib/module/types/styleTransfer.js +4 -0
- package/lib/module/types/styleTransfer.js.map +1 -0
- package/lib/module/types/textEmbeddings.js +4 -0
- package/lib/module/types/textEmbeddings.js.map +1 -0
- package/lib/module/types/tokenizer.js +4 -0
- package/lib/module/types/tokenizer.js.map +1 -0
- package/lib/module/types/tti.js +4 -0
- package/lib/module/types/tti.js.map +1 -0
- package/lib/module/types/vad.js +2 -0
- package/lib/module/utils/ResourceFetcher.js +63 -0
- package/lib/module/utils/ResourceFetcher.js.map +1 -1
- package/lib/module/utils/llm.js +24 -1
- package/lib/module/utils/llm.js.map +1 -1
- package/lib/typescript/constants/llmDefaults.d.ts +27 -0
- package/lib/typescript/constants/llmDefaults.d.ts.map +1 -1
- package/lib/typescript/constants/modelUrls.d.ts +165 -0
- package/lib/typescript/constants/modelUrls.d.ts.map +1 -1
- package/lib/typescript/constants/ocr/models.d.ts +189 -315
- package/lib/typescript/constants/ocr/models.d.ts.map +1 -1
- package/lib/typescript/constants/ocr/symbols.d.ts +3 -0
- package/lib/typescript/constants/ocr/symbols.d.ts.map +1 -1
- package/lib/typescript/constants/tts/models.d.ts +4 -0
- package/lib/typescript/constants/tts/models.d.ts.map +1 -1
- package/lib/typescript/constants/tts/voices.d.ts +24 -0
- package/lib/typescript/constants/tts/voices.d.ts.map +1 -1
- package/lib/typescript/constants/versions.d.ts +2 -2
- package/lib/typescript/controllers/LLMController.d.ts +2 -0
- package/lib/typescript/controllers/LLMController.d.ts.map +1 -1
- package/lib/typescript/errors/ErrorCodes.d.ts +54 -0
- package/lib/typescript/errors/ErrorCodes.d.ts.map +1 -1
- package/lib/typescript/errors/errorUtils.d.ts +9 -0
- package/lib/typescript/errors/errorUtils.d.ts.map +1 -1
- package/lib/typescript/hooks/computer_vision/useClassification.d.ts +9 -15
- package/lib/typescript/hooks/computer_vision/useClassification.d.ts.map +1 -1
- package/lib/typescript/hooks/computer_vision/useImageEmbeddings.d.ts +9 -15
- package/lib/typescript/hooks/computer_vision/useImageEmbeddings.d.ts.map +1 -1
- package/lib/typescript/hooks/computer_vision/useImageSegmentation.d.ts +9 -38
- package/lib/typescript/hooks/computer_vision/useImageSegmentation.d.ts.map +1 -1
- package/lib/typescript/hooks/computer_vision/useOCR.d.ts +9 -19
- package/lib/typescript/hooks/computer_vision/useOCR.d.ts.map +1 -1
- package/lib/typescript/hooks/computer_vision/useObjectDetection.d.ts +9 -15
- package/lib/typescript/hooks/computer_vision/useObjectDetection.d.ts.map +1 -1
- package/lib/typescript/hooks/computer_vision/useStyleTransfer.d.ts +9 -15
- package/lib/typescript/hooks/computer_vision/useStyleTransfer.d.ts.map +1 -1
- package/lib/typescript/hooks/computer_vision/useTextToImage.d.ts +9 -22
- package/lib/typescript/hooks/computer_vision/useTextToImage.d.ts.map +1 -1
- package/lib/typescript/hooks/computer_vision/useVerticalOCR.d.ts +9 -20
- package/lib/typescript/hooks/computer_vision/useVerticalOCR.d.ts.map +1 -1
- package/lib/typescript/hooks/general/useExecutorchModule.d.ts +9 -13
- package/lib/typescript/hooks/general/useExecutorchModule.d.ts.map +1 -1
- package/lib/typescript/hooks/natural_language_processing/useLLM.d.ts +9 -10
- package/lib/typescript/hooks/natural_language_processing/useLLM.d.ts.map +1 -1
- package/lib/typescript/hooks/natural_language_processing/useSpeechToText.d.ts +9 -19
- package/lib/typescript/hooks/natural_language_processing/useSpeechToText.d.ts.map +1 -1
- package/lib/typescript/hooks/natural_language_processing/useTextEmbeddings.d.ts +9 -16
- package/lib/typescript/hooks/natural_language_processing/useTextEmbeddings.d.ts.map +1 -1
- package/lib/typescript/hooks/natural_language_processing/useTextToSpeech.d.ts +9 -15
- package/lib/typescript/hooks/natural_language_processing/useTextToSpeech.d.ts.map +1 -1
- package/lib/typescript/hooks/natural_language_processing/useTokenizer.d.ts +9 -18
- package/lib/typescript/hooks/natural_language_processing/useTokenizer.d.ts.map +1 -1
- package/lib/typescript/hooks/natural_language_processing/useVAD.d.ts +9 -15
- package/lib/typescript/hooks/natural_language_processing/useVAD.d.ts.map +1 -1
- package/lib/typescript/hooks/useModule.d.ts +12 -0
- package/lib/typescript/hooks/useModule.d.ts.map +1 -1
- package/lib/typescript/index.d.ts +10 -1
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/modules/BaseModule.d.ts +20 -0
- package/lib/typescript/modules/BaseModule.d.ts.map +1 -1
- package/lib/typescript/modules/computer_vision/ClassificationModule.d.ts +21 -1
- package/lib/typescript/modules/computer_vision/ClassificationModule.d.ts.map +1 -1
- package/lib/typescript/modules/computer_vision/ImageEmbeddingsModule.d.ts +17 -0
- package/lib/typescript/modules/computer_vision/ImageEmbeddingsModule.d.ts.map +1 -1
- package/lib/typescript/modules/computer_vision/ImageSegmentationModule.d.ts +21 -3
- package/lib/typescript/modules/computer_vision/ImageSegmentationModule.d.ts.map +1 -1
- package/lib/typescript/modules/computer_vision/OCRModule.d.ts +25 -2
- package/lib/typescript/modules/computer_vision/OCRModule.d.ts.map +1 -1
- package/lib/typescript/modules/computer_vision/ObjectDetectionModule.d.ts +20 -0
- package/lib/typescript/modules/computer_vision/ObjectDetectionModule.d.ts.map +1 -1
- package/lib/typescript/modules/computer_vision/StyleTransferModule.d.ts +18 -0
- package/lib/typescript/modules/computer_vision/StyleTransferModule.d.ts.map +1 -1
- package/lib/typescript/modules/computer_vision/TextToImageModule.d.ts +29 -0
- package/lib/typescript/modules/computer_vision/TextToImageModule.d.ts.map +1 -1
- package/lib/typescript/modules/computer_vision/VerticalOCRModule.d.ts +26 -2
- package/lib/typescript/modules/computer_vision/VerticalOCRModule.d.ts.map +1 -1
- package/lib/typescript/modules/general/ExecutorchModule.d.ts +19 -0
- package/lib/typescript/modules/general/ExecutorchModule.d.ts.map +1 -1
- package/lib/typescript/modules/natural_language_processing/LLMModule.d.ts +97 -7
- package/lib/typescript/modules/natural_language_processing/LLMModule.d.ts.map +1 -1
- package/lib/typescript/modules/natural_language_processing/SpeechToTextModule.d.ts +62 -4
- package/lib/typescript/modules/natural_language_processing/SpeechToTextModule.d.ts.map +1 -1
- package/lib/typescript/modules/natural_language_processing/TextEmbeddingsModule.d.ts +19 -0
- package/lib/typescript/modules/natural_language_processing/TextEmbeddingsModule.d.ts.map +1 -1
- package/lib/typescript/modules/natural_language_processing/TextToSpeechModule.d.ts +37 -2
- package/lib/typescript/modules/natural_language_processing/TextToSpeechModule.d.ts.map +1 -1
- package/lib/typescript/modules/natural_language_processing/TokenizerModule.d.ts +47 -2
- package/lib/typescript/modules/natural_language_processing/TokenizerModule.d.ts.map +1 -1
- package/lib/typescript/modules/natural_language_processing/VADModule.d.ts +18 -0
- package/lib/typescript/modules/natural_language_processing/VADModule.d.ts.map +1 -1
- package/lib/typescript/types/classification.d.ts +50 -0
- package/lib/typescript/types/classification.d.ts.map +1 -0
- package/lib/typescript/types/common.d.ts +92 -0
- package/lib/typescript/types/common.d.ts.map +1 -1
- package/lib/typescript/types/executorchModule.d.ts +45 -0
- package/lib/typescript/types/executorchModule.d.ts.map +1 -0
- package/lib/typescript/types/imageEmbeddings.d.ts +48 -0
- package/lib/typescript/types/imageEmbeddings.d.ts.map +1 -0
- package/lib/typescript/types/imageSegmentation.d.ts +55 -0
- package/lib/typescript/types/imageSegmentation.d.ts.map +1 -1
- package/lib/typescript/types/llm.d.ts +193 -5
- package/lib/typescript/types/llm.d.ts.map +1 -1
- package/lib/typescript/types/objectDetection.d.ts +71 -2
- package/lib/typescript/types/objectDetection.d.ts.map +1 -1
- package/lib/typescript/types/ocr.d.ts +97 -2
- package/lib/typescript/types/ocr.d.ts.map +1 -1
- package/lib/typescript/types/stt.d.ts +114 -0
- package/lib/typescript/types/stt.d.ts.map +1 -1
- package/lib/typescript/types/styleTransfer.d.ts +48 -0
- package/lib/typescript/types/styleTransfer.d.ts.map +1 -0
- package/lib/typescript/types/textEmbeddings.d.ts +53 -0
- package/lib/typescript/types/textEmbeddings.d.ts.map +1 -0
- package/lib/typescript/types/tokenizer.d.ts +75 -0
- package/lib/typescript/types/tokenizer.d.ts.map +1 -0
- package/lib/typescript/types/tti.d.ts +74 -0
- package/lib/typescript/types/tti.d.ts.map +1 -0
- package/lib/typescript/types/tts.d.ts +77 -0
- package/lib/typescript/types/tts.d.ts.map +1 -1
- package/lib/typescript/types/vad.d.ts +53 -0
- package/lib/typescript/types/vad.d.ts.map +1 -1
- package/lib/typescript/utils/ResourceFetcher.d.ts +55 -0
- package/lib/typescript/utils/ResourceFetcher.d.ts.map +1 -1
- package/lib/typescript/utils/llm.d.ts +22 -0
- package/lib/typescript/utils/llm.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/constants/llmDefaults.ts +27 -0
- package/src/constants/modelUrls.ts +166 -0
- package/src/constants/ocr/models.ts +192 -266
- package/src/constants/ocr/symbols.ts +3 -0
- package/src/constants/tts/models.ts +6 -2
- package/src/constants/tts/voices.ts +27 -3
- package/src/constants/versions.ts +2 -2
- package/src/controllers/LLMController.ts +15 -0
- package/src/errors/ErrorCodes.ts +54 -0
- package/src/errors/errorUtils.ts +37 -17
- package/src/hooks/computer_vision/useClassification.ts +15 -7
- package/src/hooks/computer_vision/useImageEmbeddings.ts +15 -7
- package/src/hooks/computer_vision/useImageSegmentation.ts +15 -7
- package/src/hooks/computer_vision/useOCR.ts +9 -21
- package/src/hooks/computer_vision/useObjectDetection.ts +15 -7
- package/src/hooks/computer_vision/useStyleTransfer.ts +15 -7
- package/src/hooks/computer_vision/useTextToImage.ts +9 -26
- package/src/hooks/computer_vision/useVerticalOCR.ts +9 -19
- package/src/hooks/general/useExecutorchModule.ts +12 -7
- package/src/hooks/natural_language_processing/useLLM.ts +24 -28
- package/src/hooks/natural_language_processing/useSpeechToText.ts +13 -5
- package/src/hooks/natural_language_processing/useTextEmbeddings.ts +15 -10
- package/src/hooks/natural_language_processing/useTextToSpeech.ts +10 -6
- package/src/hooks/natural_language_processing/useTokenizer.ts +10 -6
- package/src/hooks/natural_language_processing/useVAD.ts +9 -7
- package/src/hooks/useModule.ts +15 -0
- package/src/index.ts +10 -5
- package/src/modules/BaseModule.ts +20 -0
- package/src/modules/computer_vision/ClassificationModule.ts +19 -1
- package/src/modules/computer_vision/ImageEmbeddingsModule.ts +17 -0
- package/src/modules/computer_vision/ImageSegmentationModule.ts +21 -1
- package/src/modules/computer_vision/OCRModule.ts +25 -2
- package/src/modules/computer_vision/ObjectDetectionModule.ts +20 -0
- package/src/modules/computer_vision/StyleTransferModule.ts +18 -0
- package/src/modules/computer_vision/TextToImageModule.ts +29 -0
- package/src/modules/computer_vision/VerticalOCRModule.ts +26 -2
- package/src/modules/general/ExecutorchModule.ts +19 -0
- package/src/modules/natural_language_processing/LLMModule.ts +104 -18
- package/src/modules/natural_language_processing/SpeechToTextModule.ts +63 -39
- package/src/modules/natural_language_processing/TextEmbeddingsModule.ts +19 -0
- package/src/modules/natural_language_processing/TextToSpeechModule.ts +43 -2
- package/src/modules/natural_language_processing/TokenizerModule.ts +51 -3
- package/src/modules/natural_language_processing/VADModule.ts +18 -0
- package/src/types/classification.ts +51 -0
- package/src/types/common.ts +93 -0
- package/src/types/executorchModule.ts +50 -0
- package/src/types/imageEmbeddings.ts +51 -0
- package/src/types/imageSegmentation.ts +64 -1
- package/src/types/llm.ts +208 -11
- package/src/types/objectDetection.ts +79 -1
- package/src/types/ocr.ts +107 -2
- package/src/types/stt.ts +136 -1
- package/src/types/styleTransfer.ts +51 -0
- package/src/types/textEmbeddings.ts +58 -0
- package/src/types/tokenizer.ts +86 -0
- package/src/types/tti.ts +87 -0
- package/src/types/tts.ts +85 -2
- package/src/types/vad.ts +58 -0
- package/src/utils/ResourceFetcher.ts +55 -0
- package/src/utils/llm.ts +22 -1
|
@@ -1,7 +1,34 @@
|
|
|
1
1
|
import { ChatConfig, Message } from '../types/llm';
|
|
2
|
+
/**
|
|
3
|
+
* Default system prompt used to guide the behavior of Large Language Models (LLMs).
|
|
4
|
+
*
|
|
5
|
+
* @category Utilities - LLM
|
|
6
|
+
*/
|
|
2
7
|
export declare const DEFAULT_SYSTEM_PROMPT = "You are a knowledgeable, efficient, and direct AI assistant. Provide concise answers, focusing on the key information needed. Offer suggestions tactfully when appropriate to improve outcomes. Engage in productive collaboration with the user. Don't return too much text.";
|
|
8
|
+
/**
|
|
9
|
+
* Generates a default structured output prompt based on the provided JSON schema.
|
|
10
|
+
*
|
|
11
|
+
* @category Utilities - LLM
|
|
12
|
+
* @param structuredOutputSchema - A string representing the JSON schema for the desired output format.
|
|
13
|
+
* @returns A prompt string instructing the model to format its output according to the given schema.
|
|
14
|
+
*/
|
|
3
15
|
export declare const DEFAULT_STRUCTURED_OUTPUT_PROMPT: (structuredOutputSchema: string) => string;
|
|
16
|
+
/**
|
|
17
|
+
* Default message history for Large Language Models (LLMs).
|
|
18
|
+
*
|
|
19
|
+
* @category Utilities - LLM
|
|
20
|
+
*/
|
|
4
21
|
export declare const DEFAULT_MESSAGE_HISTORY: Message[];
|
|
22
|
+
/**
|
|
23
|
+
* Default context window length for Large Language Models (LLMs).
|
|
24
|
+
*
|
|
25
|
+
* @category Utilities - LLM
|
|
26
|
+
*/
|
|
5
27
|
export declare const DEFAULT_CONTEXT_WINDOW_LENGTH = 5;
|
|
28
|
+
/**
|
|
29
|
+
* Default chat configuration for Large Language Models (LLMs).
|
|
30
|
+
*
|
|
31
|
+
* @category Utilities - LLM
|
|
32
|
+
*/
|
|
6
33
|
export declare const DEFAULT_CHAT_CONFIG: ChatConfig;
|
|
7
34
|
//# sourceMappingURL=llmDefaults.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"llmDefaults.d.ts","sourceRoot":"","sources":["../../../src/constants/llmDefaults.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAEnD,eAAO,MAAM,qBAAqB,kRAC+O,CAAC;AAElR,eAAO,MAAM,gCAAgC,GAC3C,wBAAwB,MAAM,WAQ/B,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,OAAO,EAAO,CAAC;AAErD,eAAO,MAAM,6BAA6B,IAAI,CAAC;AAE/C,eAAO,MAAM,mBAAmB,EAAE,UAIjC,CAAC"}
|
|
1
|
+
{"version":3,"file":"llmDefaults.d.ts","sourceRoot":"","sources":["../../../src/constants/llmDefaults.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAEnD;;;;GAIG;AACH,eAAO,MAAM,qBAAqB,kRAC+O,CAAC;AAElR;;;;;;GAMG;AACH,eAAO,MAAM,gCAAgC,GAC3C,wBAAwB,MAAM,WAQ/B,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,uBAAuB,EAAE,OAAO,EAAO,CAAC;AAErD;;;;GAIG;AACH,eAAO,MAAM,6BAA6B,IAAI,CAAC;AAE/C;;;;GAIG;AACH,eAAO,MAAM,mBAAmB,EAAE,UAIjC,CAAC"}
|
|
@@ -1,249 +1,408 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @category Models - LMM
|
|
3
|
+
*/
|
|
1
4
|
export declare const LLAMA3_2_3B: {
|
|
2
5
|
modelSource: string;
|
|
3
6
|
tokenizerSource: string;
|
|
4
7
|
tokenizerConfigSource: string;
|
|
5
8
|
};
|
|
9
|
+
/**
|
|
10
|
+
* @category Models - LMM
|
|
11
|
+
*/
|
|
6
12
|
export declare const LLAMA3_2_3B_QLORA: {
|
|
7
13
|
modelSource: string;
|
|
8
14
|
tokenizerSource: string;
|
|
9
15
|
tokenizerConfigSource: string;
|
|
10
16
|
};
|
|
17
|
+
/**
|
|
18
|
+
* @category Models - LMM
|
|
19
|
+
*/
|
|
11
20
|
export declare const LLAMA3_2_3B_SPINQUANT: {
|
|
12
21
|
modelSource: string;
|
|
13
22
|
tokenizerSource: string;
|
|
14
23
|
tokenizerConfigSource: string;
|
|
15
24
|
};
|
|
25
|
+
/**
|
|
26
|
+
* @category Models - LMM
|
|
27
|
+
*/
|
|
16
28
|
export declare const LLAMA3_2_1B: {
|
|
17
29
|
modelSource: string;
|
|
18
30
|
tokenizerSource: string;
|
|
19
31
|
tokenizerConfigSource: string;
|
|
20
32
|
};
|
|
33
|
+
/**
|
|
34
|
+
* @category Models - LMM
|
|
35
|
+
*/
|
|
21
36
|
export declare const LLAMA3_2_1B_QLORA: {
|
|
22
37
|
modelSource: string;
|
|
23
38
|
tokenizerSource: string;
|
|
24
39
|
tokenizerConfigSource: string;
|
|
25
40
|
};
|
|
41
|
+
/**
|
|
42
|
+
* @category Models - LMM
|
|
43
|
+
*/
|
|
26
44
|
export declare const LLAMA3_2_1B_SPINQUANT: {
|
|
27
45
|
modelSource: string;
|
|
28
46
|
tokenizerSource: string;
|
|
29
47
|
tokenizerConfigSource: string;
|
|
30
48
|
};
|
|
49
|
+
/**
|
|
50
|
+
* @category Models - LMM
|
|
51
|
+
*/
|
|
31
52
|
export declare const QWEN3_0_6B: {
|
|
32
53
|
modelSource: string;
|
|
33
54
|
tokenizerSource: string;
|
|
34
55
|
tokenizerConfigSource: string;
|
|
35
56
|
};
|
|
57
|
+
/**
|
|
58
|
+
* @category Models - LMM
|
|
59
|
+
*/
|
|
36
60
|
export declare const QWEN3_0_6B_QUANTIZED: {
|
|
37
61
|
modelSource: string;
|
|
38
62
|
tokenizerSource: string;
|
|
39
63
|
tokenizerConfigSource: string;
|
|
40
64
|
};
|
|
65
|
+
/**
|
|
66
|
+
* @category Models - LMM
|
|
67
|
+
*/
|
|
41
68
|
export declare const QWEN3_1_7B: {
|
|
42
69
|
modelSource: string;
|
|
43
70
|
tokenizerSource: string;
|
|
44
71
|
tokenizerConfigSource: string;
|
|
45
72
|
};
|
|
73
|
+
/**
|
|
74
|
+
* @category Models - LMM
|
|
75
|
+
*/
|
|
46
76
|
export declare const QWEN3_1_7B_QUANTIZED: {
|
|
47
77
|
modelSource: string;
|
|
48
78
|
tokenizerSource: string;
|
|
49
79
|
tokenizerConfigSource: string;
|
|
50
80
|
};
|
|
81
|
+
/**
|
|
82
|
+
* @category Models - LMM
|
|
83
|
+
*/
|
|
51
84
|
export declare const QWEN3_4B: {
|
|
52
85
|
modelSource: string;
|
|
53
86
|
tokenizerSource: string;
|
|
54
87
|
tokenizerConfigSource: string;
|
|
55
88
|
};
|
|
89
|
+
/**
|
|
90
|
+
* @category Models - LMM
|
|
91
|
+
*/
|
|
56
92
|
export declare const QWEN3_4B_QUANTIZED: {
|
|
57
93
|
modelSource: string;
|
|
58
94
|
tokenizerSource: string;
|
|
59
95
|
tokenizerConfigSource: string;
|
|
60
96
|
};
|
|
97
|
+
/**
|
|
98
|
+
* @category Models - LMM
|
|
99
|
+
*/
|
|
61
100
|
export declare const HAMMER2_1_0_5B: {
|
|
62
101
|
modelSource: string;
|
|
63
102
|
tokenizerSource: string;
|
|
64
103
|
tokenizerConfigSource: string;
|
|
65
104
|
};
|
|
105
|
+
/**
|
|
106
|
+
* @category Models - LMM
|
|
107
|
+
*/
|
|
66
108
|
export declare const HAMMER2_1_0_5B_QUANTIZED: {
|
|
67
109
|
modelSource: string;
|
|
68
110
|
tokenizerSource: string;
|
|
69
111
|
tokenizerConfigSource: string;
|
|
70
112
|
};
|
|
113
|
+
/**
|
|
114
|
+
* @category Models - LMM
|
|
115
|
+
*/
|
|
71
116
|
export declare const HAMMER2_1_1_5B: {
|
|
72
117
|
modelSource: string;
|
|
73
118
|
tokenizerSource: string;
|
|
74
119
|
tokenizerConfigSource: string;
|
|
75
120
|
};
|
|
121
|
+
/**
|
|
122
|
+
* @category Models - LMM
|
|
123
|
+
*/
|
|
76
124
|
export declare const HAMMER2_1_1_5B_QUANTIZED: {
|
|
77
125
|
modelSource: string;
|
|
78
126
|
tokenizerSource: string;
|
|
79
127
|
tokenizerConfigSource: string;
|
|
80
128
|
};
|
|
129
|
+
/**
|
|
130
|
+
* @category Models - LMM
|
|
131
|
+
*/
|
|
81
132
|
export declare const HAMMER2_1_3B: {
|
|
82
133
|
modelSource: string;
|
|
83
134
|
tokenizerSource: string;
|
|
84
135
|
tokenizerConfigSource: string;
|
|
85
136
|
};
|
|
137
|
+
/**
|
|
138
|
+
* @category Models - LMM
|
|
139
|
+
*/
|
|
86
140
|
export declare const HAMMER2_1_3B_QUANTIZED: {
|
|
87
141
|
modelSource: string;
|
|
88
142
|
tokenizerSource: string;
|
|
89
143
|
tokenizerConfigSource: string;
|
|
90
144
|
};
|
|
145
|
+
/**
|
|
146
|
+
* @category Models - LMM
|
|
147
|
+
*/
|
|
91
148
|
export declare const SMOLLM2_1_135M: {
|
|
92
149
|
modelSource: string;
|
|
93
150
|
tokenizerSource: string;
|
|
94
151
|
tokenizerConfigSource: string;
|
|
95
152
|
};
|
|
153
|
+
/**
|
|
154
|
+
* @category Models - LMM
|
|
155
|
+
*/
|
|
96
156
|
export declare const SMOLLM2_1_135M_QUANTIZED: {
|
|
97
157
|
modelSource: string;
|
|
98
158
|
tokenizerSource: string;
|
|
99
159
|
tokenizerConfigSource: string;
|
|
100
160
|
};
|
|
161
|
+
/**
|
|
162
|
+
* @category Models - LMM
|
|
163
|
+
*/
|
|
101
164
|
export declare const SMOLLM2_1_360M: {
|
|
102
165
|
modelSource: string;
|
|
103
166
|
tokenizerSource: string;
|
|
104
167
|
tokenizerConfigSource: string;
|
|
105
168
|
};
|
|
169
|
+
/**
|
|
170
|
+
* @category Models - LMM
|
|
171
|
+
*/
|
|
106
172
|
export declare const SMOLLM2_1_360M_QUANTIZED: {
|
|
107
173
|
modelSource: string;
|
|
108
174
|
tokenizerSource: string;
|
|
109
175
|
tokenizerConfigSource: string;
|
|
110
176
|
};
|
|
177
|
+
/**
|
|
178
|
+
* @category Models - LMM
|
|
179
|
+
*/
|
|
111
180
|
export declare const SMOLLM2_1_1_7B: {
|
|
112
181
|
modelSource: string;
|
|
113
182
|
tokenizerSource: string;
|
|
114
183
|
tokenizerConfigSource: string;
|
|
115
184
|
};
|
|
185
|
+
/**
|
|
186
|
+
* @category Models - LMM
|
|
187
|
+
*/
|
|
116
188
|
export declare const SMOLLM2_1_1_7B_QUANTIZED: {
|
|
117
189
|
modelSource: string;
|
|
118
190
|
tokenizerSource: string;
|
|
119
191
|
tokenizerConfigSource: string;
|
|
120
192
|
};
|
|
193
|
+
/**
|
|
194
|
+
* @category Models - LMM
|
|
195
|
+
*/
|
|
121
196
|
export declare const QWEN2_5_0_5B: {
|
|
122
197
|
modelSource: string;
|
|
123
198
|
tokenizerSource: string;
|
|
124
199
|
tokenizerConfigSource: string;
|
|
125
200
|
};
|
|
201
|
+
/**
|
|
202
|
+
* @category Models - LMM
|
|
203
|
+
*/
|
|
126
204
|
export declare const QWEN2_5_0_5B_QUANTIZED: {
|
|
127
205
|
modelSource: string;
|
|
128
206
|
tokenizerSource: string;
|
|
129
207
|
tokenizerConfigSource: string;
|
|
130
208
|
};
|
|
209
|
+
/**
|
|
210
|
+
* @category Models - LMM
|
|
211
|
+
*/
|
|
131
212
|
export declare const QWEN2_5_1_5B: {
|
|
132
213
|
modelSource: string;
|
|
133
214
|
tokenizerSource: string;
|
|
134
215
|
tokenizerConfigSource: string;
|
|
135
216
|
};
|
|
217
|
+
/**
|
|
218
|
+
* @category Models - LMM
|
|
219
|
+
*/
|
|
136
220
|
export declare const QWEN2_5_1_5B_QUANTIZED: {
|
|
137
221
|
modelSource: string;
|
|
138
222
|
tokenizerSource: string;
|
|
139
223
|
tokenizerConfigSource: string;
|
|
140
224
|
};
|
|
225
|
+
/**
|
|
226
|
+
* @category Models - LMM
|
|
227
|
+
*/
|
|
141
228
|
export declare const QWEN2_5_3B: {
|
|
142
229
|
modelSource: string;
|
|
143
230
|
tokenizerSource: string;
|
|
144
231
|
tokenizerConfigSource: string;
|
|
145
232
|
};
|
|
233
|
+
/**
|
|
234
|
+
* @category Models - LMM
|
|
235
|
+
*/
|
|
146
236
|
export declare const QWEN2_5_3B_QUANTIZED: {
|
|
147
237
|
modelSource: string;
|
|
148
238
|
tokenizerSource: string;
|
|
149
239
|
tokenizerConfigSource: string;
|
|
150
240
|
};
|
|
241
|
+
/**
|
|
242
|
+
* @category Models - LMM
|
|
243
|
+
*/
|
|
151
244
|
export declare const PHI_4_MINI_4B: {
|
|
152
245
|
modelSource: string;
|
|
153
246
|
tokenizerSource: string;
|
|
154
247
|
tokenizerConfigSource: string;
|
|
155
248
|
};
|
|
249
|
+
/**
|
|
250
|
+
* @category Models - LMM
|
|
251
|
+
*/
|
|
156
252
|
export declare const PHI_4_MINI_4B_QUANTIZED: {
|
|
157
253
|
modelSource: string;
|
|
158
254
|
tokenizerSource: string;
|
|
159
255
|
tokenizerConfigSource: string;
|
|
160
256
|
};
|
|
257
|
+
/**
|
|
258
|
+
* @category Models - Classification
|
|
259
|
+
*/
|
|
161
260
|
export declare const EFFICIENTNET_V2_S: {
|
|
162
261
|
modelSource: string;
|
|
163
262
|
};
|
|
263
|
+
/**
|
|
264
|
+
* @category Models - Object Detection
|
|
265
|
+
*/
|
|
164
266
|
export declare const SSDLITE_320_MOBILENET_V3_LARGE: {
|
|
165
267
|
modelSource: string;
|
|
166
268
|
};
|
|
269
|
+
/**
|
|
270
|
+
* @category Models - Style Transfer
|
|
271
|
+
*/
|
|
167
272
|
export declare const STYLE_TRANSFER_CANDY: {
|
|
168
273
|
modelSource: string;
|
|
169
274
|
};
|
|
275
|
+
/**
|
|
276
|
+
* @category Models - Style Transfer
|
|
277
|
+
*/
|
|
170
278
|
export declare const STYLE_TRANSFER_MOSAIC: {
|
|
171
279
|
modelSource: string;
|
|
172
280
|
};
|
|
281
|
+
/**
|
|
282
|
+
* @category Models - Style Transfer
|
|
283
|
+
*/
|
|
173
284
|
export declare const STYLE_TRANSFER_RAIN_PRINCESS: {
|
|
174
285
|
modelSource: string;
|
|
175
286
|
};
|
|
287
|
+
/**
|
|
288
|
+
* @category Models - Style Transfer
|
|
289
|
+
*/
|
|
176
290
|
export declare const STYLE_TRANSFER_UDNIE: {
|
|
177
291
|
modelSource: string;
|
|
178
292
|
};
|
|
293
|
+
/**
|
|
294
|
+
* @category Models - Speech To Text
|
|
295
|
+
*/
|
|
179
296
|
export declare const WHISPER_TINY_EN: {
|
|
180
297
|
isMultilingual: boolean;
|
|
181
298
|
encoderSource: string;
|
|
182
299
|
decoderSource: string;
|
|
183
300
|
tokenizerSource: string;
|
|
184
301
|
};
|
|
302
|
+
/**
|
|
303
|
+
* @category Models - Speech To Text
|
|
304
|
+
*/
|
|
185
305
|
export declare const WHISPER_TINY_EN_QUANTIZED: {
|
|
186
306
|
isMultilingual: boolean;
|
|
187
307
|
encoderSource: string;
|
|
188
308
|
decoderSource: string;
|
|
189
309
|
tokenizerSource: string;
|
|
190
310
|
};
|
|
311
|
+
/**
|
|
312
|
+
* @category Models - Speech To Text
|
|
313
|
+
*/
|
|
191
314
|
export declare const WHISPER_BASE_EN: {
|
|
192
315
|
isMultilingual: boolean;
|
|
193
316
|
encoderSource: string;
|
|
194
317
|
decoderSource: string;
|
|
195
318
|
tokenizerSource: string;
|
|
196
319
|
};
|
|
320
|
+
/**
|
|
321
|
+
* @category Models - Speech To Text
|
|
322
|
+
*/
|
|
197
323
|
export declare const WHISPER_SMALL_EN: {
|
|
198
324
|
isMultilingual: boolean;
|
|
199
325
|
encoderSource: string;
|
|
200
326
|
decoderSource: string;
|
|
201
327
|
tokenizerSource: string;
|
|
202
328
|
};
|
|
329
|
+
/**
|
|
330
|
+
* @category Models - Speech To Text
|
|
331
|
+
*/
|
|
203
332
|
export declare const WHISPER_TINY: {
|
|
204
333
|
isMultilingual: boolean;
|
|
205
334
|
encoderSource: string;
|
|
206
335
|
decoderSource: string;
|
|
207
336
|
tokenizerSource: string;
|
|
208
337
|
};
|
|
338
|
+
/**
|
|
339
|
+
* @category Models - Speech To Text
|
|
340
|
+
*/
|
|
209
341
|
export declare const WHISPER_BASE: {
|
|
210
342
|
isMultilingual: boolean;
|
|
211
343
|
encoderSource: string;
|
|
212
344
|
decoderSource: string;
|
|
213
345
|
tokenizerSource: string;
|
|
214
346
|
};
|
|
347
|
+
/**
|
|
348
|
+
* @category Models - Speech To Text
|
|
349
|
+
*/
|
|
215
350
|
export declare const WHISPER_SMALL: {
|
|
216
351
|
isMultilingual: boolean;
|
|
217
352
|
encoderSource: string;
|
|
218
353
|
decoderSource: string;
|
|
219
354
|
tokenizerSource: string;
|
|
220
355
|
};
|
|
356
|
+
/**
|
|
357
|
+
* @category Models - Image Segmentation
|
|
358
|
+
*/
|
|
221
359
|
export declare const DEEPLAB_V3_RESNET50: {
|
|
222
360
|
modelSource: string;
|
|
223
361
|
};
|
|
362
|
+
/**
|
|
363
|
+
* @category Models - Image Embeddings
|
|
364
|
+
*/
|
|
224
365
|
export declare const CLIP_VIT_BASE_PATCH32_IMAGE: {
|
|
225
366
|
modelSource: string;
|
|
226
367
|
};
|
|
368
|
+
/**
|
|
369
|
+
* @category Models - Text Embeddings
|
|
370
|
+
*/
|
|
227
371
|
export declare const ALL_MINILM_L6_V2: {
|
|
228
372
|
modelSource: string;
|
|
229
373
|
tokenizerSource: string;
|
|
230
374
|
};
|
|
375
|
+
/**
|
|
376
|
+
* @category Models - Text Embeddings
|
|
377
|
+
*/
|
|
231
378
|
export declare const ALL_MPNET_BASE_V2: {
|
|
232
379
|
modelSource: string;
|
|
233
380
|
tokenizerSource: string;
|
|
234
381
|
};
|
|
382
|
+
/**
|
|
383
|
+
* @category Models - Text Embeddings
|
|
384
|
+
*/
|
|
235
385
|
export declare const MULTI_QA_MINILM_L6_COS_V1: {
|
|
236
386
|
modelSource: string;
|
|
237
387
|
tokenizerSource: string;
|
|
238
388
|
};
|
|
389
|
+
/**
|
|
390
|
+
* @category Models - Text Embeddings
|
|
391
|
+
*/
|
|
239
392
|
export declare const MULTI_QA_MPNET_BASE_DOT_V1: {
|
|
240
393
|
modelSource: string;
|
|
241
394
|
tokenizerSource: string;
|
|
242
395
|
};
|
|
396
|
+
/**
|
|
397
|
+
* @category Models - Text Embeddings
|
|
398
|
+
*/
|
|
243
399
|
export declare const CLIP_VIT_BASE_PATCH32_TEXT: {
|
|
244
400
|
modelSource: string;
|
|
245
401
|
tokenizerSource: string;
|
|
246
402
|
};
|
|
403
|
+
/**
|
|
404
|
+
* @category Models - Image Generation
|
|
405
|
+
*/
|
|
247
406
|
export declare const BK_SDM_TINY_VPRED_512: {
|
|
248
407
|
schedulerSource: string;
|
|
249
408
|
tokenizerSource: string;
|
|
@@ -251,6 +410,9 @@ export declare const BK_SDM_TINY_VPRED_512: {
|
|
|
251
410
|
unetSource: string;
|
|
252
411
|
decoderSource: string;
|
|
253
412
|
};
|
|
413
|
+
/**
|
|
414
|
+
* @category Models - Image Generation
|
|
415
|
+
*/
|
|
254
416
|
export declare const BK_SDM_TINY_VPRED_256: {
|
|
255
417
|
schedulerSource: string;
|
|
256
418
|
tokenizerSource: string;
|
|
@@ -258,6 +420,9 @@ export declare const BK_SDM_TINY_VPRED_256: {
|
|
|
258
420
|
unetSource: string;
|
|
259
421
|
decoderSource: string;
|
|
260
422
|
};
|
|
423
|
+
/**
|
|
424
|
+
* @category Models - Voice Activity Detection
|
|
425
|
+
*/
|
|
261
426
|
export declare const FSMN_VAD: {
|
|
262
427
|
modelSource: string;
|
|
263
428
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"modelUrls.d.ts","sourceRoot":"","sources":["../../../src/constants/modelUrls.ts"],"names":[],"mappings":"AAeA,eAAO,MAAM,WAAW;;;;CAIvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;CAI7B,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;CAIjC,CAAC;AAEF,eAAO,MAAM,WAAW;;;;CAIvB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;CAI7B,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;CAIjC,CAAC;AAYF,eAAO,MAAM,UAAU;;;;CAItB,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;CAIhC,CAAC;AAEF,eAAO,MAAM,UAAU;;;;CAItB,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;CAIhC,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;CAIpB,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;CAI9B,CAAC;AAYF,eAAO,MAAM,cAAc;;;;CAI1B,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;CAIpC,CAAC;AAEF,eAAO,MAAM,cAAc;;;;CAI1B,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;CAIpC,CAAC;AAEF,eAAO,MAAM,YAAY;;;;CAIxB,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;CAIlC,CAAC;AAYF,eAAO,MAAM,cAAc;;;;CAI1B,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;CAIpC,CAAC;AAEF,eAAO,MAAM,cAAc;;;;CAI1B,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;CAIpC,CAAC;AAEF,eAAO,MAAM,cAAc;;;;CAI1B,CAAC;AAEF,eAAO,MAAM,wBAAwB;;;;CAIpC,CAAC;AAYF,eAAO,MAAM,YAAY;;;;CAIxB,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;CAIlC,CAAC;AAEF,eAAO,MAAM,YAAY;;;;CAIxB,CAAC;AAEF,eAAO,MAAM,sBAAsB;;;;CAIlC,CAAC;AAEF,eAAO,MAAM,UAAU;;;;CAItB,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;CAIhC,CAAC;AAQF,eAAO,MAAM,aAAa;;;;CAIzB,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;CAInC,CAAC;AAQF,eAAO,MAAM,iBAAiB;;CAE7B,CAAC;AAKF,eAAO,MAAM,8BAA8B;;CAE1C,CAAC;AAoBF,eAAO,MAAM,oBAAoB;;CAEhC,CAAC;AAEF,eAAO,MAAM,qBAAqB;;CAEjC,CAAC;AAEF,eAAO,MAAM,4BAA4B;;CAExC,CAAC;AAEF,eAAO,MAAM,oBAAoB;;CAEhC,CAAC;AA8BF,eAAO,MAAM,eAAe;;;;;CAK3B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;;;CAKrC,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;CAK3B,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;;CAK5B,CAAC;AAEF,eAAO,MAAM,YAAY;;;;;CAKxB,CAAC;AAEF,eAAO,MAAM,YAAY;;;;;CAKxB,CAAC;AAEF,eAAO,MAAM,aAAa;;;;;CAKzB,CAAC;AAKF,eAAO,MAAM,mBAAmB;;CAE/B,CAAC;AAKF,eAAO,MAAM,2BAA2B;;CAEvC,CAAC;AAcF,eAAO,MAAM,gBAAgB;;;CAG5B,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;CAG7B,CAAC;AAEF,eAAO,MAAM,yBAAyB;;;CAGrC,CAAC;AAEF,eAAO,MAAM,0BAA0B;;;CAGtC,CAAC;AAEF,eAAO,MAAM,0BAA0B;;;CAGtC,CAAC;
|
|
1
|
+
{"version":3,"file":"modelUrls.d.ts","sourceRoot":"","sources":["../../../src/constants/modelUrls.ts"],"names":[],"mappings":"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"}
|