xinference 1.0.1__py3-none-any.whl → 1.2.1__py3-none-any.whl
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.
Potentially problematic release.
This version of xinference might be problematic. Click here for more details.
- xinference/_compat.py +2 -0
- xinference/_version.py +3 -3
- xinference/api/restful_api.py +77 -71
- xinference/core/chat_interface.py +6 -1
- xinference/core/model.py +79 -19
- xinference/core/supervisor.py +172 -10
- xinference/core/utils.py +12 -8
- xinference/core/worker.py +102 -4
- xinference/deploy/cmdline.py +3 -1
- xinference/deploy/test/test_cmdline.py +56 -0
- xinference/isolation.py +24 -0
- xinference/model/audio/core.py +16 -0
- xinference/model/audio/cosyvoice.py +39 -6
- xinference/model/audio/f5tts.py +200 -0
- xinference/model/audio/f5tts_mlx.py +260 -0
- xinference/model/audio/fish_speech.py +36 -111
- xinference/model/audio/melotts.py +110 -0
- xinference/model/audio/model_spec.json +99 -3
- xinference/model/audio/model_spec_modelscope.json +27 -0
- xinference/model/audio/utils.py +32 -0
- xinference/model/audio/whisper.py +35 -10
- xinference/model/embedding/core.py +203 -142
- xinference/model/embedding/model_spec.json +7 -0
- xinference/model/embedding/model_spec_modelscope.json +8 -0
- xinference/model/image/core.py +69 -1
- xinference/model/image/model_spec.json +145 -4
- xinference/model/image/model_spec_modelscope.json +150 -4
- xinference/model/image/stable_diffusion/core.py +45 -13
- xinference/model/llm/__init__.py +4 -2
- xinference/model/llm/llm_family.json +536 -53
- xinference/model/llm/llm_family.py +15 -36
- xinference/model/llm/llm_family_modelscope.json +454 -20
- xinference/model/llm/memory.py +1 -1
- xinference/model/llm/mlx/core.py +248 -52
- xinference/model/llm/sglang/core.py +1 -0
- xinference/model/llm/transformers/chatglm.py +9 -5
- xinference/model/llm/transformers/cogagent.py +272 -0
- xinference/model/llm/transformers/core.py +2 -0
- xinference/model/llm/transformers/qwen2_vl.py +12 -1
- xinference/model/llm/transformers/utils.py +16 -8
- xinference/model/llm/utils.py +36 -4
- xinference/model/llm/vllm/core.py +53 -10
- xinference/model/llm/vllm/xavier/__init__.py +13 -0
- xinference/model/llm/vllm/xavier/allocator.py +74 -0
- xinference/model/llm/vllm/xavier/block.py +111 -0
- xinference/model/llm/vllm/xavier/block_manager.py +71 -0
- xinference/model/llm/vllm/xavier/block_tracker.py +129 -0
- xinference/model/llm/vllm/xavier/collective.py +74 -0
- xinference/model/llm/vllm/xavier/collective_manager.py +147 -0
- xinference/model/llm/vllm/xavier/engine.py +247 -0
- xinference/model/llm/vllm/xavier/executor.py +134 -0
- xinference/model/llm/vllm/xavier/scheduler.py +438 -0
- xinference/model/llm/vllm/xavier/test/__init__.py +13 -0
- xinference/model/llm/vllm/xavier/test/test_xavier.py +147 -0
- xinference/model/llm/vllm/xavier/transfer.py +319 -0
- xinference/model/video/diffusers.py +14 -0
- xinference/model/video/model_spec.json +15 -0
- xinference/model/video/model_spec_modelscope.json +16 -0
- xinference/thirdparty/cosyvoice/bin/average_model.py +92 -0
- xinference/thirdparty/cosyvoice/bin/export_jit.py +12 -2
- xinference/thirdparty/cosyvoice/bin/export_onnx.py +112 -0
- xinference/thirdparty/cosyvoice/bin/export_trt.sh +9 -0
- xinference/thirdparty/cosyvoice/bin/inference.py +5 -7
- xinference/thirdparty/cosyvoice/bin/spk2info.pt +0 -0
- xinference/thirdparty/cosyvoice/bin/train.py +42 -8
- xinference/thirdparty/cosyvoice/cli/cosyvoice.py +96 -25
- xinference/thirdparty/cosyvoice/cli/frontend.py +77 -30
- xinference/thirdparty/cosyvoice/cli/model.py +330 -80
- xinference/thirdparty/cosyvoice/dataset/dataset.py +6 -2
- xinference/thirdparty/cosyvoice/dataset/processor.py +76 -14
- xinference/thirdparty/cosyvoice/flow/decoder.py +92 -13
- xinference/thirdparty/cosyvoice/flow/flow.py +99 -9
- xinference/thirdparty/cosyvoice/flow/flow_matching.py +110 -13
- xinference/thirdparty/cosyvoice/flow/length_regulator.py +5 -4
- xinference/thirdparty/cosyvoice/hifigan/discriminator.py +140 -0
- xinference/thirdparty/cosyvoice/hifigan/generator.py +58 -42
- xinference/thirdparty/cosyvoice/hifigan/hifigan.py +67 -0
- xinference/thirdparty/cosyvoice/llm/llm.py +139 -6
- xinference/thirdparty/cosyvoice/tokenizer/assets/multilingual_zh_ja_yue_char_del.tiktoken +58836 -0
- xinference/thirdparty/cosyvoice/tokenizer/tokenizer.py +279 -0
- xinference/thirdparty/cosyvoice/transformer/embedding.py +2 -2
- xinference/thirdparty/cosyvoice/transformer/encoder_layer.py +7 -7
- xinference/thirdparty/cosyvoice/transformer/upsample_encoder.py +318 -0
- xinference/thirdparty/cosyvoice/utils/common.py +28 -1
- xinference/thirdparty/cosyvoice/utils/executor.py +69 -7
- xinference/thirdparty/cosyvoice/utils/file_utils.py +2 -12
- xinference/thirdparty/cosyvoice/utils/frontend_utils.py +9 -5
- xinference/thirdparty/cosyvoice/utils/losses.py +20 -0
- xinference/thirdparty/cosyvoice/utils/scheduler.py +1 -2
- xinference/thirdparty/cosyvoice/utils/train_utils.py +101 -45
- xinference/thirdparty/f5_tts/api.py +166 -0
- xinference/thirdparty/f5_tts/configs/E2TTS_Base_train.yaml +44 -0
- xinference/thirdparty/f5_tts/configs/E2TTS_Small_train.yaml +44 -0
- xinference/thirdparty/f5_tts/configs/F5TTS_Base_train.yaml +46 -0
- xinference/thirdparty/f5_tts/configs/F5TTS_Small_train.yaml +46 -0
- xinference/thirdparty/f5_tts/eval/README.md +49 -0
- xinference/thirdparty/f5_tts/eval/ecapa_tdnn.py +330 -0
- xinference/thirdparty/f5_tts/eval/eval_infer_batch.py +207 -0
- xinference/thirdparty/f5_tts/eval/eval_infer_batch.sh +13 -0
- xinference/thirdparty/f5_tts/eval/eval_librispeech_test_clean.py +84 -0
- xinference/thirdparty/f5_tts/eval/eval_seedtts_testset.py +84 -0
- xinference/thirdparty/f5_tts/eval/utils_eval.py +405 -0
- xinference/thirdparty/f5_tts/infer/README.md +191 -0
- xinference/thirdparty/f5_tts/infer/SHARED.md +74 -0
- xinference/thirdparty/f5_tts/infer/examples/basic/basic.toml +11 -0
- xinference/thirdparty/f5_tts/infer/examples/basic/basic_ref_en.wav +0 -0
- xinference/thirdparty/f5_tts/infer/examples/basic/basic_ref_zh.wav +0 -0
- xinference/thirdparty/f5_tts/infer/examples/multi/country.flac +0 -0
- xinference/thirdparty/f5_tts/infer/examples/multi/main.flac +0 -0
- xinference/thirdparty/f5_tts/infer/examples/multi/story.toml +19 -0
- xinference/thirdparty/f5_tts/infer/examples/multi/story.txt +1 -0
- xinference/thirdparty/f5_tts/infer/examples/multi/town.flac +0 -0
- xinference/thirdparty/f5_tts/infer/examples/vocab.txt +2545 -0
- xinference/thirdparty/f5_tts/infer/infer_cli.py +226 -0
- xinference/thirdparty/f5_tts/infer/infer_gradio.py +851 -0
- xinference/thirdparty/f5_tts/infer/speech_edit.py +193 -0
- xinference/thirdparty/f5_tts/infer/utils_infer.py +538 -0
- xinference/thirdparty/f5_tts/model/__init__.py +10 -0
- xinference/thirdparty/f5_tts/model/backbones/README.md +20 -0
- xinference/thirdparty/f5_tts/model/backbones/dit.py +163 -0
- xinference/thirdparty/f5_tts/model/backbones/mmdit.py +146 -0
- xinference/thirdparty/f5_tts/model/backbones/unett.py +219 -0
- xinference/thirdparty/f5_tts/model/cfm.py +285 -0
- xinference/thirdparty/f5_tts/model/dataset.py +319 -0
- xinference/thirdparty/f5_tts/model/modules.py +658 -0
- xinference/thirdparty/f5_tts/model/trainer.py +366 -0
- xinference/thirdparty/f5_tts/model/utils.py +185 -0
- xinference/thirdparty/f5_tts/scripts/count_max_epoch.py +33 -0
- xinference/thirdparty/f5_tts/scripts/count_params_gflops.py +39 -0
- xinference/thirdparty/f5_tts/socket_server.py +159 -0
- xinference/thirdparty/f5_tts/train/README.md +77 -0
- xinference/thirdparty/f5_tts/train/datasets/prepare_csv_wavs.py +139 -0
- xinference/thirdparty/f5_tts/train/datasets/prepare_emilia.py +230 -0
- xinference/thirdparty/f5_tts/train/datasets/prepare_libritts.py +92 -0
- xinference/thirdparty/f5_tts/train/datasets/prepare_ljspeech.py +65 -0
- xinference/thirdparty/f5_tts/train/datasets/prepare_wenetspeech4tts.py +125 -0
- xinference/thirdparty/f5_tts/train/finetune_cli.py +174 -0
- xinference/thirdparty/f5_tts/train/finetune_gradio.py +1846 -0
- xinference/thirdparty/f5_tts/train/train.py +75 -0
- xinference/thirdparty/fish_speech/fish_speech/conversation.py +94 -83
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py +63 -20
- xinference/thirdparty/fish_speech/fish_speech/text/clean.py +1 -26
- xinference/thirdparty/fish_speech/fish_speech/text/spliter.py +1 -1
- xinference/thirdparty/fish_speech/fish_speech/tokenizer.py +152 -0
- xinference/thirdparty/fish_speech/fish_speech/train.py +2 -2
- xinference/thirdparty/fish_speech/fish_speech/webui/manage.py +1 -1
- xinference/thirdparty/fish_speech/tools/{post_api.py → api_client.py} +7 -13
- xinference/thirdparty/fish_speech/tools/api_server.py +98 -0
- xinference/thirdparty/fish_speech/tools/download_models.py +5 -5
- xinference/thirdparty/fish_speech/tools/fish_e2e.py +2 -2
- xinference/thirdparty/fish_speech/tools/inference_engine/__init__.py +192 -0
- xinference/thirdparty/fish_speech/tools/inference_engine/reference_loader.py +125 -0
- xinference/thirdparty/fish_speech/tools/inference_engine/utils.py +39 -0
- xinference/thirdparty/fish_speech/tools/inference_engine/vq_manager.py +57 -0
- xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py +2 -2
- xinference/thirdparty/fish_speech/tools/llama/generate.py +117 -89
- xinference/thirdparty/fish_speech/tools/run_webui.py +104 -0
- xinference/thirdparty/fish_speech/tools/schema.py +11 -28
- xinference/thirdparty/fish_speech/tools/server/agent/__init__.py +57 -0
- xinference/thirdparty/fish_speech/tools/server/agent/generate.py +119 -0
- xinference/thirdparty/fish_speech/tools/server/agent/generation_utils.py +122 -0
- xinference/thirdparty/fish_speech/tools/server/agent/pre_generation_utils.py +72 -0
- xinference/thirdparty/fish_speech/tools/server/api_utils.py +75 -0
- xinference/thirdparty/fish_speech/tools/server/exception_handler.py +27 -0
- xinference/thirdparty/fish_speech/tools/server/inference.py +45 -0
- xinference/thirdparty/fish_speech/tools/server/model_manager.py +122 -0
- xinference/thirdparty/fish_speech/tools/server/model_utils.py +129 -0
- xinference/thirdparty/fish_speech/tools/server/views.py +246 -0
- xinference/thirdparty/fish_speech/tools/webui/__init__.py +173 -0
- xinference/thirdparty/fish_speech/tools/webui/inference.py +91 -0
- xinference/thirdparty/fish_speech/tools/webui/variables.py +14 -0
- xinference/thirdparty/matcha/utils/utils.py +2 -2
- xinference/thirdparty/melo/api.py +135 -0
- xinference/thirdparty/melo/app.py +61 -0
- xinference/thirdparty/melo/attentions.py +459 -0
- xinference/thirdparty/melo/commons.py +160 -0
- xinference/thirdparty/melo/configs/config.json +94 -0
- xinference/thirdparty/melo/data/example/metadata.list +20 -0
- xinference/thirdparty/melo/data_utils.py +413 -0
- xinference/thirdparty/melo/download_utils.py +67 -0
- xinference/thirdparty/melo/infer.py +25 -0
- xinference/thirdparty/melo/init_downloads.py +14 -0
- xinference/thirdparty/melo/losses.py +58 -0
- xinference/thirdparty/melo/main.py +36 -0
- xinference/thirdparty/melo/mel_processing.py +174 -0
- xinference/thirdparty/melo/models.py +1030 -0
- xinference/thirdparty/melo/modules.py +598 -0
- xinference/thirdparty/melo/monotonic_align/__init__.py +16 -0
- xinference/thirdparty/melo/monotonic_align/core.py +46 -0
- xinference/thirdparty/melo/preprocess_text.py +135 -0
- xinference/thirdparty/melo/split_utils.py +174 -0
- xinference/thirdparty/melo/text/__init__.py +35 -0
- xinference/thirdparty/melo/text/chinese.py +199 -0
- xinference/thirdparty/melo/text/chinese_bert.py +107 -0
- xinference/thirdparty/melo/text/chinese_mix.py +253 -0
- xinference/thirdparty/melo/text/cleaner.py +36 -0
- xinference/thirdparty/melo/text/cleaner_multiling.py +110 -0
- xinference/thirdparty/melo/text/cmudict.rep +129530 -0
- xinference/thirdparty/melo/text/cmudict_cache.pickle +0 -0
- xinference/thirdparty/melo/text/english.py +284 -0
- xinference/thirdparty/melo/text/english_bert.py +39 -0
- xinference/thirdparty/melo/text/english_utils/abbreviations.py +35 -0
- xinference/thirdparty/melo/text/english_utils/number_norm.py +97 -0
- xinference/thirdparty/melo/text/english_utils/time_norm.py +47 -0
- xinference/thirdparty/melo/text/es_phonemizer/base.py +140 -0
- xinference/thirdparty/melo/text/es_phonemizer/cleaner.py +109 -0
- xinference/thirdparty/melo/text/es_phonemizer/es_symbols.json +79 -0
- xinference/thirdparty/melo/text/es_phonemizer/es_symbols.txt +1 -0
- xinference/thirdparty/melo/text/es_phonemizer/es_symbols_v2.json +83 -0
- xinference/thirdparty/melo/text/es_phonemizer/es_to_ipa.py +12 -0
- xinference/thirdparty/melo/text/es_phonemizer/example_ipa.txt +400 -0
- xinference/thirdparty/melo/text/es_phonemizer/gruut_wrapper.py +253 -0
- xinference/thirdparty/melo/text/es_phonemizer/punctuation.py +174 -0
- xinference/thirdparty/melo/text/es_phonemizer/spanish_symbols.txt +1 -0
- xinference/thirdparty/melo/text/es_phonemizer/test.ipynb +124 -0
- xinference/thirdparty/melo/text/fr_phonemizer/base.py +140 -0
- xinference/thirdparty/melo/text/fr_phonemizer/cleaner.py +122 -0
- xinference/thirdparty/melo/text/fr_phonemizer/en_symbols.json +78 -0
- xinference/thirdparty/melo/text/fr_phonemizer/example_ipa.txt +1 -0
- xinference/thirdparty/melo/text/fr_phonemizer/fr_symbols.json +89 -0
- xinference/thirdparty/melo/text/fr_phonemizer/fr_to_ipa.py +30 -0
- xinference/thirdparty/melo/text/fr_phonemizer/french_abbreviations.py +48 -0
- xinference/thirdparty/melo/text/fr_phonemizer/french_symbols.txt +1 -0
- xinference/thirdparty/melo/text/fr_phonemizer/gruut_wrapper.py +258 -0
- xinference/thirdparty/melo/text/fr_phonemizer/punctuation.py +172 -0
- xinference/thirdparty/melo/text/french.py +94 -0
- xinference/thirdparty/melo/text/french_bert.py +39 -0
- xinference/thirdparty/melo/text/japanese.py +647 -0
- xinference/thirdparty/melo/text/japanese_bert.py +49 -0
- xinference/thirdparty/melo/text/ko_dictionary.py +44 -0
- xinference/thirdparty/melo/text/korean.py +192 -0
- xinference/thirdparty/melo/text/opencpop-strict.txt +429 -0
- xinference/thirdparty/melo/text/spanish.py +122 -0
- xinference/thirdparty/melo/text/spanish_bert.py +39 -0
- xinference/thirdparty/melo/text/symbols.py +290 -0
- xinference/thirdparty/melo/text/tone_sandhi.py +769 -0
- xinference/thirdparty/melo/train.py +635 -0
- xinference/thirdparty/melo/train.sh +19 -0
- xinference/thirdparty/melo/transforms.py +209 -0
- xinference/thirdparty/melo/utils.py +424 -0
- xinference/types.py +15 -0
- xinference/web/ui/build/asset-manifest.json +6 -6
- xinference/web/ui/build/index.html +1 -1
- xinference/web/ui/build/static/css/main.51a587ff.css +2 -0
- xinference/web/ui/build/static/css/main.51a587ff.css.map +1 -0
- xinference/web/ui/build/static/js/main.b0936c54.js +3 -0
- xinference/web/ui/build/static/js/main.b0936c54.js.map +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/03c4052f1b91f6ba0c5389bdcf49c43319b4076c08e4b8585dab312538ae290a.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/1786b83003b8e9605a0f5f855a185d4d16e38fc893dfb326a2a9cca206b4240a.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/17cbc181dd674b9150b80c73ed6a82656de0082d857f6e5f66d9716129ac0b38.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/185ceb8872d562e032b47e79df6a45670e06345b8ed70aad1a131e0476783c5c.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/26b8c9f34b0bed789b3a833767672e39302d1e0c09b4276f4d58d1df7b6bd93b.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/2b484da66c724d0d56a40849c109327408796a668b1381511b6e9e03baa48658.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/2cbbbce9b84df73330d4c42b82436ed881b3847628f2fbc346aa62e2859fd88c.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/2ec9b14431ed33ce6901bf9f27007be4e6e472709c99d6e22b50ce528e4b78ee.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/3b966db018f96be4a055d6ca205f0990d4d0b370e2980c17d8bca2c9a021819c.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/3eefb411b24c2b3ce053570ef50daccf154022f0e168be5ed0fec21394baf9f4.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/522b229e3cac219123f0d69673f5570e191c2d2a505dc65b312d336eae2279c0.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/52e45f17ba300580ea3fcc9f9228ccba194bb092b76f25e9255af311f8b05aab.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/5a0bc4631f936459afc1a3b1d3ec2420118b1f00e11f60ccac3e08088f3f27a8.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/611fa2c6c53b66039991d06dfb0473b5ab37fc63b4564e0f6e1718523768a045.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/6329bc76c406fe5eb305412383fbde5950f847bb5e43261f73f37622c365acb4.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/63c8e07687ea53a4f8a910ee5e42e0eb26cd1acbfbe820f3e3248a786ee51401.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/69b2d5001684174ec9da57e07914eed3eac4960018bceb6cbfa801d861301d7c.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/710c1acda69e561e30a933b98c6a56d50197868b15c21e2aad55ab6d46649eb6.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/720deca1fce5a1dc5056048fa8258fd138a82ea855f350b6613f104a73fb761f.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/76a23b92d26a499c57e61eea2b895fbc9771bd0849a72e66f8e633192017978b.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/858063f23b34dfe600254eb5afd85518b0002ec4b30b7386616c45600826e3b2.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/920b82c1c89124cf217109eeedbfcd3aae3b917be50c9dfb6bbb4ce26bdfd2e7.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/94d8b7aeb0076f2ce07db598cea0e87b13bc8d5614eb530b8d6e696c2daf6f88.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/9e917fe7022d01b2ccbe5cc0ce73d70bb72bee584ff293bad71bdff6695dee28.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/9f28fdb8399f1d0474f0aca86f1658dc94f5bf0c90f6146352de150692de8862.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/a0dfafa06b2bb7cba8cad41c482503f61944f759f4318139362602ef5cc47ccb.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/a3ff866acddf34917a7ee399e0e571a4dfd8ba66d5057db885f243e16a6eb17d.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/afb8084f539534cd594755ea2205ecd5bd1f62dddcfdf75a2eace59a28131278.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/b57b1438b77294c1f3f6cfce12ac487d8106c6f016975ba0aec94d98997e2e1e.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/b9917b0bf8e4d55ccbac1c334aa04d6ff3c5b6ed9e5d38b9ea2c687fa7d3f5a9.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/bbcc94b0149963d1d6f267ee1f4f03d3925b758392ce2f516c3fe8af0e0169fc.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/bdee44abeadc4abc17d41c52eb49c6e19a4b1a267b6e16876ce91bdeeebfc52d.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/beb112b70f4a56db95920a9e20efb6c97c37b68450716730217a9ee1a9ae92be.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/c88db97be0cdf440193b3995996e83510a04cb00048135485fc0e26d197e80b5.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/d49e5314d34310a62d01a03067ce1bec5da00abce84c5196aa9c6842fa79a430.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/d7664d18c4ddbad9c3a6a31b91f7c00fb0dde804608674a9860ee50f33e54708.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/d9072c318b819b7c90a0f7e9cc0b6413b4dbeb8e9859898e53d75ea882fcde99.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/db16a983bc08a05f0439cc61ca0840e49e1d8400eef678909f16c032a418a3d6.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/dc249829767b8abcbc3677e0b07b6d3ecbfdfe6d08cfe23a665eb33373a9aa9d.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/e242c583c2dbc2784f0fcf513523975f7d5df447e106c1c17e49e8578a6fc3ed.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/eac5f1296513e69e4b96f750ddccd4d0264e2bae4e4c449144e83274a48698d9.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/ed57202cb79649bb716400436590245547df241988fc7c8e1d85d132299542d2.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/f125bf72e773a14cdaebd0c343e80adb909d12e317ee5c00cd4a57442fbe2c62.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/f91af913d7f91c410719ab13136aaed3aaf0f8dda06652f25c42cb5231587398.json +1 -0
- xinference/web/ui/node_modules/.package-lock.json +67 -3
- xinference/web/ui/node_modules/@babel/runtime/package.json +592 -538
- xinference/web/ui/node_modules/html-parse-stringify/package.json +50 -0
- xinference/web/ui/node_modules/i18next/dist/esm/package.json +1 -0
- xinference/web/ui/node_modules/i18next/package.json +129 -0
- xinference/web/ui/node_modules/react-i18next/.eslintrc.json +74 -0
- xinference/web/ui/node_modules/react-i18next/dist/es/package.json +1 -0
- xinference/web/ui/node_modules/react-i18next/package.json +162 -0
- xinference/web/ui/node_modules/void-elements/package.json +34 -0
- xinference/web/ui/package-lock.json +69 -3
- xinference/web/ui/package.json +2 -0
- xinference/web/ui/src/locales/en.json +186 -0
- xinference/web/ui/src/locales/zh.json +186 -0
- {xinference-1.0.1.dist-info → xinference-1.2.1.dist-info}/METADATA +68 -32
- {xinference-1.0.1.dist-info → xinference-1.2.1.dist-info}/RECORD +316 -122
- xinference/thirdparty/cosyvoice/bin/export_trt.py +0 -8
- xinference/thirdparty/fish_speech/tools/api.py +0 -943
- xinference/thirdparty/fish_speech/tools/msgpack_api.py +0 -95
- xinference/thirdparty/fish_speech/tools/webui.py +0 -548
- xinference/web/ui/build/static/css/main.5061c4c3.css +0 -2
- xinference/web/ui/build/static/css/main.5061c4c3.css.map +0 -1
- xinference/web/ui/build/static/js/main.2f269bb3.js +0 -3
- xinference/web/ui/build/static/js/main.2f269bb3.js.map +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/07ce9e632e6aff24d7aa3ad8e48224433bbfeb0d633fca723453f1fcae0c9f1c.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/1130403f9e46f5738a23b45ac59b57de8f360c908c713e2c0670c2cce9bd367a.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/131091b25d26b17cdca187d7542a21475c211138d900cf667682260e76ef9463.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/1f269fb2a368363c1cb2237825f1dba093b6bdd8c44cc05954fd19ec2c1fff03.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/331312668fa8bd3d7401818f4a25fa98135d7f61371cd6bfff78b18cf4fbdd92.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/40f17338fc75ae095de7d2b4d8eae0d5ca0193a7e2bcece4ee745b22a7a2f4b7.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/4de9a6942c5f1749d6cbfdd54279699975f16016b182848bc253886f52ec2ec3.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/822586ed1077201b64b954f12f25e3f9b45678c1acbabe53d8af3ca82ca71f33.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/8d33354bd2100c8602afc3341f131a88cc36aaeecd5a4b365ed038514708e350.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/9375a35b05d56989b2755bf72161fa707c92f28569d33765a75f91a568fda6e9.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/a158a9ffa0c9b169aee53dd4a0c44501a596755b4e4f6ede7746d65a72e2a71f.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/bd6ad8159341315a1764c397621a560809f7eb7219ab5174c801fca7e969d943.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/c7bf40bab396765f67d0fed627ed3665890608b2d0edaa3e8cb7cfc96310db45.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/d6c643278a0b28320e6f33a60f5fb64c053997cbdc39a60e53ccc574688ade9e.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/e42b72d4cc1ea412ebecbb8d040dc6c6bfee462c33903c2f1f3facb602ad742e.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/e64b7e8cedcf43d4c95deba60ec1341855c887705805bb62431693118b870c69.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/f5039ddbeb815c51491a1989532006b96fc3ae49c6c60e3c097f875b4ae915ae.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/f72f011744c4649fabddca6f7a9327861ac0a315a89b1a2e62a39774e7863845.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/feabb04b4aa507102da0a64398a40818e878fd1df9b75dda8461b3e1e7ff3f11.json +0 -1
- /xinference/thirdparty/{cosyvoice/bin → f5_tts}/__init__.py +0 -0
- /xinference/thirdparty/{cosyvoice/flow → melo}/__init__.py +0 -0
- /xinference/thirdparty/{cosyvoice/hifigan → melo/text/english_utils}/__init__.py +0 -0
- /xinference/thirdparty/{cosyvoice/llm → melo/text/es_phonemizer}/__init__.py +0 -0
- /xinference/thirdparty/{fish_speech/tools → melo/text/fr_phonemizer}/__init__.py +0 -0
- /xinference/web/ui/build/static/js/{main.2f269bb3.js.LICENSE.txt → main.b0936c54.js.LICENSE.txt} +0 -0
- {xinference-1.0.1.dist-info → xinference-1.2.1.dist-info}/LICENSE +0 -0
- {xinference-1.0.1.dist-info → xinference-1.2.1.dist-info}/WHEEL +0 -0
- {xinference-1.0.1.dist-info → xinference-1.2.1.dist-info}/entry_points.txt +0 -0
- {xinference-1.0.1.dist-info → xinference-1.2.1.dist-info}/top_level.txt +0 -0
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
xinference/__init__.py,sha256=nmTTrYbIpj964ZF6ojtgOM7E85JBOj1EyQbmYjbj1jw,915
|
|
2
|
-
xinference/_compat.py,sha256=
|
|
3
|
-
xinference/_version.py,sha256=
|
|
2
|
+
xinference/_compat.py,sha256=URSJQLXrcsTO9B_4x0wVDPijYQDhuVJmZ95npID560w,4197
|
|
3
|
+
xinference/_version.py,sha256=cRjgwmUs9T7LZabp8_lbu3KxEJZrH641zBpN4hZkBEY,497
|
|
4
4
|
xinference/conftest.py,sha256=vETDpRBVIlWbWi7OTwf7og89U25KyYGyI7yPIB3O8N8,9564
|
|
5
5
|
xinference/constants.py,sha256=mEW4HDzjXtDXN61Mt6TtJrJ4ljbB6VUkh97e3oDbNx4,3905
|
|
6
6
|
xinference/device_utils.py,sha256=zswJiws3VyTIaNO8z-MOcsJH_UiPoePPiKK5zoNrjTA,3285
|
|
7
7
|
xinference/fields.py,sha256=0UtBFaDNzn1n9MRjyTkNrolsIML-TpZfudWOejqjni8,5245
|
|
8
|
-
xinference/isolation.py,sha256=
|
|
9
|
-
xinference/types.py,sha256=
|
|
8
|
+
xinference/isolation.py,sha256=gTU1em5fxg1m-7hxieWBMZvVkXZX4GZYmeT7XxXsYrU,2699
|
|
9
|
+
xinference/types.py,sha256=p9IV2vmbtFfpo9P66IynkEgU2N6310uVMKBuq0rbtNc,13102
|
|
10
10
|
xinference/utils.py,sha256=zYgf9bCvfbybRt3gEog6r5WJCpj0czZCf0qgRdYjkN8,720
|
|
11
11
|
xinference/api/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
12
|
-
xinference/api/restful_api.py,sha256=
|
|
12
|
+
xinference/api/restful_api.py,sha256=NlWmA1pDu8oPybI9daU4pplQXkRD-NExTO2L_E4Y2zM,92876
|
|
13
13
|
xinference/api/oauth2/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
14
14
|
xinference/api/oauth2/auth_service.py,sha256=74JzB42fbbmBu4Q1dW3A9Fp_N7167KgRGB42Z0NHjAM,6119
|
|
15
15
|
xinference/api/oauth2/types.py,sha256=K923sv_XySIUtM2Eozl9IG082IJcDOS5SFLrPZ5ELBg,996
|
|
@@ -21,46 +21,49 @@ xinference/client/restful/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7
|
|
|
21
21
|
xinference/client/restful/restful_client.py,sha256=JwzP7etUZBR0mmU7y3dUOEWN_D7ol_2hXN9KMAzKZaw,53601
|
|
22
22
|
xinference/core/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
23
23
|
xinference/core/cache_tracker.py,sha256=3ubjYCU5aZToSp2GEuzedECVrg-PR4kThTefrFUkb9g,6971
|
|
24
|
-
xinference/core/chat_interface.py,sha256=
|
|
24
|
+
xinference/core/chat_interface.py,sha256=5fUr9-OLrFTZ5TvFGE8gX4N_-N4EmYRp74b5fD6cyAU,21048
|
|
25
25
|
xinference/core/event.py,sha256=42F38H2WOl6aPxp2oxX6WNxHRRxbnvYRmbt4Ar7NP4U,1640
|
|
26
26
|
xinference/core/image_interface.py,sha256=5Iuoiw3g2TvgOYi3gRIAGApve2nNzfMPduRrBHvd1NY,13755
|
|
27
27
|
xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
|
|
28
|
-
xinference/core/model.py,sha256=
|
|
28
|
+
xinference/core/model.py,sha256=8FaEJK4tTL7wvYivLEqWKkZOrAMODBSoxg9A4fYzUH0,43365
|
|
29
29
|
xinference/core/progress_tracker.py,sha256=LIF6CLIlnEoSBkuDCraJktDOzZ31mQ4HOo6EVr3KpQM,6453
|
|
30
30
|
xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
|
|
31
31
|
xinference/core/scheduler.py,sha256=gdj3SyP_jelJ86vTRrgnFynhxz5JSwLRsQgx8PTtBi8,15671
|
|
32
32
|
xinference/core/status_guard.py,sha256=4an1KjUOhCStgRQUw1VSzXcycXUtvhxwiMREKKcl1UI,2828
|
|
33
|
-
xinference/core/supervisor.py,sha256=
|
|
34
|
-
xinference/core/utils.py,sha256=
|
|
35
|
-
xinference/core/worker.py,sha256=
|
|
33
|
+
xinference/core/supervisor.py,sha256=4beE9EZx5xWpSLZtZwT3CPYWT25zPFl9gRj2oK8Za3w,60208
|
|
34
|
+
xinference/core/utils.py,sha256=RR3XDioh52Wy8vmAqhCZ6EQskr-HPDfUp0vCCAPIAvs,11302
|
|
35
|
+
xinference/core/worker.py,sha256=FVy_zXOHovYLPQQr6DSpjSGWaLyH425gTUUH_vwKVfk,50666
|
|
36
36
|
xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
37
|
-
xinference/deploy/cmdline.py,sha256=
|
|
37
|
+
xinference/deploy/cmdline.py,sha256=gPwp9IngaXCypUEnPDS_22U8GntsKr7qHDST7duyAoI,48478
|
|
38
38
|
xinference/deploy/local.py,sha256=gcH6WfTxfhjvNkxxKZH3tcGtXV48BEPoaLWYztZHaeo,3954
|
|
39
39
|
xinference/deploy/supervisor.py,sha256=68rB2Ey5KFeF6zto9YGbw3P8QLZmF_KSh1NwH_pNP4w,2986
|
|
40
40
|
xinference/deploy/utils.py,sha256=jdL7i2WV6u_BZ8IiE1d3YktvCARcB3ntzMQ5rHGD5DM,6756
|
|
41
41
|
xinference/deploy/worker.py,sha256=VQ71ClWpeGsyFgDmcOes2ub1cil10cBjhFLHYeuVwC4,2974
|
|
42
42
|
xinference/deploy/test/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
43
|
-
xinference/deploy/test/test_cmdline.py,sha256=
|
|
43
|
+
xinference/deploy/test/test_cmdline.py,sha256=UecwELfMA03i-AL8uxluhW8A12kzhbHc6gsMg1R_c24,9015
|
|
44
44
|
xinference/model/__init__.py,sha256=bCEwvKjoazBW8QZ5C5Hpfd5v_VTbWpXvo8IB9d4Qs70,1127
|
|
45
45
|
xinference/model/core.py,sha256=_NEH4wkjjJgRDdLHNVY_hL3V0kT67CvTay89uIzx1Ns,4736
|
|
46
46
|
xinference/model/utils.py,sha256=_yJ5h4RUzt7Kjs2WdjSzbVM3FTWEkX0ycOnXANZ9KVg,11394
|
|
47
47
|
xinference/model/audio/__init__.py,sha256=KasWsaNPeij6sGpHKqXaUc_bxUw1yYbD7-fwxkcoAVE,3731
|
|
48
48
|
xinference/model/audio/chattts.py,sha256=ny3DZTCTt2MzdkLw994_QHZ_4qIEUZcNexNJkCejCyo,4998
|
|
49
|
-
xinference/model/audio/core.py,sha256=
|
|
50
|
-
xinference/model/audio/cosyvoice.py,sha256=
|
|
49
|
+
xinference/model/audio/core.py,sha256=jboohBIr8GmXH4ASoKJvU0lWJzsCqUszTsJdn-pByaI,7517
|
|
50
|
+
xinference/model/audio/cosyvoice.py,sha256=vw7OR2t7zNimQn3Q74iiL1-2en5o6gvdcZsDgkmYpy4,7796
|
|
51
51
|
xinference/model/audio/custom.py,sha256=8GXBRmTtR-GY03-E91nlRGTIuabCRzlt20ecU6Un6Y8,4985
|
|
52
|
-
xinference/model/audio/
|
|
52
|
+
xinference/model/audio/f5tts.py,sha256=RyfEYVvKhV7JygIv4F45C8wBr-u0mx9WpXj3gIOtL7o,6809
|
|
53
|
+
xinference/model/audio/f5tts_mlx.py,sha256=SbYIo1C3EfZ8L30P7OTx0Dx7KuXIIpQKf8uZqR1e760,8527
|
|
54
|
+
xinference/model/audio/fish_speech.py,sha256=U1NtEhQFtzVYZ0vpx10EqBnqUz-hmx1ZTAzD9OSPskQ,6767
|
|
53
55
|
xinference/model/audio/funasr.py,sha256=65z7U7_F14CCP-jg6BpeY3_49FK7Y5OCRSzrhhsklCg,4075
|
|
54
|
-
xinference/model/audio/
|
|
55
|
-
xinference/model/audio/
|
|
56
|
-
xinference/model/audio/
|
|
57
|
-
xinference/model/audio/
|
|
56
|
+
xinference/model/audio/melotts.py,sha256=lJdOsce2mMOTQIslv6xq1JTEO7vC6Q9ga2xjY-_E7uw,3493
|
|
57
|
+
xinference/model/audio/model_spec.json,sha256=rGe6_DBmit4CUCFv1y8r9qHFgiFXJePzeaIWhEyyYaE,10239
|
|
58
|
+
xinference/model/audio/model_spec_modelscope.json,sha256=q4LKNjZ1ZG0hI-eWhLj9FWNcAVqiaLtsc6_SCrLkIVk,2788
|
|
59
|
+
xinference/model/audio/utils.py,sha256=fnnQfZlhH6DRw6beXPUIO28u6qu2GgCONrWDIsTCNkw,1591
|
|
60
|
+
xinference/model/audio/whisper.py,sha256=NePQOYy2CnVqi7g6uY9hq5tlUIxZ995FOIOPsPZCfJ8,9058
|
|
58
61
|
xinference/model/audio/whisper_mlx.py,sha256=zBuCd7GUlsN9FC_-J11gqIkOCicihfbqxoabiXTvH2Q,7237
|
|
59
62
|
xinference/model/embedding/__init__.py,sha256=1GmvQsbeeVUT-VRaRGetf8UT4RQgLWIzfp5kfX5jw-k,3567
|
|
60
|
-
xinference/model/embedding/core.py,sha256=
|
|
63
|
+
xinference/model/embedding/core.py,sha256=ijobgaf8ZXY7epxE4m1jqnMIJDaAwzHPoWExhaMtBMY,32201
|
|
61
64
|
xinference/model/embedding/custom.py,sha256=757KncqhsOWVypHZFtuhBP_xy-UTNaFdy0BuZRfuIV8,3848
|
|
62
|
-
xinference/model/embedding/model_spec.json,sha256=
|
|
63
|
-
xinference/model/embedding/model_spec_modelscope.json,sha256=
|
|
65
|
+
xinference/model/embedding/model_spec.json,sha256=EqoR3mubGwCRhAiG6airmS1i881MAxRcwG0FkTyODjs,7233
|
|
66
|
+
xinference/model/embedding/model_spec_modelscope.json,sha256=XGXKaB0sI-pDuboCW39AIugRuDFNvQE6hNhp67uoKsA,6414
|
|
64
67
|
xinference/model/embedding/utils.py,sha256=t_y-7TrYenJKzX3p8e8KWXyC66u7Kd7lMvSzEOolnZw,790
|
|
65
68
|
xinference/model/flexible/__init__.py,sha256=DUAfq9vaiXOfUJfP2WRfqDmGfMtKMqRE-wLETaJw4_w,1718
|
|
66
69
|
xinference/model/flexible/core.py,sha256=3REGHL9uUTgwgEEr6qv5uNMq-j-7by4bAco7QNwwxx4,7231
|
|
@@ -69,10 +72,10 @@ xinference/model/flexible/launchers/__init__.py,sha256=X8w_2hKuQ9H3f90XYK7H_AQU4
|
|
|
69
72
|
xinference/model/flexible/launchers/image_process_launcher.py,sha256=APbbHls0N9DpLFL6_qTexuc5o6bQAvdgJEAZWU4clyw,2510
|
|
70
73
|
xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRUGhulP4PRJ4fZEJ2D9cfv7lcC2qJBoDE,2012
|
|
71
74
|
xinference/model/image/__init__.py,sha256=80HBIbKh6lh-BgNaTo6k0TxxKjdG30bwHAdCiwVk6wk,3198
|
|
72
|
-
xinference/model/image/core.py,sha256=
|
|
75
|
+
xinference/model/image/core.py,sha256=hsYQMqQYtdyBVzMvaiXDVnwvRGggDjYO6yDyZgBDt9E,12947
|
|
73
76
|
xinference/model/image/custom.py,sha256=5gjujQpJVTJ-pVB5LzBo4-bWKKOHzFlRaoRKJ_CuIUg,3769
|
|
74
|
-
xinference/model/image/model_spec.json,sha256=
|
|
75
|
-
xinference/model/image/model_spec_modelscope.json,sha256=
|
|
77
|
+
xinference/model/image/model_spec.json,sha256=6bj35tYYY8xjohTPCXzhcsa2QQmzs763YdJilgItYPE,9514
|
|
78
|
+
xinference/model/image/model_spec_modelscope.json,sha256=I0U-cw4UivqpsR0BMLxXrrljRUytTg8GgcnqnA3VHBU,8395
|
|
76
79
|
xinference/model/image/sdapi.py,sha256=Xgdtnvw4Xwj1Nc0cBoDo_ogH6E2mFJqLvX0jSxxgdnA,5936
|
|
77
80
|
xinference/model/image/utils.py,sha256=sJCxC8iCS7r9sVY4edKz2DYaZ-ebq_t9HjL7fZMS8z8,2344
|
|
78
81
|
xinference/model/image/ocr/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
@@ -80,31 +83,32 @@ xinference/model/image/ocr/got_ocr2.py,sha256=N5Ux1dCtDMA25BBEmqiYNVKrk_HA-IPWch
|
|
|
80
83
|
xinference/model/image/scheduler/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
81
84
|
xinference/model/image/scheduler/flux.py,sha256=GHlpPfU5UxsiQWNyvNe9SaVZceNg_2CiF1oJUdCao5o,18830
|
|
82
85
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
83
|
-
xinference/model/image/stable_diffusion/core.py,sha256=
|
|
86
|
+
xinference/model/image/stable_diffusion/core.py,sha256=SaeBYNdRdqarEwoyjHDz_SfRIr9EEK4IzgydYuRf7pI,24286
|
|
84
87
|
xinference/model/image/stable_diffusion/mlx.py,sha256=GZsozzGB04NfHAdU9MI6gwWE1t_A-s_Ddn_ic8DlkKQ,7476
|
|
85
|
-
xinference/model/llm/__init__.py,sha256=
|
|
88
|
+
xinference/model/llm/__init__.py,sha256=zKmkoNsUoQk1_jnLHNpno4UPKGl5O_vJK5R5R-TYF9w,14140
|
|
86
89
|
xinference/model/llm/core.py,sha256=g-luuAjZizrPunhyFE9IRjn57l0g6FY_1xUwtlRegbs,8151
|
|
87
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
88
|
-
xinference/model/llm/llm_family.py,sha256=
|
|
90
|
+
xinference/model/llm/llm_family.json,sha256=Q67g29KCIgnRQVS92ortD_RY1RhYU_47WnwFMM8GDbY,328868
|
|
91
|
+
xinference/model/llm/llm_family.py,sha256=HiWobT1SInGXWT78g673K5-FoDkDi1dSUU4pmfFAPPI,39050
|
|
89
92
|
xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
|
|
90
|
-
xinference/model/llm/llm_family_modelscope.json,sha256=
|
|
93
|
+
xinference/model/llm/llm_family_modelscope.json,sha256=jEp2-wzMsJYTR4xXqt5eETghsxgYgEGLiDSzc12pUzY,258710
|
|
91
94
|
xinference/model/llm/llm_family_openmind_hub.json,sha256=jl9pfbe5DztoxgEwKBxDk1Wd7TziTiJ48_Ie_lJdYjA,67872
|
|
92
|
-
xinference/model/llm/memory.py,sha256=
|
|
93
|
-
xinference/model/llm/utils.py,sha256=
|
|
95
|
+
xinference/model/llm/memory.py,sha256=GLNmXBI-AtMbuaJfEf50fnhN4rdbOZjLyT6L_Vjqa5g,10206
|
|
96
|
+
xinference/model/llm/utils.py,sha256=nSI5vtOp3qfAB-RgYXNrMZH9f-X1JbNOyCBVFz21eMw,25407
|
|
94
97
|
xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
95
98
|
xinference/model/llm/llama_cpp/core.py,sha256=vjuTapwbn-ZjUX-8WA0nFyicE4UGUSehU_csSetvcZw,10928
|
|
96
99
|
xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
100
|
xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc3ua8yPTI,19835
|
|
98
101
|
xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
99
|
-
xinference/model/llm/mlx/core.py,sha256=
|
|
102
|
+
xinference/model/llm/mlx/core.py,sha256=rpgwZ7R2WDd-ayhi28UDglGxIutBuIXLyX7n7fHIEYw,22936
|
|
100
103
|
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
101
|
-
xinference/model/llm/sglang/core.py,sha256=
|
|
104
|
+
xinference/model/llm/sglang/core.py,sha256=Ab0i6Q3M-DqQi5bHMyfa9klPElGSk1ThEke4mdsBHXU,16747
|
|
102
105
|
xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
103
|
-
xinference/model/llm/transformers/chatglm.py,sha256=
|
|
106
|
+
xinference/model/llm/transformers/chatglm.py,sha256=vHBPIn5nEkrjBmonYkCHAIxDwvNeZHXK8EQz3B2vObE,22418
|
|
107
|
+
xinference/model/llm/transformers/cogagent.py,sha256=JbIiqVW-S9MA3d4CN2DlI7-WDB_nuCbX8JSypR5TmVU,10080
|
|
104
108
|
xinference/model/llm/transformers/cogvlm2.py,sha256=I5Ftm0VYjbTAv5ZARZCo32Ggpw58PJfHs5B_nX_BIlU,15972
|
|
105
109
|
xinference/model/llm/transformers/cogvlm2_video.py,sha256=ZGkpC4x2uEtjwoMrLSODmAUYTjOeSNYxZi9VpQrpnhU,11857
|
|
106
110
|
xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
|
|
107
|
-
xinference/model/llm/transformers/core.py,sha256=
|
|
111
|
+
xinference/model/llm/transformers/core.py,sha256=t1tujy8-IfD83CjKkvxZ-jqZISDQVFJpSiDkeIL4LGM,28286
|
|
108
112
|
xinference/model/llm/transformers/deepseek_v2.py,sha256=-RKlI3mhja730md4evQ2vfIxBnZD5vWyrgmg_3eovms,4096
|
|
109
113
|
xinference/model/llm/transformers/deepseek_vl.py,sha256=pB6i6DW5oyfHdqTgKpi2DkIKVGlPLGIDR_Op0sB1uKA,10445
|
|
110
114
|
xinference/model/llm/transformers/glm4v.py,sha256=goph2HhpV8gUm2t8-T1P-jTF2r_kPeH6QNe64lmlm0g,13871
|
|
@@ -116,14 +120,27 @@ xinference/model/llm/transformers/minicpmv26.py,sha256=_e2C4vmyKIzKt7S7AvKgiqhDO
|
|
|
116
120
|
xinference/model/llm/transformers/omnilmm.py,sha256=2ZLW979ETqDDKo9CaTNwi9uLBZ2d6itHAYqjUA4jdro,5172
|
|
117
121
|
xinference/model/llm/transformers/opt.py,sha256=dkZFNwtw_sUuVaz9He6LWfEojRGfOQFQ5atvC5OYPuY,2429
|
|
118
122
|
xinference/model/llm/transformers/qwen2_audio.py,sha256=1XmlawVF-Xh2pgGoLDX7kOYIiF_bDUR3doSOnM59QbQ,6107
|
|
119
|
-
xinference/model/llm/transformers/qwen2_vl.py,sha256=
|
|
123
|
+
xinference/model/llm/transformers/qwen2_vl.py,sha256=TKn7p0-bNzzv7ZVZ18mOD9NYgJ9q_y_CJMA3OWWvv2c,7768
|
|
120
124
|
xinference/model/llm/transformers/qwen_vl.py,sha256=LG19qJW30bFiZOS-t9OM3JP6K1KCLj_Sv3nKSCLvyts,14058
|
|
121
125
|
xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
|
|
122
|
-
xinference/model/llm/transformers/utils.py,sha256=
|
|
126
|
+
xinference/model/llm/transformers/utils.py,sha256=a4-X5P9_L--rgSx5jI8haYA6GSpKhMdOYE97VNh54yM,19389
|
|
123
127
|
xinference/model/llm/transformers/yi_vl.py,sha256=iCdRLw-wizbU-qXXc8CT4DhC0Pt-uYg0vFwXEhAZjQg,8961
|
|
124
128
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
125
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
129
|
+
xinference/model/llm/vllm/core.py,sha256=hrHFC3Q3J-MLJnyqX9HcdiIGBfxfrn_27UPsjldLSHc,37233
|
|
126
130
|
xinference/model/llm/vllm/utils.py,sha256=LKOmwfFRrlSecawxT-uE39tC2RQbf1UIiSH9Uz90X6w,1313
|
|
131
|
+
xinference/model/llm/vllm/xavier/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
|
|
132
|
+
xinference/model/llm/vllm/xavier/allocator.py,sha256=SJ2eCOxF6CWTBZIP39FRxeK6fxIE8pRshOPnSRc72d4,2691
|
|
133
|
+
xinference/model/llm/vllm/xavier/block.py,sha256=cdxHi-dqojbdng9tt3lMcc8AfL6gkT4lRXqqGUO5G8M,4457
|
|
134
|
+
xinference/model/llm/vllm/xavier/block_manager.py,sha256=9rJaTWGf6mPny78D0YdfhWt2vovEUyP1C2C974npGXI,2822
|
|
135
|
+
xinference/model/llm/vllm/xavier/block_tracker.py,sha256=h4kqWhnLVol2hPykN7yxMbpFcWhCgye9D7LJXiPj1s8,5599
|
|
136
|
+
xinference/model/llm/vllm/xavier/collective.py,sha256=_yENFr-SJ38TywSYW2MgnEsagkTxarQOjLTacrdriYs,2563
|
|
137
|
+
xinference/model/llm/vllm/xavier/collective_manager.py,sha256=oyenv3OziB1sUZylVpdi7piGbOIEgxtVWwuHa-y0vuc,5584
|
|
138
|
+
xinference/model/llm/vllm/xavier/engine.py,sha256=WlKoxnE8HTUMVHr-PC9x-5emwZAjsMMxUBxUgcn0fQg,10443
|
|
139
|
+
xinference/model/llm/vllm/xavier/executor.py,sha256=XUSKLDxejMccSMh9qC_IjWLktStf7gHIWdxpUd2AYPk,5645
|
|
140
|
+
xinference/model/llm/vllm/xavier/scheduler.py,sha256=3_tim9DRia-fOEkuvtlQxbcroNszsQtnizVXXkGOQq4,20264
|
|
141
|
+
xinference/model/llm/vllm/xavier/transfer.py,sha256=2IbaiAhRnJMwa9qsMa5bowngqfjxDeht0JS1BMbRmyA,11319
|
|
142
|
+
xinference/model/llm/vllm/xavier/test/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
|
|
143
|
+
xinference/model/llm/vllm/xavier/test/test_xavier.py,sha256=E7MDGTeGJMaULoIKez6lt2Vhz0w6FJlPyAELUjE0Chw,4890
|
|
127
144
|
xinference/model/rerank/__init__.py,sha256=wRpf1bOMfmAsuEKEGczMTB5fWEvuqltlJbIbRb-x8Ko,3483
|
|
128
145
|
xinference/model/rerank/core.py,sha256=e-QoFgVk-6LOQPM5zqbEj095J-1bkuyd9c5zRI5DlF8,14560
|
|
129
146
|
xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
|
|
@@ -132,54 +149,59 @@ xinference/model/rerank/model_spec_modelscope.json,sha256=pf5hX4g0HdVjk2-ibHTl_m
|
|
|
132
149
|
xinference/model/rerank/utils.py,sha256=MJAFL47G3r3zLVGXKoi0QLTgU3Xr4Ffv72Ipn--psew,713
|
|
133
150
|
xinference/model/video/__init__.py,sha256=mRhOhzMxzcPFdA5j4niAxH_j9dXLtT9HmchuICrdET8,2160
|
|
134
151
|
xinference/model/video/core.py,sha256=gzVo-qnyqdF6tLgsGqCkHxGkbujSf7VCGJIlqLxfouc,6073
|
|
135
|
-
xinference/model/video/diffusers.py,sha256=
|
|
136
|
-
xinference/model/video/model_spec.json,sha256=
|
|
137
|
-
xinference/model/video/model_spec_modelscope.json,sha256=
|
|
152
|
+
xinference/model/video/diffusers.py,sha256=P6GCKY5TFvLaMKyVBACXPUB-IVNo8-9HCRwfnqHPfoY,6982
|
|
153
|
+
xinference/model/video/model_spec.json,sha256=ubTQsEfEVIzHz7O8XZOSgo-PtQRLz_qctv965ChI7gY,1218
|
|
154
|
+
xinference/model/video/model_spec_modelscope.json,sha256=sjKMD-qRQMZ2NWTL7NxrclSljIVtwPFmgRKjObJmYtY,1198
|
|
138
155
|
xinference/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
156
|
xinference/thirdparty/cosyvoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
140
|
-
xinference/thirdparty/cosyvoice/bin/
|
|
141
|
-
xinference/thirdparty/cosyvoice/bin/export_jit.py,sha256=
|
|
142
|
-
xinference/thirdparty/cosyvoice/bin/
|
|
143
|
-
xinference/thirdparty/cosyvoice/bin/
|
|
144
|
-
xinference/thirdparty/cosyvoice/bin/
|
|
157
|
+
xinference/thirdparty/cosyvoice/bin/average_model.py,sha256=5x2fXo-HX6r_3aBoXfyGYG6w1Qp9l_XUcxesYZqGUyA,3143
|
|
158
|
+
xinference/thirdparty/cosyvoice/bin/export_jit.py,sha256=o6qMUNJDrvXw5MHwIKS6Tj_eeJsSrOrAnvQ0YD5HTmk,2628
|
|
159
|
+
xinference/thirdparty/cosyvoice/bin/export_onnx.py,sha256=PjD9UHpK2uGn4i7NBows5vpDd2Ho5oXy-jey2p0Jz8E,4560
|
|
160
|
+
xinference/thirdparty/cosyvoice/bin/export_trt.sh,sha256=LS96nBmlkJn097zmyGhSAdDLQpZBtAkQGxCFedNikAQ,931
|
|
161
|
+
xinference/thirdparty/cosyvoice/bin/inference.py,sha256=l4wX0LPraGw41VFQOMWp8_kMe1Ac3ZkuK4tXQHhjXko,5471
|
|
162
|
+
xinference/thirdparty/cosyvoice/bin/spk2info.pt,sha256=-0kWCdolo1FLdtdtVdvyZoY5TDeNWWEo-z4V8rdM30Q,1317821
|
|
163
|
+
xinference/thirdparty/cosyvoice/bin/train.py,sha256=8S9T_DIGY-hYsq_jQJ5y74Wp3w-fhojLD8ChZYWH1Gg,6806
|
|
145
164
|
xinference/thirdparty/cosyvoice/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
146
|
-
xinference/thirdparty/cosyvoice/cli/cosyvoice.py,sha256=
|
|
147
|
-
xinference/thirdparty/cosyvoice/cli/frontend.py,sha256=
|
|
148
|
-
xinference/thirdparty/cosyvoice/cli/model.py,sha256=
|
|
165
|
+
xinference/thirdparty/cosyvoice/cli/cosyvoice.py,sha256=VrtqD6do3ISDH74-HdRTyyz-NKBDZOg4oB39ZHeauRc,10150
|
|
166
|
+
xinference/thirdparty/cosyvoice/cli/frontend.py,sha256=5rA7nUy7Mkc9WEKXrkxHDIqQK26sN_LRgqRO8_8UfQE,12587
|
|
167
|
+
xinference/thirdparty/cosyvoice/cli/model.py,sha256=J5JnJ9fqIrfg8tiIn8a1cyZfkFEoeyKZeSCeYoT8DIg,26351
|
|
149
168
|
xinference/thirdparty/cosyvoice/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
150
|
-
xinference/thirdparty/cosyvoice/dataset/dataset.py,sha256=
|
|
151
|
-
xinference/thirdparty/cosyvoice/dataset/processor.py,sha256=
|
|
152
|
-
xinference/thirdparty/cosyvoice/flow/
|
|
153
|
-
xinference/thirdparty/cosyvoice/flow/
|
|
154
|
-
xinference/thirdparty/cosyvoice/flow/
|
|
155
|
-
xinference/thirdparty/cosyvoice/flow/
|
|
156
|
-
xinference/thirdparty/cosyvoice/
|
|
157
|
-
xinference/thirdparty/cosyvoice/hifigan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
169
|
+
xinference/thirdparty/cosyvoice/dataset/dataset.py,sha256=6CJJZv1hOzK6jTbqsYpcL5UQk1O5dnc25NVgnSDuA_U,5403
|
|
170
|
+
xinference/thirdparty/cosyvoice/dataset/processor.py,sha256=t-qv63eCAXmeU863MKckFT7J45nTQomT_DLiMH6m_Cg,15416
|
|
171
|
+
xinference/thirdparty/cosyvoice/flow/decoder.py,sha256=SH54O2Z7iXBjwVtlOufgF9SyEEV7p5hg4yv4ueccbSg,12311
|
|
172
|
+
xinference/thirdparty/cosyvoice/flow/flow.py,sha256=l8tkOqkLo7CkH9tb2CzcEsIoQcMqbMMIMH5fclLmxi0,10252
|
|
173
|
+
xinference/thirdparty/cosyvoice/flow/flow_matching.py,sha256=AhSNEWfkm9nnfqXCgl0MHusJzO30ACcX50jdGpuq0so,10647
|
|
174
|
+
xinference/thirdparty/cosyvoice/flow/length_regulator.py,sha256=CG331RLBuvsAWUmglhz00OiFmnnmi9KpO-arTitwsuM,3060
|
|
175
|
+
xinference/thirdparty/cosyvoice/hifigan/discriminator.py,sha256=PorODWt9kG9fk1PNApkPm8QPuzF-ufUkhOukoQ8g9ao,5341
|
|
158
176
|
xinference/thirdparty/cosyvoice/hifigan/f0_predictor.py,sha256=4Ter1WnuSRA7wytzQfEtu-3PuA-Qrg3ywR5Hs7fsV74,1976
|
|
159
|
-
xinference/thirdparty/cosyvoice/hifigan/generator.py,sha256=
|
|
160
|
-
xinference/thirdparty/cosyvoice/
|
|
161
|
-
xinference/thirdparty/cosyvoice/llm/llm.py,sha256=
|
|
177
|
+
xinference/thirdparty/cosyvoice/hifigan/generator.py,sha256=AzO0ALwzt7XvZqzxzl2xuRSsM3IecoUQOHoQU_fkTPk,15498
|
|
178
|
+
xinference/thirdparty/cosyvoice/hifigan/hifigan.py,sha256=CH96CjSUNW-C2dCocseSZhIUQ2OAS0OLj4sRsSbCYys,3231
|
|
179
|
+
xinference/thirdparty/cosyvoice/llm/llm.py,sha256=vPJIVmQmLvboKN-ywb5bHkshXyAetaJtHxWzE7TYQWc,14420
|
|
180
|
+
xinference/thirdparty/cosyvoice/tokenizer/tokenizer.py,sha256=lDQPx83ycMaaOutjKQxSQQROIHFOAf6nNvNh-eWlbfI,7456
|
|
181
|
+
xinference/thirdparty/cosyvoice/tokenizer/assets/multilingual_zh_ja_yue_char_del.tiktoken,sha256=dHl5Yx6BMZNDaqvP98HCNdN96Al7ccVj7Itjt6UVxxg,907395
|
|
162
182
|
xinference/thirdparty/cosyvoice/transformer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
163
183
|
xinference/thirdparty/cosyvoice/transformer/activation.py,sha256=pKlsrqn3sFERKG3l6nYL39-cTlNEj1NCCFfcBKUEQMI,3089
|
|
164
184
|
xinference/thirdparty/cosyvoice/transformer/attention.py,sha256=QdJpstXjo5UsClOPRkgK_4Vwdn64joBFLzZ0Ns72KLE,14389
|
|
165
185
|
xinference/thirdparty/cosyvoice/transformer/convolution.py,sha256=619B8ySpciXHO5xDCvi7IxvXc4bvGEULsP0yn0aatOE,5230
|
|
166
186
|
xinference/thirdparty/cosyvoice/transformer/decoder.py,sha256=2wQscn4OZTrJJHM7H7FeaXkv_YDJ089iJIN0VV1Yocw,16580
|
|
167
187
|
xinference/thirdparty/cosyvoice/transformer/decoder_layer.py,sha256=uVZiq3LsawsPUMOhX77PFvrLeG0yO0rKHQY7nCHA1k4,4807
|
|
168
|
-
xinference/thirdparty/cosyvoice/transformer/embedding.py,sha256=
|
|
188
|
+
xinference/thirdparty/cosyvoice/transformer/embedding.py,sha256=NkbnSHg_5sBptCTMnL_oG8VKXM_qGucEHfOYpgPMzT4,11399
|
|
169
189
|
xinference/thirdparty/cosyvoice/transformer/encoder.py,sha256=J_nXSZcgNy--Z3TQkLif8GPH7PiPk6TXWye7GtspGKU,21434
|
|
170
|
-
xinference/thirdparty/cosyvoice/transformer/encoder_layer.py,sha256=
|
|
190
|
+
xinference/thirdparty/cosyvoice/transformer/encoder_layer.py,sha256=GSBYK-LJt894Nee1ORGOweudqPLHEcYlf4WYs3kpUbk,9602
|
|
171
191
|
xinference/thirdparty/cosyvoice/transformer/label_smoothing_loss.py,sha256=24gEzxwg4a-_bDPeSDZYmxlH2IF5fQLVB8KoqNT0D90,3459
|
|
172
192
|
xinference/thirdparty/cosyvoice/transformer/positionwise_feed_forward.py,sha256=boA447zIyght3KUI-5udQL86uYvrq89clJNdAyMp0Pg,4219
|
|
173
193
|
xinference/thirdparty/cosyvoice/transformer/subsampling.py,sha256=MfwDR6hRq8EgXf1M9oCZwMQWWJw-maB7JQ6GMM7OGdA,12666
|
|
194
|
+
xinference/thirdparty/cosyvoice/transformer/upsample_encoder.py,sha256=f1mSmwAVFN8srFbkCTVBPEkGfqpZwbUsaTKuY9NW3cA,13766
|
|
174
195
|
xinference/thirdparty/cosyvoice/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
196
|
xinference/thirdparty/cosyvoice/utils/class_utils.py,sha256=PnVIVrqHzyv9FA4mvpkHcvABQboGubVVELE_QVI40YA,2582
|
|
176
|
-
xinference/thirdparty/cosyvoice/utils/common.py,sha256=
|
|
177
|
-
xinference/thirdparty/cosyvoice/utils/executor.py,sha256=
|
|
178
|
-
xinference/thirdparty/cosyvoice/utils/file_utils.py,sha256=
|
|
179
|
-
xinference/thirdparty/cosyvoice/utils/frontend_utils.py,sha256=
|
|
197
|
+
xinference/thirdparty/cosyvoice/utils/common.py,sha256=nBnqfbt_6hpmJOqFu52GDgwZgrY7KmBE5QvvifMxhfk,5834
|
|
198
|
+
xinference/thirdparty/cosyvoice/utils/executor.py,sha256=tivb-mBApjKUakLKqBeMvjqAZUyPa_6I6cZfbJoxmhc,8559
|
|
199
|
+
xinference/thirdparty/cosyvoice/utils/file_utils.py,sha256=rNS-oF5o3Xe159ge-rAxPdnIYkd7B50ufC3yz5rP9mE,1661
|
|
200
|
+
xinference/thirdparty/cosyvoice/utils/frontend_utils.py,sha256=kk4JnPCuzmO-K2jARcqyLhZpQ6iq2B823ksmgX_qufE,4029
|
|
201
|
+
xinference/thirdparty/cosyvoice/utils/losses.py,sha256=VRkh1v_mmss65WcRKv9-EPqOwSKGixeUtI0bIXZgdZk,607
|
|
180
202
|
xinference/thirdparty/cosyvoice/utils/mask.py,sha256=kAauQRdlhQGrC0BjvYFpicLOlVKDp3V3ZCnLbbTMaHU,8351
|
|
181
|
-
xinference/thirdparty/cosyvoice/utils/scheduler.py,sha256=
|
|
182
|
-
xinference/thirdparty/cosyvoice/utils/train_utils.py,sha256=
|
|
203
|
+
xinference/thirdparty/cosyvoice/utils/scheduler.py,sha256=lEfquE_Lcer2VG2zUVa0n-UxgvJEdEodyT66so-h6jQ,24920
|
|
204
|
+
xinference/thirdparty/cosyvoice/utils/train_utils.py,sha256=JH6OWnIcR9NZE9CP-Clu6-YuBAmHgkzzVp4q48FUvsc,15154
|
|
183
205
|
xinference/thirdparty/deepseek_vl/__init__.py,sha256=N5CYTfTFEiTT7mrNrrGTSyvDOVkGVO3pE_fWm8ugcAw,1458
|
|
184
206
|
xinference/thirdparty/deepseek_vl/models/__init__.py,sha256=gVJoBKpRfny6w_QpTrTh_iCqUtVJZLuctzfPQq-dKDw,1328
|
|
185
207
|
xinference/thirdparty/deepseek_vl/models/clip_encoder.py,sha256=tn-uTCAcb63WOX6cB0rl2ynOsum23xy1tAvBqPbIHHo,8197
|
|
@@ -211,11 +233,62 @@ xinference/thirdparty/deepseek_vl/serve/examples/rap.jpeg,sha256=AL_pk3nX1ChriPT
|
|
|
211
233
|
xinference/thirdparty/deepseek_vl/utils/__init__.py,sha256=u8C--egJMT_DDm0JG3frXGSQNNv6cfIAumPhghzkxhk,1091
|
|
212
234
|
xinference/thirdparty/deepseek_vl/utils/conversation.py,sha256=7oITA8TsIuOfumVZ8hcoDpA6dm1jz7n8-VXPe_7-4YA,11702
|
|
213
235
|
xinference/thirdparty/deepseek_vl/utils/io.py,sha256=HQqLoONZF4nl1E9oMrm7_2LwU8ZSh1C9htm7vLN4YfI,2751
|
|
236
|
+
xinference/thirdparty/f5_tts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
237
|
+
xinference/thirdparty/f5_tts/api.py,sha256=yYr9SwJrgyzm8E7Z5LZYkW8p28PbVRtjr9lIcDRvJjk,5571
|
|
238
|
+
xinference/thirdparty/f5_tts/socket_server.py,sha256=XwClpY1a3MtTdedMWT5fLTS1Bt2DnvydZs2jnLxSBdc,5353
|
|
239
|
+
xinference/thirdparty/f5_tts/configs/E2TTS_Base_train.yaml,sha256=93n-t-7bs21nPNiA7iHDfub5BOU154wusr5HQ4FCgrg,1524
|
|
240
|
+
xinference/thirdparty/f5_tts/configs/E2TTS_Small_train.yaml,sha256=OICiTEILCBFCzuH8-uB_yaubX7RFpXlmQmkHfEz7uBc,1450
|
|
241
|
+
xinference/thirdparty/f5_tts/configs/F5TTS_Base_train.yaml,sha256=0ABJmiY1MZuSlnpZM2P1V-nUPSCf3Z2H_YhH6GNUcbg,1593
|
|
242
|
+
xinference/thirdparty/f5_tts/configs/F5TTS_Small_train.yaml,sha256=Ipd_-hzSm3Kd1M_kS70viE_X6oF-hyiQrzpprjJv2rE,1545
|
|
243
|
+
xinference/thirdparty/f5_tts/eval/README.md,sha256=JL2cAWgA1ruqrNmEpGSYjyIwX2MR33JPI5-rP6pSfvU,1739
|
|
244
|
+
xinference/thirdparty/f5_tts/eval/ecapa_tdnn.py,sha256=mU979VeH7XIOl01W7N0wR7EZg-TsR12nKde_dNLqIBM,11365
|
|
245
|
+
xinference/thirdparty/f5_tts/eval/eval_infer_batch.py,sha256=TUKSXmAo1LKvlTr8RS7_pOwowDANvLF-fOzJ8e17EE0,7337
|
|
246
|
+
xinference/thirdparty/f5_tts/eval/eval_infer_batch.sh,sha256=qWvsnkBJEVStA4FSlgoMkgxbMUtKrjtYIb0lrxatPEQ,736
|
|
247
|
+
xinference/thirdparty/f5_tts/eval/eval_librispeech_test_clean.py,sha256=1Pt7o6MbmKHQGu3jsKz8Ez6lbWiEGm_T_-h9jV2_3SM,3119
|
|
248
|
+
xinference/thirdparty/f5_tts/eval/eval_seedtts_testset.py,sha256=FjkHt_Cr3L8kRDmLFwU9crc3f2qB70-XalI1IhZykMU,2855
|
|
249
|
+
xinference/thirdparty/f5_tts/eval/utils_eval.py,sha256=lgr85GHc8q43omDab7MEeKUknoXWYIFJgA9a3bfZkoo,13752
|
|
250
|
+
xinference/thirdparty/f5_tts/infer/README.md,sha256=dN4SXdOntZFn8GC6LDu_HSA17XiGwA1LXpNrA5fLG7A,7200
|
|
251
|
+
xinference/thirdparty/f5_tts/infer/SHARED.md,sha256=tsli9AOniGJn9RWqMRaxmKrNU8fIjLuoXvfBIC3aJbE,3257
|
|
252
|
+
xinference/thirdparty/f5_tts/infer/infer_cli.py,sha256=FbCLpvlvG2qRHlzVh7YEPqkbsexWJ9xvblHhBPfQA5M,7579
|
|
253
|
+
xinference/thirdparty/f5_tts/infer/infer_gradio.py,sha256=kZstlld1FU01I1X_dfTX_AZZHtr11NHyCNJujPsngOk,32230
|
|
254
|
+
xinference/thirdparty/f5_tts/infer/speech_edit.py,sha256=ZQHqvjTz44WoNIeDeKFaRU4JTZavm41zUuFroZZJtoE,6448
|
|
255
|
+
xinference/thirdparty/f5_tts/infer/utils_infer.py,sha256=bgY9giSv520fSx-4SCTRVVoC8m5LVgcicvoKKJq4zAI,17969
|
|
256
|
+
xinference/thirdparty/f5_tts/infer/examples/vocab.txt,sha256=Thc5NL5WIZ6zh1n6jUxIEy1aNEVPDESrzkCbz2oH7EY,11255
|
|
257
|
+
xinference/thirdparty/f5_tts/infer/examples/basic/basic.toml,sha256=vyD-fjKRJl63z8tpHQbbJJRXK8x4qbpxiEB894BWeVg,538
|
|
258
|
+
xinference/thirdparty/f5_tts/infer/examples/basic/basic_ref_en.wav,sha256=sOIgSOckFPzB5rY0LkendNdIoZXtNOSls_z0FnB_K3E,256018
|
|
259
|
+
xinference/thirdparty/f5_tts/infer/examples/basic/basic_ref_zh.wav,sha256=lnJKETJA0fgsbe0TNBIvAXa5bJImzNPJGeYlvP0qPt4,324558
|
|
260
|
+
xinference/thirdparty/f5_tts/infer/examples/multi/country.flac,sha256=uxVwi0s4deN77sRlkaXYnhqaY_2tO4_kpchzj09VRAA,180321
|
|
261
|
+
xinference/thirdparty/f5_tts/infer/examples/multi/main.flac,sha256=SrsRB3cc5-FJJv3oeblZ3ebbblckdrmGhPBORel4qxk,279219
|
|
262
|
+
xinference/thirdparty/f5_tts/infer/examples/multi/story.toml,sha256=YXyG9WKvRQoEbvzymPfC0JfhRPuIqhVPt4Pl6FCnYAw,469
|
|
263
|
+
xinference/thirdparty/f5_tts/infer/examples/multi/story.txt,sha256=x2786TF7Ddmd9rLCbw8g_UoNWk3Ay2m3uTMPwZ5vvMU,1404
|
|
264
|
+
xinference/thirdparty/f5_tts/infer/examples/multi/town.flac,sha256=59BpuOvVGAw7MP3l03jwod2slnItYs9DU378PD86POg,229383
|
|
265
|
+
xinference/thirdparty/f5_tts/model/__init__.py,sha256=JmdAzUUCK6TLeuzZI1SA-54ws4l7SszormqEt6e12Qw,276
|
|
266
|
+
xinference/thirdparty/f5_tts/model/cfm.py,sha256=9rv6V6Mjc8PrHEF9d4hx3P4qZPmT23NO0t-S2WzTdMA,9415
|
|
267
|
+
xinference/thirdparty/f5_tts/model/dataset.py,sha256=yk7j7n2nBejWjod9v9cbYgpfzeWjPBJkYnd7bK_hkbk,10544
|
|
268
|
+
xinference/thirdparty/f5_tts/model/modules.py,sha256=9y8oJzryjNPzHGYP99GBNuJQ4p8cOz08KUQNO8oIphk,21737
|
|
269
|
+
xinference/thirdparty/f5_tts/model/trainer.py,sha256=PCV3_Q3ZunpAdkooybzOC1MW4XKLTf_EQC9dKBkQ0k4,16312
|
|
270
|
+
xinference/thirdparty/f5_tts/model/utils.py,sha256=8-dKoDRiK135BNf_ziaC8HLspjgiR-hXYBrW2iq3jvI,6466
|
|
271
|
+
xinference/thirdparty/f5_tts/model/backbones/README.md,sha256=-PRyZ0YTZ2a9AjorY6d70mqL4FGgv1XdE4qSPhUHQDg,701
|
|
272
|
+
xinference/thirdparty/f5_tts/model/backbones/dit.py,sha256=xC1jkPO6bQ2768B-UBuJRWiR-iQogu7cINXm-d3utEo,5240
|
|
273
|
+
xinference/thirdparty/f5_tts/model/backbones/mmdit.py,sha256=o4iKTCcmmw_0mtKPqrEEjVWxij4xgRN6JCtTcXjre08,4208
|
|
274
|
+
xinference/thirdparty/f5_tts/model/backbones/unett.py,sha256=hS5j_Nc1N2q7VXLfcz-z185kr40zd8STCgpNAgkL5Ho,6956
|
|
275
|
+
xinference/thirdparty/f5_tts/scripts/count_max_epoch.py,sha256=-XaRu5xK5MAlCRapuA4BlO4ukE9Mymw4ttOcNWR1ZTk,1099
|
|
276
|
+
xinference/thirdparty/f5_tts/scripts/count_params_gflops.py,sha256=DjZzIilUXXR-X43MRr45q8u7CK88Bps1CezHoZWxIfY,1358
|
|
277
|
+
xinference/thirdparty/f5_tts/train/README.md,sha256=SW5eJOHaUSmtCGwfv_pgFPOgqzvGp7mvRZHeBDyOr94,2352
|
|
278
|
+
xinference/thirdparty/f5_tts/train/finetune_cli.py,sha256=C0SV3gRhWjrWn_K5s8YtQW7ntsj-BCp3w9p0pIgYj8o,6646
|
|
279
|
+
xinference/thirdparty/f5_tts/train/finetune_gradio.py,sha256=zeYpvRFO-JK3c_aNTzOQZyV9XwJYGjw3DxfV4ib_ZhA,65801
|
|
280
|
+
xinference/thirdparty/f5_tts/train/train.py,sha256=tmO4AfMDS641s2DIFSZPdTBg3KxRU3P1B8wvSF_NFUs,2577
|
|
281
|
+
xinference/thirdparty/f5_tts/train/datasets/prepare_csv_wavs.py,sha256=26tkuj8Fzjsy_-NGBY4N1K6Grq35n0SQJSf-4G_fA_s,5301
|
|
282
|
+
xinference/thirdparty/f5_tts/train/datasets/prepare_emilia.py,sha256=UKMIPzc3ZG0SpZe4cyeQKdM2qp0JI5eB87X5mlfHumY,7414
|
|
283
|
+
xinference/thirdparty/f5_tts/train/datasets/prepare_libritts.py,sha256=d6H0_VtlEX2pXoW8VW98VLcaKYmq0dTT7-opVMGiN4s,3151
|
|
284
|
+
xinference/thirdparty/f5_tts/train/datasets/prepare_ljspeech.py,sha256=OVL5AlqiNsbzuw-YzR6Os01cyebvqbfZirlgC4Au0a0,2246
|
|
285
|
+
xinference/thirdparty/f5_tts/train/datasets/prepare_wenetspeech4tts.py,sha256=4MSCHkjjlKjao_2dAK2H9bU98fCVd26MoVZ3KBMy3CM,4579
|
|
214
286
|
xinference/thirdparty/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
215
287
|
xinference/thirdparty/fish_speech/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
216
|
-
xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=
|
|
288
|
+
xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=UpWitG4B0Ss5ypESvMmLUXm2trBHX23f30MReF9mOfY,8066
|
|
217
289
|
xinference/thirdparty/fish_speech/fish_speech/scheduler.py,sha256=xpstAfXlsdx-N_hDcJJYFKiLb_cW5mTdXACyuODrcIg,1101
|
|
218
|
-
xinference/thirdparty/fish_speech/fish_speech/
|
|
290
|
+
xinference/thirdparty/fish_speech/fish_speech/tokenizer.py,sha256=EfI8cLdmC8IvZAG2aIn62f6lipcnDqXLHt9W-sjLOcQ,4686
|
|
291
|
+
xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=MtVaLPtMUEmLTsypsO3CAag17PHuiyMpc9WOR3vsnkA,4470
|
|
219
292
|
xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py,sha256=LYHvlvb9463UMJ3stVzBilVpLtdiLCteuzMIB5ypHS0,70
|
|
220
293
|
xinference/thirdparty/fish_speech/fish_speech/callbacks/grad_norm.py,sha256=pzuUxUnXWAa9U6XKcvQpnGoUZhMmFQKimSqYH-WajIQ,3436
|
|
221
294
|
xinference/thirdparty/fish_speech/fish_speech/configs/base.yaml,sha256=7_yXj9Y9SNhI7wiQeFvoLArtp9gqJCF-f43JGQ-TwCI,2544
|
|
@@ -240,15 +313,15 @@ xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json,sha256=mNI1
|
|
|
240
313
|
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json,sha256=UXKUCm4i8DpRvNehWEZV5W6dTw36QcjzddvJpdUdAaM,7753
|
|
241
314
|
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
242
315
|
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lit_module.py,sha256=Brrgxy6tHNAwclfu04XDNLKzzGU_FamBL5D8XWPj99A,6567
|
|
243
|
-
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=
|
|
316
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=dkw6XUWxvfBpDhEIjnt15VsBQGh0vloeWCu2ApnZqKo,29681
|
|
244
317
|
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lora.py,sha256=KHbtG1BGrFMtdoMtHXPWb3OTez8HtHEiuAaMEFOrNYI,2923
|
|
245
318
|
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
246
319
|
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/utils.py,sha256=irmTsK36GlLccFI5CjWahKO7NG6LZQrd5FEh_7qy4Xs,2533
|
|
247
320
|
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py,sha256=pKiKQ8irkt5FqwodBiwD3QkzMGxGvTTC6PFKKProOuI,19985
|
|
248
321
|
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py,sha256=GxRY7jSb5vPjDJuofkHhQLWEmkZVCJQ0B-iNokW6vkw,3448
|
|
249
322
|
xinference/thirdparty/fish_speech/fish_speech/text/__init__.py,sha256=3lYfSw4Xb3Qh0p8FsjX4ToOJNsm7ZxN3XPh_xFKXoUQ,102
|
|
250
|
-
xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=
|
|
251
|
-
xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=
|
|
323
|
+
xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=YewVVv_LremHj0wKuHSTIsfiE9I6HR4QAfZNmpye6f0,832
|
|
324
|
+
xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=lQ7tT28B2go8B8HSG8fYm_ONmvN7SGax7nRxB8qpg_s,3832
|
|
252
325
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/.gitignore,sha256=04gWbPAivQzTV7w2eOgkk3xcMZLuti1pkLwy_mW7k6M,1274
|
|
253
326
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/README.md,sha256=9tZNujydXU0DlgpnsJTfMI880mgh41l6UvqqQQKbcPk,890
|
|
254
327
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -274,26 +347,28 @@ xinference/thirdparty/fish_speech/fish_speech/utils/rich_utils.py,sha256=RHRUrq2
|
|
|
274
347
|
xinference/thirdparty/fish_speech/fish_speech/utils/spectrogram.py,sha256=R9dGOEJnsF03T-9BBFLwMHikgp1VYTe7Cm76doKj76s,3239
|
|
275
348
|
xinference/thirdparty/fish_speech/fish_speech/utils/utils.py,sha256=3w0drAiLo5bVnOrXH8ezsIAaAkSP3cqwgpMcr7kERFQ,4283
|
|
276
349
|
xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py,sha256=33vk7md7-T9rIwdOarQ1n5XKu_FqwZqeo6D_WGObjH4,3974
|
|
277
|
-
xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=
|
|
350
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=naidGvMXg5hU5J-DdtR6dBOflXcr7FG0BxichP7z-No,46891
|
|
278
351
|
xinference/thirdparty/fish_speech/fish_speech/webui/css/style.css,sha256=CLXPzePjropDNCfg2jptIwJRMIWPuc5jfd2aLGadMD0,2617
|
|
279
352
|
xinference/thirdparty/fish_speech/fish_speech/webui/html/footer.html,sha256=ofq4m93dF0Z_lXn2J6nLBwXwdugBOPIzjzFGBbr1C58,348
|
|
280
353
|
xinference/thirdparty/fish_speech/fish_speech/webui/js/animate.js,sha256=AG2umxvH9ly6ZxJDxV4sfz1A9Q3_unA7LnkKv05X-i4,2690
|
|
281
|
-
xinference/thirdparty/fish_speech/tools/
|
|
282
|
-
xinference/thirdparty/fish_speech/tools/
|
|
283
|
-
xinference/thirdparty/fish_speech/tools/download_models.py,sha256=
|
|
354
|
+
xinference/thirdparty/fish_speech/tools/api_client.py,sha256=-3cKLJqgDzlm-syIqb8ffCe2UcPNk9jmn7U0zAky818,6666
|
|
355
|
+
xinference/thirdparty/fish_speech/tools/api_server.py,sha256=rHA1Np-M5zkhklkerwHF0-ubiE9__xNLz9_WRpEQbZU,3193
|
|
356
|
+
xinference/thirdparty/fish_speech/tools/download_models.py,sha256=yVTkHPe5TkA1Ol59wlXD13ON19Auh986go_q1m1-rfk,1357
|
|
284
357
|
xinference/thirdparty/fish_speech/tools/e2e_webui.py,sha256=JrT7ubhodvMICngsZkDDJ0Z0bCB4G1cpPBtQFc63Nhw,8908
|
|
285
358
|
xinference/thirdparty/fish_speech/tools/extract_model.py,sha256=42b_U4rmqX3OUOIqWQQczsEktt79aQSOJ4E55B1bHl8,536
|
|
286
359
|
xinference/thirdparty/fish_speech/tools/file.py,sha256=ZSWIpGIOuGbQ5gWmfS9LZWLLidc9gZ9p95QzAZkJneI,3047
|
|
287
|
-
xinference/thirdparty/fish_speech/tools/fish_e2e.py,sha256=
|
|
288
|
-
xinference/thirdparty/fish_speech/tools/
|
|
289
|
-
xinference/thirdparty/fish_speech/tools/
|
|
290
|
-
xinference/thirdparty/fish_speech/tools/schema.py,sha256=gh43aA3-kG2bZV-8UJhGqY8d-q1aHZIZy__fBtw0FLk,5257
|
|
360
|
+
xinference/thirdparty/fish_speech/tools/fish_e2e.py,sha256=YQ3XfvJCI7dYO8cMfkmWeDf2ZW2FE-FQ5LsRnTQyDbI,9633
|
|
361
|
+
xinference/thirdparty/fish_speech/tools/run_webui.py,sha256=hWAztS4rPG7tV8NGXY8furs7y4DpJoG3vZoGr5H0csY,3273
|
|
362
|
+
xinference/thirdparty/fish_speech/tools/schema.py,sha256=B8o1McuIqwd5GLN8ka3Gu4AFxJG6IQ0ChfOSIBw77NA,4647
|
|
291
363
|
xinference/thirdparty/fish_speech/tools/smart_pad.py,sha256=O6fCgrSouBX6prkrj6a03DPI-5loiS_oKaidtIXxuFg,1626
|
|
292
|
-
xinference/thirdparty/fish_speech/tools/webui.py,sha256=4E9xlCyZlwTFOkGNrh7mNjg5mwtPHNwP7WF-_GwlyAo,18048
|
|
293
364
|
xinference/thirdparty/fish_speech/tools/whisper_asr.py,sha256=uG6NsSnH6oLEkCRM-Tb8o6L7OKDZ1eSVd8obEoq7jVc,4893
|
|
365
|
+
xinference/thirdparty/fish_speech/tools/inference_engine/__init__.py,sha256=cyhHYIwjj5DqCacvgzHypnVoF-CU_f5nuA8Ah5VHSKs,6291
|
|
366
|
+
xinference/thirdparty/fish_speech/tools/inference_engine/reference_loader.py,sha256=a-GjyCDyq4Mb8DXu_8DrxUcjYTZBozca0MP7wtdpiq0,4186
|
|
367
|
+
xinference/thirdparty/fish_speech/tools/inference_engine/utils.py,sha256=mNMegqyStPPrikXLYn6y0xJWniGBrF2Un4gOmyQo9to,1006
|
|
368
|
+
xinference/thirdparty/fish_speech/tools/inference_engine/vq_manager.py,sha256=4Od83XlT3Yjs-Hwh9rc6N2eDq9Gb5GEM0vWZbjwJ_us,2099
|
|
294
369
|
xinference/thirdparty/fish_speech/tools/llama/build_dataset.py,sha256=rOVoiXPpKqwT2C2cDhTgw8TMNH5Tq0QzejPd4Y387zY,4898
|
|
295
|
-
xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py,sha256=
|
|
296
|
-
xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=
|
|
370
|
+
xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py,sha256=mFFPR8F3ALc-nj9q8Kp8nl-uqGwJ0VWOV7bYbjqIoys,4619
|
|
371
|
+
xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=p_GPFRL4g7NXjdN2clxWFz02srUDx19PzR_9O8jhrc4,34651
|
|
297
372
|
xinference/thirdparty/fish_speech/tools/llama/merge_lora.py,sha256=VS-ZYzar8-MKj4PCzEoRjIin7GISVk6accZJXvrZHWQ,3273
|
|
298
373
|
xinference/thirdparty/fish_speech/tools/llama/quantize.py,sha256=meAgs8IXCDjUz6R8ihvFMLNqo7MDJnSDi0sE-DAUJA0,16602
|
|
299
374
|
xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py,sha256=MuFdqOsU2QHq8cSz7pa4PAsjZyrJrghCZQR2SrpplTQ,2025
|
|
@@ -302,9 +377,22 @@ xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py,sha256=47DEQpj8HB
|
|
|
302
377
|
xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py,sha256=abg8hFiVcWwhJYT_E8De-vYRUQOs1u0Zxxgz1nj1790,22739
|
|
303
378
|
xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py,sha256=4Tau7ImBXLF-Atgnzb_-volKCb5nas56iBnLVlucL9k,10182
|
|
304
379
|
xinference/thirdparty/fish_speech/tools/sensevoice/vad_utils.py,sha256=QZhdJN6PiJUWui_8fdt_-BA32OKVfvjqV8roavLna20,2214
|
|
380
|
+
xinference/thirdparty/fish_speech/tools/server/api_utils.py,sha256=0TZLCteNhH-CK1Z3V9hzsBekrFuqvUlC2ALOa3vJMvk,2419
|
|
381
|
+
xinference/thirdparty/fish_speech/tools/server/exception_handler.py,sha256=CUcaxCbpJtnIJOP2fDDw4ohLF6LlAkkvFjIDXIB1wXE,729
|
|
382
|
+
xinference/thirdparty/fish_speech/tools/server/inference.py,sha256=vfiDZUuw-Qwl5rocw_0Lfla8bh6ByMzjfg_3Oa22blQ,1334
|
|
383
|
+
xinference/thirdparty/fish_speech/tools/server/model_manager.py,sha256=fGqpX8bpV_zMWK27xCTuntyyOvUdv_HUfxnwWKKUCNE,3769
|
|
384
|
+
xinference/thirdparty/fish_speech/tools/server/model_utils.py,sha256=UOJ4elAEECtLZ6xV4OfPg7w35_VJcEE3Xbv4h5zy7vs,3947
|
|
385
|
+
xinference/thirdparty/fish_speech/tools/server/views.py,sha256=n0xuA4YzpKEDnaHQyhRAVTPnvi0dSueNn2_xB-ZHxn4,7709
|
|
386
|
+
xinference/thirdparty/fish_speech/tools/server/agent/__init__.py,sha256=SFo8uPXSY4H4ieaZ7VXbY4g0FNoxETSswSM-NZdj-HE,1946
|
|
387
|
+
xinference/thirdparty/fish_speech/tools/server/agent/generate.py,sha256=uOmgs9EvyL_VX9bhsHw1bSvNs-TEcDuEnrBo3rDYLoc,3516
|
|
388
|
+
xinference/thirdparty/fish_speech/tools/server/agent/generation_utils.py,sha256=IagvrWRjhSLHSMDI1Bg-dbjpSdebpGZwA1NkRyaMark,3678
|
|
389
|
+
xinference/thirdparty/fish_speech/tools/server/agent/pre_generation_utils.py,sha256=Of2SFuaxinnVeFmiM27cHzcVwcR4f52SXDeRLFC8jAY,2614
|
|
305
390
|
xinference/thirdparty/fish_speech/tools/vqgan/create_train_split.py,sha256=aWQeRSJ_KRPp72qtXoFvxJkkP6P-73VKIew2iIeETos,2996
|
|
306
391
|
xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py,sha256=DNXinP96_ZQX2G847E0eHqfOe1tcxF7vMBtjGlHBD9E,6845
|
|
307
392
|
xinference/thirdparty/fish_speech/tools/vqgan/inference.py,sha256=NL53U8qZ4IkvUssv83ltP1c1-zW7QWvhxZcDTR7ZiOE,3824
|
|
393
|
+
xinference/thirdparty/fish_speech/tools/webui/__init__.py,sha256=lqYBevPJ1c9fXRuVTqcRBVf0800SyfCEy0bSD9bw6mE,6867
|
|
394
|
+
xinference/thirdparty/fish_speech/tools/webui/inference.py,sha256=Rh-6T0fKKOZCo_hn7mQwLiUYK8KrpeeVU8xg4Eqd1no,2155
|
|
395
|
+
xinference/thirdparty/fish_speech/tools/webui/variables.py,sha256=9XiZPmdSeOa6BQfjPTuGWfwhPt1HbN9OEP8-8aldihY,601
|
|
308
396
|
xinference/thirdparty/internvl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
309
397
|
xinference/thirdparty/internvl/conversation.py,sha256=2wLSnfxyLItQaLd-N5xoybBPKyZadXkVntPuMV5iyGo,15040
|
|
310
398
|
xinference/thirdparty/llava/__init__.py,sha256=UlCNtyBVX645CB6S6LfyYkTfQVO18_a8e9SmR7cHExA,41
|
|
@@ -360,10 +448,82 @@ xinference/thirdparty/matcha/utils/logging_utils.py,sha256=glOI_JG8_YBKHWwD5RRKK
|
|
|
360
448
|
xinference/thirdparty/matcha/utils/model.py,sha256=UViKHaV89_IeaKJFww1xHV_RTXqv0YvfQWqwOtnzQ-I,2935
|
|
361
449
|
xinference/thirdparty/matcha/utils/pylogger.py,sha256=YbC8Ym5HZrJcDBIsQO6jSnuyY5CLZQR13E_oAS9SYZQ,720
|
|
362
450
|
xinference/thirdparty/matcha/utils/rich_utils.py,sha256=Oj5jrkz5s1b3RJL6m_8EXj85LY079FWClMIzf_Gwvcc,3279
|
|
363
|
-
xinference/thirdparty/matcha/utils/utils.py,sha256=
|
|
451
|
+
xinference/thirdparty/matcha/utils/utils.py,sha256=u5u7cDnY4SPv1-Citj6A-J34lfMvcrwaoZxWuKiHCiY,8459
|
|
364
452
|
xinference/thirdparty/matcha/utils/monotonic_align/__init__.py,sha256=_s_INV7vL_N9mhYtZADAk11CsSGP8kykn0fEyyM73ts,646
|
|
365
453
|
xinference/thirdparty/matcha/utils/monotonic_align/core.pyx,sha256=t2jJamslaDGkFZnWhdUQ0qs4T4gjntMOAXSPMtZaq0w,1236
|
|
366
454
|
xinference/thirdparty/matcha/utils/monotonic_align/setup.py,sha256=bf0d0cvGRaACC22qq0sqgZEBBhz4qzDlMqBxOyTKC2g,207
|
|
455
|
+
xinference/thirdparty/melo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
456
|
+
xinference/thirdparty/melo/api.py,sha256=lC93OiqQrOABEI2ZbmReSPM4xRNzPw9mZ8YHDgTfenA,5108
|
|
457
|
+
xinference/thirdparty/melo/app.py,sha256=vlR_k9cmTjZ6E71qKomAxrYK8xJ4lZr-nqekX1oFiIw,3167
|
|
458
|
+
xinference/thirdparty/melo/attentions.py,sha256=UmG3PklFZR6fcTM3X0-DwVMqMPgif2JJxwBtaWpzc1M,15936
|
|
459
|
+
xinference/thirdparty/melo/commons.py,sha256=BGlD0mVjXD2cmRlVYucDVkomMAmBp9tbh9TNP9GArg0,4956
|
|
460
|
+
xinference/thirdparty/melo/data_utils.py,sha256=I5mFqkRTys9VRN9And9xvaC04alvTAT0anwf9mnu6-c,14829
|
|
461
|
+
xinference/thirdparty/melo/download_utils.py,sha256=Bm3a0on7P0eyvuz1zwA7GItHLI48jlLJAgg5bHNMtnk,3440
|
|
462
|
+
xinference/thirdparty/melo/infer.py,sha256=bVr2sgO_moxUuXz8XV9qusQnwFuB0o9dN3Ql9saxjTs,998
|
|
463
|
+
xinference/thirdparty/melo/init_downloads.py,sha256=J-kfI5O0qfM_CVEKRFEKfo3wKBpjekPFOfl4FN_EEI8,393
|
|
464
|
+
xinference/thirdparty/melo/losses.py,sha256=qGWb5DU_Cxl0DtFGN3Lx7hVELOlQ8nIIqizFlQRXtGA,1386
|
|
465
|
+
xinference/thirdparty/melo/main.py,sha256=L1uFgkaKeUMy-wZoYAMJwmhXCklyYh3DlV2-jePpU_M,1850
|
|
466
|
+
xinference/thirdparty/melo/mel_processing.py,sha256=BLuxjFiJIcZDnIm_t71CBg__F7Oko1v61tZfJXxJQ5E,5868
|
|
467
|
+
xinference/thirdparty/melo/models.py,sha256=-W7vUoRSJLV5flQAgBOltqX6-tIDVxPcUYGl24v4vvQ,34027
|
|
468
|
+
xinference/thirdparty/melo/modules.py,sha256=3oC67n3I2J1iHFQbiZqEGT30uz75X15tB2zDe2uxC_Y,18975
|
|
469
|
+
xinference/thirdparty/melo/preprocess_text.py,sha256=JyI-nIagq_U9LWiQGHJgvE_jzN9r0y-8dePI0grhqfE,4423
|
|
470
|
+
xinference/thirdparty/melo/split_utils.py,sha256=-Fz8s5VZRrNyjui-fS7HlNMFS0ilOVruqIb5mPhr1i4,6777
|
|
471
|
+
xinference/thirdparty/melo/train.py,sha256=BOn3j4vWnePADu-GlLg6LltNXifgXtIOG_lW-uRq-6Q,22501
|
|
472
|
+
xinference/thirdparty/melo/train.sh,sha256=YRyc5i0wjZJVCnYViqzX0zgt6rB1jBGb80nSFA9bhy8,391
|
|
473
|
+
xinference/thirdparty/melo/transforms.py,sha256=5nmJiaDXXL7EXn4k42l-HEiGs2ZMaoCkUmRe8dKpP5w,7253
|
|
474
|
+
xinference/thirdparty/melo/utils.py,sha256=-YLTekozKAMBzG-BGiLRzTiEBGgAjKj-EKZfoHmrJyU,13223
|
|
475
|
+
xinference/thirdparty/melo/configs/config.json,sha256=DlLLcV_BUQcwwouDDKSmwaBuaTZSExmDdPMk5IVmCzI,1681
|
|
476
|
+
xinference/thirdparty/melo/data/example/metadata.list,sha256=jeD_ZHchMWQPazAM9LjLkVAzsfnqGsJGx4rbWJnRG44,2860
|
|
477
|
+
xinference/thirdparty/melo/monotonic_align/__init__.py,sha256=vNZaLNmieXSwlboYfxYJZsdviumeuWf8Nl8PEpR3GLw,563
|
|
478
|
+
xinference/thirdparty/melo/monotonic_align/core.py,sha256=yMStKbqZR5FkpRo2GR68I3LUaG2OhLRaDY4Ne4mw8uU,1270
|
|
479
|
+
xinference/thirdparty/melo/text/__init__.py,sha256=7KjBd2TE3NV9OnEYV3XRxuTVNonWqaVHCOxjV3oqyLo,1477
|
|
480
|
+
xinference/thirdparty/melo/text/chinese.py,sha256=upLyLTy3KiKxOqkqhuq-ayIFgrnACnFQLgVu8ACGDVE,5823
|
|
481
|
+
xinference/thirdparty/melo/text/chinese_bert.py,sha256=wLNu3ZTlSycdlx2rVZf4-wqsA9HmNNuh5_8wRxRRjbk,2521
|
|
482
|
+
xinference/thirdparty/melo/text/chinese_mix.py,sha256=I_j_NZbaEW3Au7KsrYIzlEmZR0KhSp-aSGyUuZzGCAI,8571
|
|
483
|
+
xinference/thirdparty/melo/text/cleaner.py,sha256=aHHcw_qchjiSU-9t_JiAUKyXhIbb_rCh1qqumLaOxSo,1245
|
|
484
|
+
xinference/thirdparty/melo/text/cleaner_multiling.py,sha256=pEvgY06RXHFrjAZ86tzq_xolMdLmtUE-0MgLWNUBOvo,2639
|
|
485
|
+
xinference/thirdparty/melo/text/cmudict.rep,sha256=0Se1zouOaVcycB6O_eBLmw-hGZEhix-50hvQySZGNqo,3969309
|
|
486
|
+
xinference/thirdparty/melo/text/cmudict_cache.pickle,sha256=ubIbIDJUcZNLqS8uSll2mJ59kgyqMueihurLAn0ZeUk,6212655
|
|
487
|
+
xinference/thirdparty/melo/text/english.py,sha256=KFJ_V0URv8E_4fL2u7W_5AcsBuHH6baVmBOK74G5kFs,6496
|
|
488
|
+
xinference/thirdparty/melo/text/english_bert.py,sha256=CYfEzmX_mv9MGyOyX1kDpYDkyQez0YFOLpfbbcsCCAU,1194
|
|
489
|
+
xinference/thirdparty/melo/text/french.py,sha256=JAc-t5k8Ql651VvR5ZQChSM1R8pbDga_EYTIIOBlCl4,2900
|
|
490
|
+
xinference/thirdparty/melo/text/french_bert.py,sha256=c22JhZpyVw5tn6nvFuTsNnKCcmkHfRxQJsVAU0GJ96c,1215
|
|
491
|
+
xinference/thirdparty/melo/text/japanese.py,sha256=I_oKyeEHcgEpeKt0eXDRQ6awAu910AFMYeraehaiV1g,15323
|
|
492
|
+
xinference/thirdparty/melo/text/japanese_bert.py,sha256=kJXc8sByXsj5btFnmDsH6TqJfJA0-48VRLSCM36xKs8,1510
|
|
493
|
+
xinference/thirdparty/melo/text/ko_dictionary.py,sha256=5R1UTgdN5TFN-fQJyUjjlkiJHC1gl9oX8vVC7B3g_j4,922
|
|
494
|
+
xinference/thirdparty/melo/text/korean.py,sha256=VMBehFxnb1X7jpPtd1vjWBw9wme0JcQgmlWZ-xt7iJA,6260
|
|
495
|
+
xinference/thirdparty/melo/text/opencpop-strict.txt,sha256=1mu7E4Co6_F9es5b9LRZ83KKRp7qKq6uKus5abiCI_8,4084
|
|
496
|
+
xinference/thirdparty/melo/text/spanish.py,sha256=ESLsUQtC9HbZ7ZPixZ95tU6qbvegGJzj1wl6dRt6-cM,3175
|
|
497
|
+
xinference/thirdparty/melo/text/spanish_bert.py,sha256=r770FBdI8xQRbPDxm3qepi2VAikBnRXboXVaVOwsLyc,1216
|
|
498
|
+
xinference/thirdparty/melo/text/symbols.py,sha256=TB84OffiCbXaRdrrJp-VWzAtDUwN9tv5vojVNLJc7qI,4329
|
|
499
|
+
xinference/thirdparty/melo/text/tone_sandhi.py,sha256=Iwup_-E9rcX4DBF-oyNPiFEjgKfUUGmgiGHiT8KjOqk,23396
|
|
500
|
+
xinference/thirdparty/melo/text/english_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
501
|
+
xinference/thirdparty/melo/text/english_utils/abbreviations.py,sha256=sIrQB6kxEczFtTPhs4z6mk7hXp9RfEZeuAkDscjfCIw,948
|
|
502
|
+
xinference/thirdparty/melo/text/english_utils/number_norm.py,sha256=yPxApFzFKY8tpboJn_uKthWo56_vjpBjip5nLkQTxo4,2810
|
|
503
|
+
xinference/thirdparty/melo/text/english_utils/time_norm.py,sha256=QJzLcWZBhKpAgsS7bCJv3d0-Q-TmYKxPfoSBpylVMl4,1173
|
|
504
|
+
xinference/thirdparty/melo/text/es_phonemizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
505
|
+
xinference/thirdparty/melo/text/es_phonemizer/base.py,sha256=uwwlNgaMTAj20_VbyY8UdsQR_BKiasGXW6Xkqc-CY5Y,4339
|
|
506
|
+
xinference/thirdparty/melo/text/es_phonemizer/cleaner.py,sha256=Kr56gOgv7A8xhTZqc_0RHUung37-5quQE-daJOMXiSU,2598
|
|
507
|
+
xinference/thirdparty/melo/text/es_phonemizer/es_symbols.json,sha256=er0uKP56jFm5LtZH4Ysfr_Gd9g4pnWHprm8kR35Q4nw,1180
|
|
508
|
+
xinference/thirdparty/melo/text/es_phonemizer/es_symbols.txt,sha256=-EW-b2imrvw-R5BJMXzWsXIEf7c2bWIKP1Zg9-4msB8,123
|
|
509
|
+
xinference/thirdparty/melo/text/es_phonemizer/es_symbols_v2.json,sha256=rG4Ce3vfZU97Uvdka-CsOhL8o3l9SxMqGhw3_SXbEGA,1243
|
|
510
|
+
xinference/thirdparty/melo/text/es_phonemizer/es_to_ipa.py,sha256=GsCNJ_Y6CtlvG5_RKGToO_IIqqiUtEt5oHm4NA1Lc9I,396
|
|
511
|
+
xinference/thirdparty/melo/text/es_phonemizer/example_ipa.txt,sha256=VMjp6zCEuE-NBJpCvJOidKO_A6wUhnoIviqFQ9K4XxY,44840
|
|
512
|
+
xinference/thirdparty/melo/text/es_phonemizer/gruut_wrapper.py,sha256=ADw8Lla-w2YNhYb6EB1KRxOgMpWcoF35KgpCR9SblZA,7010
|
|
513
|
+
xinference/thirdparty/melo/text/es_phonemizer/punctuation.py,sha256=VzoW7CcVyVfW24p5gNqMazRMICza6x1-vdmHzsQOqZA,5538
|
|
514
|
+
xinference/thirdparty/melo/text/es_phonemizer/spanish_symbols.txt,sha256=gZyyBUKSzo8_Ol8ThlYhai3XplxJYMyR5xeyeeymrO8,54
|
|
515
|
+
xinference/thirdparty/melo/text/es_phonemizer/test.ipynb,sha256=FpJ1JbPUh2M-peJg3gdWhUrrM83MkcWri7sfW3-75zc,5605
|
|
516
|
+
xinference/thirdparty/melo/text/fr_phonemizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
517
|
+
xinference/thirdparty/melo/text/fr_phonemizer/base.py,sha256=uwwlNgaMTAj20_VbyY8UdsQR_BKiasGXW6Xkqc-CY5Y,4339
|
|
518
|
+
xinference/thirdparty/melo/text/fr_phonemizer/cleaner.py,sha256=nNcKRzr8ANufppC9cpVaO6SJlfwcZTfJvV7hB8WSvNY,2926
|
|
519
|
+
xinference/thirdparty/melo/text/fr_phonemizer/en_symbols.json,sha256=4bD57IMvN0hOQYGwtE3Q0UzyCzQLA94mYo7Zoi9--y0,853
|
|
520
|
+
xinference/thirdparty/melo/text/fr_phonemizer/example_ipa.txt,sha256=jPeFL2yvUURR8rw-heQ3poP7cl9FaNWHdkmw2b7QpL0,11784078
|
|
521
|
+
xinference/thirdparty/melo/text/fr_phonemizer/fr_symbols.json,sha256=T51pyvX-cSrbNyWMnjKaQWmJQ9iHMFrjMxpErjpF60o,1351
|
|
522
|
+
xinference/thirdparty/melo/text/fr_phonemizer/fr_to_ipa.py,sha256=BsTgk9v_4HnPzxlHdKawUUmMRXhjRap-Wo8GpWLY9Lc,742
|
|
523
|
+
xinference/thirdparty/melo/text/fr_phonemizer/french_abbreviations.py,sha256=BPZiAroBOk4SpYNb7AmzGyHHs1M-g2LRryC9M7mbno8,1368
|
|
524
|
+
xinference/thirdparty/melo/text/fr_phonemizer/french_symbols.txt,sha256=i2YVhikvyq5UXD3uhaTKf4Hlx4p63Xf_zNTEo5kQPC0,135
|
|
525
|
+
xinference/thirdparty/melo/text/fr_phonemizer/gruut_wrapper.py,sha256=Sz371tAJIhEA5yY_OfYeHakkkSvxNJhK7zTlFgcCZmE,7193
|
|
526
|
+
xinference/thirdparty/melo/text/fr_phonemizer/punctuation.py,sha256=x_XBBX7R4nkFUoHkPvhh5WGM8fXdSla1x53TpZMUYlw,5454
|
|
367
527
|
xinference/thirdparty/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
368
528
|
xinference/thirdparty/mlx/flux/__init__.py,sha256=zZr1fIAdvqgR4iF0aBUfYkRzDB7RZ0CqSl9E2qQv32A,331
|
|
369
529
|
xinference/thirdparty/mlx/flux/autoencoder.py,sha256=mPWdTwtM8bAZZcFDOLSI5wgdKp9waIJsnHjsIr-kljE,10797
|
|
@@ -408,18 +568,18 @@ xinference/thirdparty/whisper/normalizers/__init__.py,sha256=8Y_Nzkyu5_LoDkwBqwR
|
|
|
408
568
|
xinference/thirdparty/whisper/normalizers/basic.py,sha256=rVZ7Og4dA8zAw1_HRv1oMMNSkP5O12dOthzhV7o9OA0,1936
|
|
409
569
|
xinference/thirdparty/whisper/normalizers/english.json,sha256=Zgf5SL6YJNLhsvoiI82UwGxFr6TgXqDj1eHyvf_eJGU,56128
|
|
410
570
|
xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc3yhvWzWuMhQzRnp2dM6IQdA,20868
|
|
411
|
-
xinference/web/ui/package-lock.json,sha256=
|
|
412
|
-
xinference/web/ui/package.json,sha256=
|
|
413
|
-
xinference/web/ui/build/asset-manifest.json,sha256=
|
|
571
|
+
xinference/web/ui/package-lock.json,sha256=Q3gwsjjCFtDjVg5Yk7s4jfMAZ1wiyFfS_TJCw3ECB64,762407
|
|
572
|
+
xinference/web/ui/package.json,sha256=iitsROb4-TLzxbOftXJqUGpp38TuPhzfLKy5n9THQYg,2081
|
|
573
|
+
xinference/web/ui/build/asset-manifest.json,sha256=wE7KyJFtvvGjDGfDwZ8LVzyqUq5StxvnIxsXtCPBnvQ,453
|
|
414
574
|
xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
|
|
415
|
-
xinference/web/ui/build/index.html,sha256
|
|
416
|
-
xinference/web/ui/build/static/css/main.
|
|
417
|
-
xinference/web/ui/build/static/css/main.
|
|
418
|
-
xinference/web/ui/build/static/js/main.
|
|
419
|
-
xinference/web/ui/build/static/js/main.
|
|
420
|
-
xinference/web/ui/build/static/js/main.
|
|
575
|
+
xinference/web/ui/build/index.html,sha256=ud056vePJIPtod4V2ve46pMh5X8lQUlGYpFHUkG2vRM,650
|
|
576
|
+
xinference/web/ui/build/static/css/main.51a587ff.css,sha256=44-dxrjYALv45A8qiUuz2y24UwPdHgzR1gAe9TlRnRE,4459
|
|
577
|
+
xinference/web/ui/build/static/css/main.51a587ff.css.map,sha256=BY6rKb6-YaOHB4FkRjnYIUM8X4EsrhU87R1BMfdHuf8,8770
|
|
578
|
+
xinference/web/ui/build/static/js/main.b0936c54.js,sha256=143qaIeUlopMZEJBwbofLRYLeVvbjmaOCNO42axcsbQ,1210619
|
|
579
|
+
xinference/web/ui/build/static/js/main.b0936c54.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
|
|
580
|
+
xinference/web/ui/build/static/js/main.b0936c54.js.map,sha256=7osXfAyBqHN5nT5FOa9RBrILCVpS5F2Sh3lsCQX3KjY,5142136
|
|
421
581
|
xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
|
|
422
|
-
xinference/web/ui/node_modules/.package-lock.json,sha256=
|
|
582
|
+
xinference/web/ui/node_modules/.package-lock.json,sha256=2kL1sQ4ZuDQilki9DnRFFM8CxT13fyGl3chLK6i3DQY,760261
|
|
423
583
|
xinference/web/ui/node_modules/.cache/babel-loader/00012b59e7dc64a18400bdddb660faa295258241c0b9cd15c78cdba63b858ed8.json,sha256=FhiSQ9MQv6bT7TkLBlXXskoaG2HCKhsuTXXlkDV-pM4,668
|
|
424
584
|
xinference/web/ui/node_modules/.cache/babel-loader/000791038e4133db461021f1018491323a006cca7a53e09c2ac35032bc36d8b6.json,sha256=bke3WZZjPsJqMKVeHZ7xOSiE8x3fy4fe9nzvylycWOE,1374
|
|
425
585
|
xinference/web/ui/node_modules/.cache/babel-loader/000b04fb1614a5dc3f850972c0b1e78aaa2fd8745590f01cce053cbb9e272a5f.json,sha256=_lNTM16wSHJj0KrTh3ZZ6C6_tLbRNL8uRchyx4lPE2s,1529
|
|
@@ -594,6 +754,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/03b37117fb8957664d05cf8080a4c
|
|
|
594
754
|
xinference/web/ui/node_modules/.cache/babel-loader/03bb9963c17e9212a21795809193cba37dbdbd76ad3c8f236df017327a6e1873.json,sha256=9mn-yqG6Xu1PnuDQ_n8G0pSe6ce9nGPjpCOqlDN86K4,5175
|
|
595
755
|
xinference/web/ui/node_modules/.cache/babel-loader/03bddd46f25f6a1e717fe0f81460927b61deab13b0ed9738d2f76f538357039c.json,sha256=CeroAJhEzPTckfbcWVxVPcXAWX6k8w2Zq72tri7U-f4,1782
|
|
596
756
|
xinference/web/ui/node_modules/.cache/babel-loader/03c2d24a0724cc5d3e7b18b3768a078d44ca681508dd71672497728b98683fbf.json,sha256=qt6KhMCVtyOlETnB-WD4dfsIoCeP07-DMERGfNf4Wqo,1935
|
|
757
|
+
xinference/web/ui/node_modules/.cache/babel-loader/03c4052f1b91f6ba0c5389bdcf49c43319b4076c08e4b8585dab312538ae290a.json,sha256=Lk4sdEirGSy0YwQTTTG-2mIuQ6Ox09DrXkX-NOuJsLw,2387
|
|
597
758
|
xinference/web/ui/node_modules/.cache/babel-loader/03c95099afb8127d9806f7763c73f64861212b554f30027b06f44eea17493bdc.json,sha256=WOR9DwciUgYeossvt54ILxDS-pj3fzef-XbBsWiX8a0,469
|
|
598
759
|
xinference/web/ui/node_modules/.cache/babel-loader/03d2e2e3d405a999fc34b2dea3e26c676620c73bcfe2a502a57fcc3a9f416fb8.json,sha256=SXN3ienlMtDZ9wcGwZqz4Dofc2i_YR4RMhpFIMUJlHw,2012
|
|
599
760
|
xinference/web/ui/node_modules/.cache/babel-loader/03d66d25bd2e798c2c0cb70fbb7fd5cc78bbbf14c35029263a4ff3a40b4cc7de.json,sha256=viLDqIbt718o5tYxPyMo6OX5cbqnXDSGSNO8I864KAA,1263
|
|
@@ -793,7 +954,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/07c55a8b3b7609d603299d48aeaaf
|
|
|
793
954
|
xinference/web/ui/node_modules/.cache/babel-loader/07c84b7ef4afedfc55066f3deb323322ec68070e846681f734f15d351bed77ec.json,sha256=ma4PKpW20wlTMpIxJJ3TkJ8AjfsabSCpg1wPKaRlVug,1383
|
|
794
955
|
xinference/web/ui/node_modules/.cache/babel-loader/07c97a9116d07609b8931049e58048d6ed396b5b51b739959a36bfd9c5e48295.json,sha256=fLeqWBJED0r3MIPS5kipqpXfKdkWX13kbFYF-hQGkUE,1427
|
|
795
956
|
xinference/web/ui/node_modules/.cache/babel-loader/07cca16c63c8a19be05bfa2fd9e1085af558298281dd526f3020384f0852dc9f.json,sha256=tZJKrNmmXd8u9IdQPfu6f_5dgzfvzasescQN_Oy8Mfk,1612
|
|
796
|
-
xinference/web/ui/node_modules/.cache/babel-loader/07ce9e632e6aff24d7aa3ad8e48224433bbfeb0d633fca723453f1fcae0c9f1c.json,sha256=0FVxgfPli8Ad7Bh_FeCZ4Mdpeo-j5VoyE_WrKOzvk3o,27501
|
|
797
957
|
xinference/web/ui/node_modules/.cache/babel-loader/07d29c352e4c6a38fbc6354303cc50e8812666efb98625be20dd3adc1b719f20.json,sha256=587-RroRZWD7xdXsGzV-iyu7v7hcWegenZ5NzV_GAAc,1377
|
|
798
958
|
xinference/web/ui/node_modules/.cache/babel-loader/07d2ab7e44af68ff9249653994b216beb7ca3a88562a23aac8b103902e20037e.json,sha256=uSl09zZgLu64bQc5R12AcH5-wclqjDHPoK8Lob4QyNc,1206
|
|
799
959
|
xinference/web/ui/node_modules/.cache/babel-loader/07d6c9029695bc981e2b7705528fc3868b3db12faec8a37a08041bd454099666.json,sha256=iadF8kRld6nEjhYRTIVT4-zap_2jvuwlRg38YIXTDqk,1185
|
|
@@ -1247,7 +1407,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/1119ea0e999b538ac9d9889765ff9
|
|
|
1247
1407
|
xinference/web/ui/node_modules/.cache/babel-loader/11210c69381cdd96349816f5b2c8d1e41334242ae6b724bc8784b9c8ea12b556.json,sha256=mhqKmeNIMogzvgTWMUWVUzdQ3Qw-nq8rx_rHncXr35g,1964
|
|
1248
1408
|
xinference/web/ui/node_modules/.cache/babel-loader/112431dbb9f14db52f5ab5308c38aa3f0eefbaf887cf246e9202474756e0532b.json,sha256=MKkmDEvOh6xbc1bE1GQYxuBfTtGnaTjKFOsd8wxQ_KU,656
|
|
1249
1409
|
xinference/web/ui/node_modules/.cache/babel-loader/11267632d502cd9cc75b1587d72f6835161eab6514d2019d43bc86efd5deddbd.json,sha256=FQcjeX7V2P-ali-5X2BWXuf0fYCAFKHzGk433PVXzYg,1510
|
|
1250
|
-
xinference/web/ui/node_modules/.cache/babel-loader/1130403f9e46f5738a23b45ac59b57de8f360c908c713e2c0670c2cce9bd367a.json,sha256=9AsU97TJwQe85TOV4xIPnJsFL95pgq2q086AXeCRRUc,30182
|
|
1251
1410
|
xinference/web/ui/node_modules/.cache/babel-loader/1134b4906f251106c028b6b9b1b2199f1389c2326f561e9109833f333a312564.json,sha256=LIZxOlQrMP7g6CoQpXOS2zFgnanuPhDcAo9WJqH9rdo,1703
|
|
1252
1411
|
xinference/web/ui/node_modules/.cache/babel-loader/113e3bbee52260c318c3ec5b49640e85e7a09258c805500fb0ab9b8f4b8f9283.json,sha256=CrCMM2h3Zq6Tsqd7PeKXnOYQY3sc9TgbMoSgbWnk55A,1248
|
|
1253
1412
|
xinference/web/ui/node_modules/.cache/babel-loader/114165060c5e76683ba6e94ee08827d2ad33e45aa4132696b5efe584366dbbad.json,sha256=BDh2eUXYthOTqSziq4_SMLBufPhZixPsHyKtXAYfyY0,1677
|
|
@@ -1340,7 +1499,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/12ecd49fd7bb3daf76f2827e7a5e8
|
|
|
1340
1499
|
xinference/web/ui/node_modules/.cache/babel-loader/12efca6ed9ec73bf07c46375e62cbc63c302cb4c4ff10a06b1d0f99314f7b3aa.json,sha256=DJDWAbnYdNF_eJ4CORn7K2UAtrpOzcdq_RxxxSIBZUo,1193
|
|
1341
1500
|
xinference/web/ui/node_modules/.cache/babel-loader/12fd6ed6006d6b8b1390b68853450bcf7c7515550f5d7b3fa298f1004f5abb86.json,sha256=Z1WATGF-Kb3c7rbujoVbB9GlO0rSLgiQJmiXX5ICJDA,2332
|
|
1342
1501
|
xinference/web/ui/node_modules/.cache/babel-loader/1305de09f9b2e72d05ccd127b6b360906734ba72af438c4d80fe76cb79caf1ad.json,sha256=nQA4Mk128_21m-FI1qgUBy6zN-ju0sHUrtcjx0IVSQQ,1036
|
|
1343
|
-
xinference/web/ui/node_modules/.cache/babel-loader/131091b25d26b17cdca187d7542a21475c211138d900cf667682260e76ef9463.json,sha256=dssrBrEIYX2dNNgdZ3gOlWSw0S9bU0lLyK3--kOWec4,16108
|
|
1344
1502
|
xinference/web/ui/node_modules/.cache/babel-loader/13113a1b0164c18019d3b7e6d337941be991051580bc72c33e1710372800ae31.json,sha256=R86tKSXuwqO7iwMH9q3p0tLeloc5TTodF17NHJga_8I,1178
|
|
1345
1503
|
xinference/web/ui/node_modules/.cache/babel-loader/1312bc07b9de60154ab79ce8430d36189c84271278097d08648848b2efe16ffa.json,sha256=tzuIvmbOi7fihILQym0WdoSATXYbYQuxOkkY3jkuh-s,1151
|
|
1346
1504
|
xinference/web/ui/node_modules/.cache/babel-loader/13145be980fcaa8415d92a663724f8f586b8331fa7f6b6fc9d1d8a7f9ed8b324.json,sha256=GEL0c6cnrKdHD_xQOPt8gX8HVtB23K1fIzSKse41Lls,444
|
|
@@ -1553,6 +1711,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/177066b5e7d6a43e6498100dc3f95
|
|
|
1553
1711
|
xinference/web/ui/node_modules/.cache/babel-loader/177812add2b0d411f74ea69aad264bf2eed7f6aca3e6b37ca1a9ee1fcded3e64.json,sha256=ZjahUB6FyxcyKJFefpiLMMjI4N_IFwY45fpqPWBw7DU,1146
|
|
1554
1712
|
xinference/web/ui/node_modules/.cache/babel-loader/177c68cfc44df79a6c5b45bad71e1744b00c6afed5d86e78df96f66fa36f78ac.json,sha256=5oFZTuBA89K1UE-3mSU5xAd0BmpX-4XiUERo_RxL3Yo,1202
|
|
1555
1713
|
xinference/web/ui/node_modules/.cache/babel-loader/1782c466d9a2a1640a1f62a15cdbf26948fe4b3c7e0f4d50ae48ffcf555dd7e0.json,sha256=Lf67tdfoHxW2cYim851GrsDC1P9LDb6wZg9b-fmh_ww,1124
|
|
1714
|
+
xinference/web/ui/node_modules/.cache/babel-loader/1786b83003b8e9605a0f5f855a185d4d16e38fc893dfb326a2a9cca206b4240a.json,sha256=fCDYVXpK52KLnNanxUR0j2UftM0ytozgSleR2cKKlXA,8473
|
|
1556
1715
|
xinference/web/ui/node_modules/.cache/babel-loader/1787f7fb1b2c2d9bf10373b8c7a69ae885cd84a4b788ad7221b323a125d7f764.json,sha256=ro8sK4vPndrNPoYqe_vXGF77kdda-H5Cl479Mx7UvYM,2038
|
|
1557
1716
|
xinference/web/ui/node_modules/.cache/babel-loader/178f3766fef58d920686a364f7f5a7abc8a3f307e9de3dc78eb1b53446c9c561.json,sha256=y5x2Z9e5hegzRDhHv9RlTSMwxVoCfzm-l4lgiNBPU-E,2891
|
|
1558
1717
|
xinference/web/ui/node_modules/.cache/babel-loader/17916b50ec0ad13aded0a410bdef8fd215daac23bcb098e3dd789916a90a0ade.json,sha256=g0E8SIx2Mhyt8yF5zGqO-jPGuGw1w2JfeB1sxGLJi2Y,1478
|
|
@@ -1572,6 +1731,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/17c1cecb450f35b3d90a149be44ff
|
|
|
1572
1731
|
xinference/web/ui/node_modules/.cache/babel-loader/17c5bc7d30704bb451c7f3879030649121591b9e57963b0352de7593cdbb12e7.json,sha256=o14J_uI0XE_EyPFfCKBKkfZf6HHKL4XWzNW9KgkrPqw,1042
|
|
1573
1732
|
xinference/web/ui/node_modules/.cache/babel-loader/17c896d3553233ad481f0ab9752ea7179bdfa08fe7ed1bd41308f3298792a091.json,sha256=WnEyav0IBubKJn1eAo0A1XfLVUTXYQFTYcNZ3IQwyQM,1115
|
|
1574
1733
|
xinference/web/ui/node_modules/.cache/babel-loader/17c8e8a06dd2ef42503456b273b0ef2056cc742723e816b017993a2a208cfde4.json,sha256=E7KhmuvvACwLIggJlaowiTFH1hqTc1_FDLe5om2lrhk,974
|
|
1734
|
+
xinference/web/ui/node_modules/.cache/babel-loader/17cbc181dd674b9150b80c73ed6a82656de0082d857f6e5f66d9716129ac0b38.json,sha256=z1ORowA_6UODcAJXjSwZyuVp-rn54fuNuhbXQ9HqpX0,10177
|
|
1575
1735
|
xinference/web/ui/node_modules/.cache/babel-loader/17d873526e2a72dbf3ec7a14e0fbd843eb74b5f0a8d6408598e3a28affe955f7.json,sha256=asGAgf3JTyzfQYU_VGsWAl8HNTy8Rih9m8JwVOOtPPQ,1440
|
|
1576
1736
|
xinference/web/ui/node_modules/.cache/babel-loader/17d91e5285d87aa6895b6d8a99f5ef97d6d03139e154bc1079c27230a1f797ad.json,sha256=Wmpxzs7fugN3w_kZcXXwsREXlyRc6k_lVrZ1SBc8FXc,5957
|
|
1577
1737
|
xinference/web/ui/node_modules/.cache/babel-loader/17e105bd32d2030b914126dbb91507d53d20dd3c6766046d09d56de0268cadb2.json,sha256=IJGjevMqpoRdHHnfoDELE2uv6UtclBxlHydm79_h5O4,1391
|
|
@@ -1600,6 +1760,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/184f05dd485735635373312d62ec4
|
|
|
1600
1760
|
xinference/web/ui/node_modules/.cache/babel-loader/185516f39fa16b5b99044cd7c180a01b0ed81d08b68c0788e24d9cda88d0e562.json,sha256=lg0R3sQ2Ktk0sC35YXmubGqktG6XpCFmJtstBVQqCXA,61809
|
|
1601
1761
|
xinference/web/ui/node_modules/.cache/babel-loader/185ad3c6b393b8cacb29ae482cacf09bd2c8f06ecf36ab3734a3e318e0c486b1.json,sha256=vBkZMEqfTe-e8sSM32UzCtlydCA-veA5hmtdlH8fdko,3849
|
|
1602
1762
|
xinference/web/ui/node_modules/.cache/babel-loader/185c00602b71a4543f22396585e3a8d5a1207ae917347fbaba10d36ef89dc2a2.json,sha256=ctozJeM3VP2yuVIQRzcphsLh1ZI-h8eeJVf1Iyo1yes,1854
|
|
1763
|
+
xinference/web/ui/node_modules/.cache/babel-loader/185ceb8872d562e032b47e79df6a45670e06345b8ed70aad1a131e0476783c5c.json,sha256=8HgGowo2_0_BWzgeDri10IUp6AZ1TZ1dPtIfXV7gUbg,28373
|
|
1603
1764
|
xinference/web/ui/node_modules/.cache/babel-loader/185dd894710a91115025f69ef2813bff214a416a905d4a780aa07048c0f850cd.json,sha256=iImRFWV8ZDHprttSoZu9fkH6UiVd5xO_WUfnXmOxPTM,514
|
|
1604
1765
|
xinference/web/ui/node_modules/.cache/babel-loader/186b515e5d45fac7c5c2ec43bbe5d538f837a44e6204570c6db15359cb6e505f.json,sha256=gQu9-YDSwdmCVAX6vMyWfOpXi92jc17YZpBCKzM9ChY,394
|
|
1605
1766
|
xinference/web/ui/node_modules/.cache/babel-loader/186e94139e4db3ced8869e597c8738730c0d9f53ba2e66de9659bd3a6b833813.json,sha256=LBr4cG2AwJjx6zX1zCG1Gb0puVhVw9DP7-seFc42Cj8,18759
|
|
@@ -1933,7 +2094,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/1f0deae01578fdbb2e4fe3aa84d71
|
|
|
1933
2094
|
xinference/web/ui/node_modules/.cache/babel-loader/1f0eaeadc6f14f952892d8e1d1ef9c018858d5b8fc3169171528d5a421d94c12.json,sha256=YN1U6scIwDx38cKZianJJYaAa0UmNB3hWuobzRIj4aE,2551
|
|
1934
2095
|
xinference/web/ui/node_modules/.cache/babel-loader/1f19f87b31995a7e0941c73cb67ff5a76eb7c6f75b3fff4b1cc77ddff80cb26d.json,sha256=cU3GM8dIR0hRYSaK5t8X64i1Ad-UoJ7uyY_hhW-HUKE,3367
|
|
1935
2096
|
xinference/web/ui/node_modules/.cache/babel-loader/1f1d9117f2087b12fc62beafe6042f095acefb9140b73f649db9edef972a365f.json,sha256=HUbVhH5PLGtW9jix6rfUQOReZvJiDLJKsnpQj6XYuFY,1647
|
|
1936
|
-
xinference/web/ui/node_modules/.cache/babel-loader/1f269fb2a368363c1cb2237825f1dba093b6bdd8c44cc05954fd19ec2c1fff03.json,sha256=3DyToakwRRmXBb1hPfP7VmtRlSY68bKzlZwR0dRot5I,192892
|
|
1937
2097
|
xinference/web/ui/node_modules/.cache/babel-loader/1f294c4169dc2d8cdaca1cd27940f6e6941f70209b1cebe9d449e835d5c6eb28.json,sha256=bmNgAW76mPuhpbOK4TXdsLs9YFCc4gO2NejpUkz_7t0,1298
|
|
1938
2098
|
xinference/web/ui/node_modules/.cache/babel-loader/1f2c12505a685c1e3cc66d827d92c5d44a7c8edef321e52be506d7e2643ac111.json,sha256=Vv8gTYqfNsa-R6Fb7KfHiZJmwaENu98WBs4qHRTlz1Q,2208
|
|
1939
2099
|
xinference/web/ui/node_modules/.cache/babel-loader/1f2e0ad8c35274f80291deca01344eb29cf465b155a2dca6047d7a0b70b8dd96.json,sha256=znXFSAgBsWcQa-piTKWwtbtuumjmqObAhwMIntiqQRM,1578
|
|
@@ -2286,6 +2446,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/26a298a9e319e64cdc593e358c14b
|
|
|
2286
2446
|
xinference/web/ui/node_modules/.cache/babel-loader/26a484a67b28a62b99825bfa66f09999724e279b3e978bae0870cbf92692b33c.json,sha256=3uXBucJyVb-V5ioJbxOIPLN6Pjf8J8lO0J08Zci1K_o,1202
|
|
2287
2447
|
xinference/web/ui/node_modules/.cache/babel-loader/26a4ce4a8ce3a133019b8fcb13faf3ab5a6d34bff170e77a9c1817af05b6749f.json,sha256=3fxQBcIV0Vpkq7lvGhd_4iaslV_fJBU7E2kUf5Yz79E,1467
|
|
2288
2448
|
xinference/web/ui/node_modules/.cache/babel-loader/26a528c5bd1c58c3257da3e0b3cac23ae40235160cfd47d27a6dfeba125039d4.json,sha256=4QO3RiDdiRT5nXNMt-9THOp10lgQyMIqg5xsN0bq03U,2007
|
|
2449
|
+
xinference/web/ui/node_modules/.cache/babel-loader/26b8c9f34b0bed789b3a833767672e39302d1e0c09b4276f4d58d1df7b6bd93b.json,sha256=c-G-IkoqCUNIfcSE-yc1yK3Xa3Ay2PQ3SKXOKi_Cq8M,15360
|
|
2289
2450
|
xinference/web/ui/node_modules/.cache/babel-loader/26bcfb9013d9a5d716b2e3efd5709747a8c790e8a782d820a5edb859e9a13236.json,sha256=MTnTRdGKI3hExeT3lR6bTeuBSIDps2ifEe8sv-mxkQg,1196
|
|
2290
2451
|
xinference/web/ui/node_modules/.cache/babel-loader/26be6514a86c28efeb47b36f5d525d86ed61e57702e0911e0f6df0202a95023e.json,sha256=P42RcoVNddYWdrKKK3gb7Cti9klB9sgyKGl0PYUTinY,1685
|
|
2291
2452
|
xinference/web/ui/node_modules/.cache/babel-loader/26c02803ad20abd403d055b24c9d7a53a701f03cc71b15f0fcc09cd8b3b67f18.json,sha256=oCEGHJHXgJCZ8pNyzjoAZjW36bZ4In7ACIOh1b5PNEY,1970
|
|
@@ -2483,6 +2644,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/2b35ecfe91a22af15d2d011b5cd75
|
|
|
2483
2644
|
xinference/web/ui/node_modules/.cache/babel-loader/2b3ca82b3694713348668e9899c723f5e5e332c8520efc649cb02a5a5205a446.json,sha256=hvwp0i4570s814aTeo6zlu7aIyEvSzybee-UpGvNaYQ,1191
|
|
2484
2645
|
xinference/web/ui/node_modules/.cache/babel-loader/2b3d3d6d6e6aa6b3b81ea9d5c6b3bddd5751ff7c93e067744cb6999c81bdb241.json,sha256=bI34ph5eoukz2ke-8hV8cdswPWCDbu9OZFwfjikb1cM,4868
|
|
2485
2646
|
xinference/web/ui/node_modules/.cache/babel-loader/2b4333aeadc51efef787ccaf8bcdcdc43a6ce5d96b344645cb7fc30055c4604d.json,sha256=GUq5GrgxI-KKZGGdhRpmULTfTqeslcm18tftXkdymEg,2392
|
|
2647
|
+
xinference/web/ui/node_modules/.cache/babel-loader/2b484da66c724d0d56a40849c109327408796a668b1381511b6e9e03baa48658.json,sha256=RxoA3uygHTPSbzvZd-6PQkDlevnOPekKGJbuk8NxNsY,9211
|
|
2486
2648
|
xinference/web/ui/node_modules/.cache/babel-loader/2b4aabf9e820a3a33ec15c6562fa7fa4af431ea89e2993d51fb25f1fa741b59f.json,sha256=hJDu14kOuXQfZZ0wyAN4RaEjTx4bSWZfwKFKrPiaGWs,1736
|
|
2487
2649
|
xinference/web/ui/node_modules/.cache/babel-loader/2b58cae2c6af71cb253da9aa37ff4e21142c634bf9b3ce0551c2aa0a095227d4.json,sha256=3LzIXufOI8STCrdPqbfJkLpvnlEonZe-aZN_dY9H7-c,1511
|
|
2488
2650
|
xinference/web/ui/node_modules/.cache/babel-loader/2b5b405afddb46c521bda7efbd3df70aca8eb5e9ad8436dc18fa996b51b18aef.json,sha256=nXQWRpDX_xwRu0Tverf38iw2P2nPYk840IKrQbiFmqo,1044
|
|
@@ -2552,6 +2714,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/2cb2d066e281d9970a93b87635b6b
|
|
|
2552
2714
|
xinference/web/ui/node_modules/.cache/babel-loader/2cb386cb654ce7fb412a0c9799af5c15110f5deaac73cba8804c9e7d184e3f73.json,sha256=eSrnmIT2iv6h0nyPQoJdVij9T3o7xF9iMTqdWiywDhw,1493
|
|
2553
2715
|
xinference/web/ui/node_modules/.cache/babel-loader/2cb55fbcbaf4dbd62da5e1a4730ed4cca5f43cba4a26e86d72a38bd65f964607.json,sha256=gfJm1FfoFTqPxs_EbnuE3B5Wk7HIXoqHlkHHl-H4kD0,1095
|
|
2554
2716
|
xinference/web/ui/node_modules/.cache/babel-loader/2cb5d1ae78b2ea5cad9a139a497451d23682ce740f479f21e3e7aa281050f5a1.json,sha256=nUGoYE2LjFz7SKlhofFAif3M3QItXYC47q1HyyT808k,1898
|
|
2717
|
+
xinference/web/ui/node_modules/.cache/babel-loader/2cbbbce9b84df73330d4c42b82436ed881b3847628f2fbc346aa62e2859fd88c.json,sha256=WoEJJRHPOhl6np9T0i_F6_QCFaYJ6a7bzCUEPcXyJ6w,1104
|
|
2555
2718
|
xinference/web/ui/node_modules/.cache/babel-loader/2cd6660dd942bd9adbe85e470c058c73e70022126a742f9f1324ca22100200a1.json,sha256=d-4tP0UAKun0H0HPkzzJY3gHDCtADGfyEcU-3j3SrVk,2115
|
|
2556
2719
|
xinference/web/ui/node_modules/.cache/babel-loader/2cd86096ee7aabd9d196f7fa8808ebc0fe4d67d789de4ca19e7089c8869c620c.json,sha256=UdMUuWlxxziJ8ATuRLW0XjMh6F4_4KtTYmpzMqM9K4M,1134
|
|
2557
2720
|
xinference/web/ui/node_modules/.cache/babel-loader/2cde3ba9b4bc3f1fd0997b5b51110fc26bf2a99924cdc5e6bb7e9524a6eb60d6.json,sha256=kwV7maxoLCoqueBR0CeLwtFmNClYA_rHIsP2u6r2OHc,1736
|
|
@@ -2630,6 +2793,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/2eac57fda53a86f9b9d927f5d2e52
|
|
|
2630
2793
|
xinference/web/ui/node_modules/.cache/babel-loader/2eb191c2010af4d286fd046e473f1fe65b9505bffab5b70fe6b78ec38290dc75.json,sha256=lHbmdzUeouiZpkbYNmnoOdPfZDzrVfHZDk-7tHysjv0,1144
|
|
2631
2794
|
xinference/web/ui/node_modules/.cache/babel-loader/2ebf3eb66fa4c5398f20dd4e00c82644d86f5284088a883846266d4db3894b2f.json,sha256=59NKWyEJUx4BkJzeV-EsASX9_rVFfhAAKz-3mRsAMuA,321
|
|
2632
2795
|
xinference/web/ui/node_modules/.cache/babel-loader/2ec75af6431fd015f975c7370707afcac9d8ed5ba0bfd688ed7f50d366715ebb.json,sha256=Aii4rAIipaXi3gqqTJC2X5oUbRF97ubNDJcjaK8AYcY,1211
|
|
2796
|
+
xinference/web/ui/node_modules/.cache/babel-loader/2ec9b14431ed33ce6901bf9f27007be4e6e472709c99d6e22b50ce528e4b78ee.json,sha256=j9Xh15Fqx_EANbZcP415KVgzrycNI0wQOuAXOfXO_kE,10572
|
|
2633
2797
|
xinference/web/ui/node_modules/.cache/babel-loader/2ed1f339ac0a50c609e63270d902e52685779195ec6401d8e46eaed975bc2c23.json,sha256=amzAtrVPQnOhdNoEC00MqPgs7yPUeyTPfQDOUr1JJdE,735
|
|
2634
2798
|
xinference/web/ui/node_modules/.cache/babel-loader/2ed3b287d688d7cdec4067948bd6faf843b9040ccedf2c2b51c91a1a2f3d9706.json,sha256=SH2UUf6iZb8XZvZ_V5_u0EedT8H0iM4KYH_DywiD15k,1136
|
|
2635
2799
|
xinference/web/ui/node_modules/.cache/babel-loader/2ed9ba84201ec7415c502c6dd6dbc795b689630521956c86e4f685e1bccc0adb.json,sha256=rBan76_m9A3jglKdgZF74C_XQ9oTjP_lzsyAFAzk9PI,1819
|
|
@@ -2859,7 +3023,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/3300669f95c2d8bd67dcc62aa3caa
|
|
|
2859
3023
|
xinference/web/ui/node_modules/.cache/babel-loader/3303459412aec3e4cfc7efed7854d83837221e9879cf33cd2f67b5a1e9a1a65b.json,sha256=mdlln4XhnIbEY_H_EaDonf3h4Vv5qZDe3qPHt_C1Ivw,1203
|
|
2860
3024
|
xinference/web/ui/node_modules/.cache/babel-loader/3307e6cd4416cfc309e05d82fd7dfed1466d3b89e0fd948e6e84ebc6c87c9750.json,sha256=exd_-4C26XY7VpcBvppsuRmZWbkAHvQfTormMVYebR8,1064
|
|
2861
3025
|
xinference/web/ui/node_modules/.cache/babel-loader/3307ee7c63b28fa439d456906a88f41631967611f3887179bf7cabb03f721b29.json,sha256=Oc_cF6SA24aH5kGQj_GkNNLzspWc6AAcILil2j_VTGg,4637
|
|
2862
|
-
xinference/web/ui/node_modules/.cache/babel-loader/331312668fa8bd3d7401818f4a25fa98135d7f61371cd6bfff78b18cf4fbdd92.json,sha256=YsdHsJobvLYgYr4igfB_SsBZ9ma0Qb-KwSLHd976JUs,39066
|
|
2863
3026
|
xinference/web/ui/node_modules/.cache/babel-loader/331bd51a1950f043c0d3c1cddcf19155ceabd4f00400f0f38a21a0f58473fa58.json,sha256=t6Jt9_tqfpSb8hPLnEx6yitGcatvmRux6iIS-ThuIek,3671
|
|
2864
3027
|
xinference/web/ui/node_modules/.cache/babel-loader/33212ab361709ccf155fbc8c357901f3d7d20d565ed7597802f000bcbce6abde.json,sha256=soKdMsdcms1CiTQeJ9p9T0KjfbJwhYkYSRGXBQQfIqk,1334
|
|
2865
3028
|
xinference/web/ui/node_modules/.cache/babel-loader/33276870546310026d6b9ea4270fc3953d1907af9251a05ca89267287aba9bb1.json,sha256=xUvKrv-2j69Ijhc3wK3drZe_TIbdeip5ZgjaGWBkaN4,1872
|
|
@@ -3234,6 +3397,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/3b788d16902eb54d65966af70cd67
|
|
|
3234
3397
|
xinference/web/ui/node_modules/.cache/babel-loader/3b8cb63ce37cdf807a8909cff43497776f200d8fdca7bfa73dee33ee507b8822.json,sha256=wkZQPLC3NtvT0FeGpH_NCVIS79a9AkXrRCgvsUO_6I0,1550
|
|
3235
3398
|
xinference/web/ui/node_modules/.cache/babel-loader/3b8f3a7279e46f551c697c4fa4a9d3e13d96937840a3b755b508715963fc9028.json,sha256=viyICcmcDZL9yMPGCinbXdfWxiQqOtoB26Sp94XjGuc,1473
|
|
3236
3399
|
xinference/web/ui/node_modules/.cache/babel-loader/3b92f4624877195373b55f64469633c061752e165bc60f48abef67cf27b76fdc.json,sha256=UUKD8QQ5_IseFrxbrmbqove-INiUzWjY7IaiKyJol2E,1259
|
|
3400
|
+
xinference/web/ui/node_modules/.cache/babel-loader/3b966db018f96be4a055d6ca205f0990d4d0b370e2980c17d8bca2c9a021819c.json,sha256=qo9HSQIb0fJZYcgPvdleuaMlpsCEtInc697p6kj91RA,3149
|
|
3237
3401
|
xinference/web/ui/node_modules/.cache/babel-loader/3b9671bf3b6ac2e33d78b57f77faa7779e169d183a7ce5c4af92b790fa262ded.json,sha256=a1I2XyhzGIP0__weJNg_LsgXAWMquV2tTOmtQURRkp0,3338
|
|
3238
3402
|
xinference/web/ui/node_modules/.cache/babel-loader/3b9bfb92bdaed19cfb7b895da34054fd639f80984f6dd7ecc0656cb79c43bd81.json,sha256=1QhNbapIF4UPuYSj4u10qCygs1g17H0rmNt2qk0DRbI,3392
|
|
3239
3403
|
xinference/web/ui/node_modules/.cache/babel-loader/3b9d68f7e44678a05ae1903b426f4c80e29797dc346ce10d9cfa4a12da1d209c.json,sha256=umAKpmZJVj-aN1Hj1KnDNV4T9jL6cy4dnGX__Xrv3fA,1366
|
|
@@ -3388,6 +3552,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/3ed79fa3b286cb1b86acce91f4cbe
|
|
|
3388
3552
|
xinference/web/ui/node_modules/.cache/babel-loader/3edb30e208f0f63f1726ea21ca7668e133ded37fc219dd255bc8e9bfced13923.json,sha256=i6MRsqbDmp69LVez4wRjd-g-v4qP3PkBNs7Lyp2NQgg,1575
|
|
3389
3553
|
xinference/web/ui/node_modules/.cache/babel-loader/3ee8ce569a63d9bfc054971bcbe0deaa562d54c7b5098d0712b454919ecc3fd5.json,sha256=9dimZbvrmHVWNX7O6hFJGbORgajYLG3jnVpUG_lOZjI,2045
|
|
3390
3554
|
xinference/web/ui/node_modules/.cache/babel-loader/3eea68a16058db7a9428f560b431ccb7e2f5acc5aa6bfbfc379526ef13f41fe1.json,sha256=pEMr4TpJ60YnHtm-54uA5LJyWrF3qjXD1be15hpFFgc,3224
|
|
3555
|
+
xinference/web/ui/node_modules/.cache/babel-loader/3eefb411b24c2b3ce053570ef50daccf154022f0e168be5ed0fec21394baf9f4.json,sha256=8FaJ3AS4nB4a9I1x6snlORXgbkAQsxkDXVhgX4aMDHU,70354
|
|
3391
3556
|
xinference/web/ui/node_modules/.cache/babel-loader/3f01b1c8dd98608a9ede9a1981f0134555085b9461d16f0fdf9f5673e5813856.json,sha256=b9h8pI2FZkCo0SNVDvny2f_AO_V76JocF3B9WDPX2vI,2555
|
|
3392
3557
|
xinference/web/ui/node_modules/.cache/babel-loader/3f0dc7c0c9b260f35fa510750802de1692c9e697400609dd2ec9a00e40a41b6b.json,sha256=qocMEopb4MNVKzWvAX5EBT06oLio_NuLnlCHbJZzbFU,1193
|
|
3393
3558
|
xinference/web/ui/node_modules/.cache/babel-loader/3f0dd767b7093feeb41b25ec5df21bacf93e83dc5a4464ab0c8fd3d5d0e5b6e1.json,sha256=0IqkTPPQbVeLEaLSTy1qU9-aFIgo_M6wJ-Y0zmjqLEM,1137
|
|
@@ -3486,7 +3651,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/40e28f8804e130097296aec7c1aae
|
|
|
3486
3651
|
xinference/web/ui/node_modules/.cache/babel-loader/40e4776435d667d93df97f72c9979d308c545a2f38985134cbbfa64814c0daac.json,sha256=HepWvFtjw4YF9kis1lzlyAyg49p2n9nevVkSA7GFNkY,1089
|
|
3487
3652
|
xinference/web/ui/node_modules/.cache/babel-loader/40ecc49d2459d0ca6162729053d8102621639c934e7e0e25cdda850215875603.json,sha256=2Zxc4WEViyYlY6o_mvcMCejl7GkXhV9_FXVd2j8DAFE,1299
|
|
3488
3653
|
xinference/web/ui/node_modules/.cache/babel-loader/40f086ecd7508ca80eac72df9cb83beffae2b13512c717b6ed34fa6215a89692.json,sha256=VpzF9Pj6WuMAcNNl8ZgaI_Wb5P3ogh5XtjAlUF84XpQ,2286
|
|
3489
|
-
xinference/web/ui/node_modules/.cache/babel-loader/40f17338fc75ae095de7d2b4d8eae0d5ca0193a7e2bcece4ee745b22a7a2f4b7.json,sha256=cZrFpJVdbuPx6Hjrzl0xmxjYREyev1AsZWBRU_nvJ6Y,19506
|
|
3490
3654
|
xinference/web/ui/node_modules/.cache/babel-loader/40f1b02c8aa0868c1ae23556acdeb6adfe3fa0f4d881d4008127cf9206dc71a0.json,sha256=lNR4JzsCN7UvvCN9j6cvQLsvsoofC-TavOrDAqVOF_g,1568
|
|
3491
3655
|
xinference/web/ui/node_modules/.cache/babel-loader/40f76393b7ea099a074fb036f5de54c0e1d83217fc9018867abe87e5764afadc.json,sha256=72SK64JXnRWUbHqmbXlL9C1vQ0XDHnCv5MX0IbqjhDA,1513
|
|
3492
3656
|
xinference/web/ui/node_modules/.cache/babel-loader/40fc5bf1017da96e74e0fe7c73921018b5ea17d84b347e06fc134d44d83920cb.json,sha256=DPWzdGtCiHVfc0MMiMXl21i39ObmHcEZqFYogxLdiA8,2143
|
|
@@ -4089,7 +4253,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/4ddc2f4abdb26b7702b8d6efa06c6
|
|
|
4089
4253
|
xinference/web/ui/node_modules/.cache/babel-loader/4dde5b1a98cbd1f46965d40abcfda42aecf2eeccecb0d8e02c79ded9e5492e67.json,sha256=YYQd_FBjMz_Lj2yULfVsXK0yje8VzSejcJyBAFMJ9w0,1319
|
|
4090
4254
|
xinference/web/ui/node_modules/.cache/babel-loader/4de35f342fb64c610c5f9b3817986698f38defc8f0e41b1e75f27b3f6d79a912.json,sha256=up__YhEd1JO0rdaDC9dKYKMHe88uI2wrZKSGRTezhSg,1507
|
|
4091
4255
|
xinference/web/ui/node_modules/.cache/babel-loader/4de90c3af82b41c0a7824b2197310fdce5c6a27e3884e3e080e804b87f121275.json,sha256=vkdAXfOe0fXOU2JvuTRDKRo-uuCLXe9Gx_ZHQPJymmY,1439
|
|
4092
|
-
xinference/web/ui/node_modules/.cache/babel-loader/4de9a6942c5f1749d6cbfdd54279699975f16016b182848bc253886f52ec2ec3.json,sha256=z5CfC6Su3CQ6mQVpWfRadjufaMp5FgcCWEN6uKRWNJQ,8738
|
|
4093
4256
|
xinference/web/ui/node_modules/.cache/babel-loader/4debf275167eb48c717464de9cd4f81837fe5aad0b5bd9788fcf920a123c744d.json,sha256=nmfGj8qpKAWj7f17-UOB3I-hrWYt4NI_hHzqtV-Hp30,6077
|
|
4094
4257
|
xinference/web/ui/node_modules/.cache/babel-loader/4df0db29f4d6297df1d67f816277f5287feea40861f9603339a8959bd3958457.json,sha256=moVb0BtmWbJt0ReqWOeKxzel9fcZlfkZuWUyXSVYUdw,1579
|
|
4095
4258
|
xinference/web/ui/node_modules/.cache/babel-loader/4df174457f9df3202cd7ac256bccc3a1e3f5d5e78a8733da57b9a4b8e4e617bf.json,sha256=4g54PcmHf6AdvKuQ-lMpoSzjr6krz_ea9iyBYlh9Qrg,1652
|
|
@@ -4308,6 +4471,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/52016920fdff1c4509adaee64421c
|
|
|
4308
4471
|
xinference/web/ui/node_modules/.cache/babel-loader/5201d06ac5defd034c83ec1110be85ac596770893ff0498906dc8cb55841ec9c.json,sha256=hLWoz8beS0X2UaECIgEmwYBkNifSBdz8dck-wES7n5s,1838
|
|
4309
4472
|
xinference/web/ui/node_modules/.cache/babel-loader/5223cd6ccdec5e18cb06688831c663deace48475599c0ff8bc2384126b6c0325.json,sha256=X_GYvu2kZeZFY6UAkPO5dMnWCrcCQD6z4UssD9LBWhw,1341
|
|
4310
4473
|
xinference/web/ui/node_modules/.cache/babel-loader/5224503bdc579c055e3745b1c60e238622193131afca981aa0e98118b4f9fa13.json,sha256=0sCJQNMgUjTEVDAUpfMc88E5vDLm1zBXxkifBrxi_q0,1334
|
|
4474
|
+
xinference/web/ui/node_modules/.cache/babel-loader/522b229e3cac219123f0d69673f5570e191c2d2a505dc65b312d336eae2279c0.json,sha256=GnRqB__YJnKUaL9uwZ8A0is_nQ5Qm0NNLhU9VdFZqgU,5505
|
|
4311
4475
|
xinference/web/ui/node_modules/.cache/babel-loader/522eb0f99109f286cda00e2958e6cfcbf3899facdf8db1c7555cb0270f939828.json,sha256=ucE-6y3W-i6FcKDA3tBRgyxlUtzAkv16lduudPsptqI,1084
|
|
4312
4476
|
xinference/web/ui/node_modules/.cache/babel-loader/522f91aab55aad16443ef8d03a81f4c36976889d3b7865274077be8d9d29b842.json,sha256=fEyo6t6525-I0CXGH4soFe6yBcCetfd1rYexjkz9Qds,1339
|
|
4313
4477
|
xinference/web/ui/node_modules/.cache/babel-loader/5232296e72d80755bacf0549eff9f141e242eb089ffe5db6ccb511fb19a81395.json,sha256=tLCpyW5U8Fhu3bxkYXrqW6VG5QYNjsvh_Q32h2Y9LZc,2021
|
|
@@ -4345,6 +4509,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/52df5a285c60f0b74e4885c00de00
|
|
|
4345
4509
|
xinference/web/ui/node_modules/.cache/babel-loader/52e07c5b52cf12df892e4390e2de6adccffa0655c3c7da4bbbdd05e56840bd77.json,sha256=6FrhU9r4o7PuKPUHfSwA4Ip3JFjVTbN0kNvWUqY4uis,1297
|
|
4346
4510
|
xinference/web/ui/node_modules/.cache/babel-loader/52e14defbb3473be2e09a8199d050f13c437c472c1f8d62ff1f2d863f1c64fc2.json,sha256=jrSS4I1gNKUI9t7pmKyhlUB-bh8cSxk-Df-UvEPSw5s,1051
|
|
4347
4511
|
xinference/web/ui/node_modules/.cache/babel-loader/52e44aa9e62c175a3c77cbb6d11af83b544f165c3fe6b04513f650f6efe60eac.json,sha256=_Shj60mzpR_g79V18TFc1UsnpIdEifro3q90Dbwv3GE,1209
|
|
4512
|
+
xinference/web/ui/node_modules/.cache/babel-loader/52e45f17ba300580ea3fcc9f9228ccba194bb092b76f25e9255af311f8b05aab.json,sha256=hjILO2mMI7OF2piiROTIita4iSHJXhwQ54XEUrYPZt8,1395
|
|
4348
4513
|
xinference/web/ui/node_modules/.cache/babel-loader/52e4b53d2f7f5562bccf12b0e5c55f62a6647765c6c016fd0ebb017e1c0ff303.json,sha256=M0azqwwMkMjeCYLccRxbwsT8h2dVsbTPrA_ZB69t9yY,2523
|
|
4349
4514
|
xinference/web/ui/node_modules/.cache/babel-loader/52e7c7bf8a5098e20602747af2c5f8821c3441a735cbb4640fc4efa0cf44840c.json,sha256=JFdkiqICcDqf9C4s4J7y0ewHR4IrQ9ZJuvOhcOUpmTk,1641
|
|
4350
4515
|
xinference/web/ui/node_modules/.cache/babel-loader/52f38d054ca236fd535dcbc8f9d5f8eac134a6751b8f423c1ec141eb892c327c.json,sha256=caOPBa6t417YdMaAguxCZqiKl30jkB4zskMr9cRKRT0,1066
|
|
@@ -4694,6 +4859,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/59ff8492d14ccdda8bc4a28cc9783
|
|
|
4694
4859
|
xinference/web/ui/node_modules/.cache/babel-loader/5a01f23a196a44d945731164afcb6e5bef014d14948072d3e0fb0cf08ac0ddb4.json,sha256=8C0iD2VqIXIubSZKjO8DFwXuhflI6DavliVXS0nzdXw,1019
|
|
4695
4860
|
xinference/web/ui/node_modules/.cache/babel-loader/5a02f1726b297d570d520082c2fb987b16bb4986c07b278ef323133c537545c7.json,sha256=XWQcR7fQGu2JYFfjlAw8m2aP4i8INZeL131DQy25YMQ,1685
|
|
4696
4861
|
xinference/web/ui/node_modules/.cache/babel-loader/5a079f8b8e0813f1a8869ff15ce4ed63382000601a4bb63867400eea26ebf407.json,sha256=jraFIlRpyUO0O-xNgFD3GsVBsqvltZpnjqISoid2baA,1587
|
|
4862
|
+
xinference/web/ui/node_modules/.cache/babel-loader/5a0bc4631f936459afc1a3b1d3ec2420118b1f00e11f60ccac3e08088f3f27a8.json,sha256=x0NhBiUj9H_yZlHLxkSqc0GkW17R158AU3iwjuvl7c8,14395
|
|
4697
4863
|
xinference/web/ui/node_modules/.cache/babel-loader/5a0f59788095fef5448fc0f4d2ac4db102728a93bd9740317401b0b137ac856e.json,sha256=gjtEqjP1Ps8BGhlJrqsgpStZKvmRjs4A8eMhcyJpItE,1745
|
|
4698
4864
|
xinference/web/ui/node_modules/.cache/babel-loader/5a109e02a7427aed52941ca5dc9a3c594acc377cdc27ac6c6d1776a4bd8d5dae.json,sha256=_91nF5qkTcyPI4B0XuEcrNJ140EuhkUDma6MpGWN45U,1571
|
|
4699
4865
|
xinference/web/ui/node_modules/.cache/babel-loader/5a1634eb7ff823853fbe8884c49545cedab128c60d30857ebcafa6bdcdef04cd.json,sha256=TPbmKXa3jgKAKSRDgC6imPBrThKA-CBmunk5P3E_KUQ,1165
|
|
@@ -5020,6 +5186,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/610fd1ebce285eb4cafe7031c9a3c
|
|
|
5020
5186
|
xinference/web/ui/node_modules/.cache/babel-loader/6112e2984361848a9cd06a22b424dc91903eab3b8d640ff0c921999e53eb4e7b.json,sha256=B0eTvYoLsshbfk5DgA7q_qi4YVGF20OJ1vtz54OHqhw,1378
|
|
5021
5187
|
xinference/web/ui/node_modules/.cache/babel-loader/611596ee0f8ff76e5c1702fdb55d8e9a8eb5dde616172af6357a933d25d1a691.json,sha256=F3lQ_JYhgvalBx2JLCaOfVWx2h61O9QuID2ytlejSCs,1118
|
|
5022
5188
|
xinference/web/ui/node_modules/.cache/babel-loader/611a48fc795aa94774209539b7e0082e429e13f10000bfc36317409244a675e7.json,sha256=8xvskpkogBWEd5pGngLDBDeaOOhDP505Hd5lqZBP1xw,1819
|
|
5189
|
+
xinference/web/ui/node_modules/.cache/babel-loader/611fa2c6c53b66039991d06dfb0473b5ab37fc63b4564e0f6e1718523768a045.json,sha256=5jXTqWVAq2JwblgcrZ5RxOmassmbkdpwruaP-buAAYk,39754
|
|
5023
5190
|
xinference/web/ui/node_modules/.cache/babel-loader/6125acec36d74eee2556e1e4c21bfeff134ce531b5dedffe0bb5728252ca005a.json,sha256=ypOlqxOYRzWzaSM5gSsICWKaq8U2gStcAo7WTxCPD78,992
|
|
5024
5191
|
xinference/web/ui/node_modules/.cache/babel-loader/61287623c0983cf9c239ba9d8d72e589cca0ea363ae1b18c23c484ffde8b1625.json,sha256=MTBnvKT_9bl6pC3wc0OnuSxD0BMBfsABv1dIJ56o7Ks,1217
|
|
5025
5192
|
xinference/web/ui/node_modules/.cache/babel-loader/61339699378647ed9914a65d8d07d0a9c39d2f596dd591347180fa0eb0cefe41.json,sha256=-bN6pEc84td_n8CwAI5NKsoLP-dAJhgc8Adt7B5wVGI,1805
|
|
@@ -5116,6 +5283,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/6321abb2732d7772fdc9b320c6492
|
|
|
5116
5283
|
xinference/web/ui/node_modules/.cache/babel-loader/63226739d7d691d8200fd69a3c5eb70a8489fbe8b50a2a22ecc41644da0c87ea.json,sha256=O7wt5EEa3TWHLfnV48GknmsEOH8kSW1fVy-f8m5g6yA,1735
|
|
5117
5284
|
xinference/web/ui/node_modules/.cache/babel-loader/6322be48199bae9b836c812cba1737a0ed88ee9c5eea8c53ed89ab81dc48773f.json,sha256=3Kef4yGNNGqOWhPVnOeXfW1EN65tiK1EkKmi-smoKAA,2067
|
|
5118
5285
|
xinference/web/ui/node_modules/.cache/babel-loader/63275053a9193f7830af3a4da02b9eefda717c221c478fadb9c01101c4adc4b5.json,sha256=8nN6q_B5r2gl30DPXgqN-ouBRykdjXNgp9-kgt_o1hI,33295
|
|
5286
|
+
xinference/web/ui/node_modules/.cache/babel-loader/6329bc76c406fe5eb305412383fbde5950f847bb5e43261f73f37622c365acb4.json,sha256=kLcrnDSBnKxDYhcrjh20O4DSge_dFezdN4wzszHhnqQ,45371
|
|
5119
5287
|
xinference/web/ui/node_modules/.cache/babel-loader/632b4560412a92868a272f0c3770527db3d962d9e65f5c02db4bf50cf442fbbd.json,sha256=8Wxn0dGYNdTkLPGePNfqyObpz2-d-ZqfttCb3MNdlo8,1134
|
|
5120
5288
|
xinference/web/ui/node_modules/.cache/babel-loader/632bcb0e6a5e5d4ec510a94f6ae3cb0fff459da9a95eee8fa1ae0fb786a07331.json,sha256=1StieQ5B3W_XYlNUz5hh4bLT1vrKLGXLqwKGZ_pZ9Cg,693
|
|
5121
5289
|
xinference/web/ui/node_modules/.cache/babel-loader/632e40dab5881d0de792cf8fa16762e714c276bafad800e6f86a97c4eb8ff65d.json,sha256=nBfNsN5OcjNHXiYHfQv1Q-lt0lPJQ4OFC3KjW5JIbyM,1493
|
|
@@ -5142,6 +5310,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/63afb2a3263a8162320073b9ee04c
|
|
|
5142
5310
|
xinference/web/ui/node_modules/.cache/babel-loader/63ba77ec04a4ae279cfb6aeea9e9f950291636efa7d485d3155574bb91511533.json,sha256=hW1drFyUhnz1uIbvFg8NofW9-7S7lfsftG8TCog6yxE,1641
|
|
5143
5311
|
xinference/web/ui/node_modules/.cache/babel-loader/63c6d396ff59c6b1dcd89fa30c3fb6204bcb96f59a1627543709787c296ec53b.json,sha256=oqH-hwmFihiDBWFC_pIN_-aVL-35wEXJ1gHx6nDEGU0,2591
|
|
5144
5312
|
xinference/web/ui/node_modules/.cache/babel-loader/63c73f739150151c1a5ff66e19abcc44ea6c42499ea785c37d1a7ae20996f0dc.json,sha256=Qu06k69NZPNaSUi1S-9TyMZaYN8dA9D1cqf6ig4AnVU,1912
|
|
5313
|
+
xinference/web/ui/node_modules/.cache/babel-loader/63c8e07687ea53a4f8a910ee5e42e0eb26cd1acbfbe820f3e3248a786ee51401.json,sha256=Xh9mslvMmWxqnQoT-hNuN1QelhUoLTwEEmvKHfJRCWg,32800
|
|
5145
5314
|
xinference/web/ui/node_modules/.cache/babel-loader/63cda52729688fbb21b6fb861ea4b9466135805a95d48afd04f8473a614f133e.json,sha256=fq29sm9itvQfWd3mppozxr5X-forqDCU_exUnQDnW3g,1691
|
|
5146
5315
|
xinference/web/ui/node_modules/.cache/babel-loader/63d01d83ad440803dee6c4f74479517b079fa57a9ab2fc93deecf28124176ada.json,sha256=WQC8zTcefN_z0QnQtsU1kuN-71qqNRVcBFGeKm-WLP8,1676
|
|
5147
5316
|
xinference/web/ui/node_modules/.cache/babel-loader/63d657f6a0d163d3b2144695818eca9655e65d83ea3959020a42574d46154128.json,sha256=6OwiZ3MoTW3ayGjli9KAcnO4v53FapMLUjR-SxgCoXo,2078
|
|
@@ -5423,6 +5592,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/697916ddb88b51fdcd81979028f93
|
|
|
5423
5592
|
xinference/web/ui/node_modules/.cache/babel-loader/697bf1c024fad9f4fae4f1e616ae9051ae6a09613092dc00fff919119b32b2dc.json,sha256=H3gUdRRGm5cXCAEnbKFxT_HauXuFGVzhLs1T24d5nXU,7643
|
|
5424
5593
|
xinference/web/ui/node_modules/.cache/babel-loader/698e4278b92dc9081724f9c4d3923f692e7e4cb7c611d399b19169f294361ead.json,sha256=UOmU2ERd5Ss6uNtDTWFfzr8ZIsbyd_eSzmWD-J3wlNg,2504
|
|
5425
5594
|
xinference/web/ui/node_modules/.cache/babel-loader/69927d7f8cae2be63dea6d52b4b5a0188148bd22f6bf02c7f2d58ae50398c99c.json,sha256=bP__kgfpUHCOXr-SGmn-GylwfYH1X2LwsNqNaMckmuk,1002
|
|
5595
|
+
xinference/web/ui/node_modules/.cache/babel-loader/69b2d5001684174ec9da57e07914eed3eac4960018bceb6cbfa801d861301d7c.json,sha256=2bv4DCCO6OWRuKshq_owZogX-Giz2zkOjOkKSKlnaWI,17561
|
|
5426
5596
|
xinference/web/ui/node_modules/.cache/babel-loader/69b61dfa3aa3c9e867513fcbbd775870c5a18866a429117834ad571a38b06727.json,sha256=ilBSfutAUEyZg3I_gRHfi1mRm-sMhpZMAT3WydoKaVI,1307
|
|
5427
5597
|
xinference/web/ui/node_modules/.cache/babel-loader/69ca61f1178b208c463ef4f13da1e9040cf0f8817b978324ee207dc8163bc226.json,sha256=-9xGugcqi2mwS9nlIUstxNlRQehYI_9k6cxoOV8dvsc,2109
|
|
5428
5598
|
xinference/web/ui/node_modules/.cache/babel-loader/69ceecec15e99f02a3c51840355d8c13bd338db822de0eb9261f30e1afe1bc88.json,sha256=AKOWkQkFSKkHRhNPw-wo-yYpZb7gk60jIu-T-KcdEpM,18496
|
|
@@ -5752,6 +5922,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/70d5f030a5f671b9c06042f62e16a
|
|
|
5752
5922
|
xinference/web/ui/node_modules/.cache/babel-loader/70da79a71662ebed2026fb4ecb79feb4887777176f73a0f568b72478a33f7b3f.json,sha256=efEbsnYyyR_igGtXkJSUndpQTLASdAUlNyFZA6jrXLg,2915
|
|
5753
5923
|
xinference/web/ui/node_modules/.cache/babel-loader/70dc80957ce1a277652d04f1a479a20b6e102df248baf58bf0dfe4dabfd8003a.json,sha256=i7Kb9Sar0HXqIZZOq3xpV9ekZUU9n9oS1pQbtpTw1tQ,1455
|
|
5754
5924
|
xinference/web/ui/node_modules/.cache/babel-loader/70ddb2ca58c0d4725ad9699591299fe5821ef6425e54342e60220b3e7b4228a8.json,sha256=e7IwlxFGKveuEiHZzy5JzzxjhqiWY8uLwf32H0KK-3I,10929
|
|
5925
|
+
xinference/web/ui/node_modules/.cache/babel-loader/710c1acda69e561e30a933b98c6a56d50197868b15c21e2aad55ab6d46649eb6.json,sha256=5iDcqRt_n55jZW3OClKh4SeNvG99YgVYJNju02V47P0,2086
|
|
5755
5926
|
xinference/web/ui/node_modules/.cache/babel-loader/710c8ef9f0c58f471e5e79e62ea1665c0dd27274b6aa17d98fae9ec1cd1a875f.json,sha256=Qi0-MOKJ7Wj_68VrYoqhFcONZHxZB6sAxQ8Gdhc34UA,2773
|
|
5756
5927
|
xinference/web/ui/node_modules/.cache/babel-loader/711377359cccf3e39fa8fcb3dd298f2bd58a216d7f88e8f1bea42164876127c2.json,sha256=bQ1Muh5KXio7zv9sMj4g_6RDbv7IqjaCRvwVIAX6E6Y,1057
|
|
5757
5928
|
xinference/web/ui/node_modules/.cache/babel-loader/7114c7dc10079f40753a01b3e9ae5e4e7f407e679d91ed15d7a2b548084bd501.json,sha256=kmJfBdzwO39nG3QXIUbFQq8baCMqmpZsHJjzJtKVxYs,2226
|
|
@@ -5806,6 +5977,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/71f35bec81cda05cbf08ad61db19e
|
|
|
5806
5977
|
xinference/web/ui/node_modules/.cache/babel-loader/71ff2ed6faa5e6cd4c978f2124c0d069fd0110b0d7687054743a16cb7f9eebe1.json,sha256=7ABbjXlaiBgYcb7J5jTR3kQY-rUuEJgewwJ7qkuyNFw,1585
|
|
5807
5978
|
xinference/web/ui/node_modules/.cache/babel-loader/7202e0a7a0a58a435190873d9bec5c55f204bd408190bf582581f9e5004134e9.json,sha256=_ah_0KID-94HZda3m_N2FIYMv19fiMt9zz0lbVJK8fI,23291
|
|
5808
5979
|
xinference/web/ui/node_modules/.cache/babel-loader/720cb4172fbbccac63ce7d55e1c6056cacca0ee958e7ed961d48bc35d8d2aba2.json,sha256=-qhPpjGGDAlWNDVHuAHSMKEDxXa6Ip5TKWjAhBmn5BE,1960
|
|
5980
|
+
xinference/web/ui/node_modules/.cache/babel-loader/720deca1fce5a1dc5056048fa8258fd138a82ea855f350b6613f104a73fb761f.json,sha256=N_NDwfhte2rkxc2w8kLKk6s-Jdzf4WuVaOF_bACTcVY,2503
|
|
5809
5981
|
xinference/web/ui/node_modules/.cache/babel-loader/7223af040b1843bb23919d11641b3214866db57d98fe27b7e9bd849aee44a351.json,sha256=RVYp6ZwG0NXerPh69V1x557Cjd-xZpZ5pYbTQ0qsVL0,1086
|
|
5810
5982
|
xinference/web/ui/node_modules/.cache/babel-loader/7224e13d9487bc2bfc4d6b82708756b57752fc3c6ffbcb031c292432a2beb635.json,sha256=wp3OVA-2nLnI1wR_rT9ijz2tkScdq6W8A2HBoJVPkxE,2822
|
|
5811
5983
|
xinference/web/ui/node_modules/.cache/babel-loader/7226a6443b5676f8f61b5bcd59d7782221835234f8a5bbd4b2a32092b9b6f819.json,sha256=cJ4knFyLUbLlhnKBjpluSx6S9daIoeoVFuG3dEjQo8g,1153
|
|
@@ -6025,6 +6197,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/769a5f8ce2ea992df4dc1604901b7
|
|
|
6025
6197
|
xinference/web/ui/node_modules/.cache/babel-loader/769a6967bd4cde261ad3f774f450b7902a57e7ee8f4fae1a3b34495c312a9d6b.json,sha256=pxJ_Ig31e-GfgkryiTQatYC-XCNMJKp35lktFSyCM8U,1201
|
|
6026
6198
|
xinference/web/ui/node_modules/.cache/babel-loader/769ae4b8470c217eaa1012d6b2670300b95ffcb5fa8c0ac3c28a410d89c22c6a.json,sha256=Ux-HCBmCTPr-r36LxvOiyf7yW0zd72rwVqHvZyMxyOs,1316
|
|
6027
6199
|
xinference/web/ui/node_modules/.cache/babel-loader/769f6d9e52a794e9f38d9cb2472ac99a9cf3815f9b157bcab2953d3f38769bf3.json,sha256=3V1OOrEOGTEHMZ_hQ09v0-OgxVckCgy0txQshi-rXpY,1645
|
|
6200
|
+
xinference/web/ui/node_modules/.cache/babel-loader/76a23b92d26a499c57e61eea2b895fbc9771bd0849a72e66f8e633192017978b.json,sha256=r1Aqi7ls4VnoTOJC7fSr41UHPqEUYudxTb5lUVn68PI,3243
|
|
6028
6201
|
xinference/web/ui/node_modules/.cache/babel-loader/76a2603c6518ce38de7b33332e1f329974eb3dcb38ddf280af1e95e8805d343c.json,sha256=oEx3IQ8U6WBSSYaYQ5zyQLp6q0OV-INNEsHnbDhPJxw,1922
|
|
6029
6202
|
xinference/web/ui/node_modules/.cache/babel-loader/76aba4741c9ff3c6f5cfe05a2583e8655ef0b9a5f1b1bd9ae1c0864f077846a3.json,sha256=fDywbKnpghSHNSZs4zXPi6zepwNiheBOysg35CJ44Kk,3035
|
|
6030
6203
|
xinference/web/ui/node_modules/.cache/babel-loader/76aeb1ae2c43234a500a24e66da4306dd9c99a80bc2239071b7229a39315dd22.json,sha256=4TjnCfOzFDWU97WP2FCD5WjXHDsDxJ1aZjVaLtn2S_M,1889
|
|
@@ -6603,7 +6776,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/820d6af6f69c6351bf1be6003ebb5
|
|
|
6603
6776
|
xinference/web/ui/node_modules/.cache/babel-loader/820f32b49da07859de991876c45f0f56386b1e70a068622633855807f46e287c.json,sha256=naWOwmxHXPsN7yzWxQH0G85A75K-m8DqHCGZ1X60D6w,1807
|
|
6604
6777
|
xinference/web/ui/node_modules/.cache/babel-loader/8210c89820991a05d4a94b2a56924dd0e0f635d70e7a07ca52899b538caf906d.json,sha256=83r0W3JmeLXRtgeP4qNaNlnt3FL5uIvodp-CHJTibrc,1609
|
|
6605
6778
|
xinference/web/ui/node_modules/.cache/babel-loader/8215785db426e6c57e23940c8e1589ce48932a87c87b69d87cf3f6c31532a5b1.json,sha256=wnRlQ_ZeCgA5rWhH3OBGVTu6s1By2Fzzy8_VkrlFg9w,1603
|
|
6606
|
-
xinference/web/ui/node_modules/.cache/babel-loader/822586ed1077201b64b954f12f25e3f9b45678c1acbabe53d8af3ca82ca71f33.json,sha256=YknLwWtFDFLOCZdNx5PAdqvUyHZw3XVoQEdkc6Kam1k,13870
|
|
6607
6779
|
xinference/web/ui/node_modules/.cache/babel-loader/822ad2ca7e442f2400b5e339681baa8effff51f88d8dcb23043f809b3386e2d4.json,sha256=_x3THcfp0D6zxTVsGEFqvuhdNqGnzMmRaopw4Wi2csg,1377
|
|
6608
6780
|
xinference/web/ui/node_modules/.cache/babel-loader/82309763dcac6139d41ea38166b7d50c0e5671ec2ed9613a7d5f8b80b2b04c94.json,sha256=K-Lx8lZytbXcw7-WpyoIJLRInG7NLn4N85r6lvZjinw,1891
|
|
6609
6781
|
xinference/web/ui/node_modules/.cache/babel-loader/823a141cb5bb91c87bec34e72078584fa58aa4de408ff3498eb1e51c767e3d96.json,sha256=-t8ddqRWVk1Kq8zLInkYRbxOxUWCcIFLUUKXhxO44to,2287
|
|
@@ -6766,6 +6938,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/8569dbb49c676f8946608031ed0a9
|
|
|
6766
6938
|
xinference/web/ui/node_modules/.cache/babel-loader/856da3cd435b1979eb8fb4d1664a2e15fc0475318ed389297a67b2ee20ab1971.json,sha256=xjgCWK8zOWxgvGaFd9NhrQZJcvGCgsoXB0gB12hkFMk,2596
|
|
6767
6939
|
xinference/web/ui/node_modules/.cache/babel-loader/8573af2ad6dfbf47c5775da4205644778d5e859adcbd8b143a22429a719ca4b1.json,sha256=XR9WuE4Cxu-JiJB3Mqel2BH6v7zZxnnmnbb4qgihq2E,1862
|
|
6768
6940
|
xinference/web/ui/node_modules/.cache/babel-loader/857d578d8fc1a114b8831c0b190476b42e4ccc3c4f76c3a45b198b52637da030.json,sha256=fTzsbWtpB_eEl0sNIBbIbyMLDac_YnVqiz7TQ3Ox03c,2668
|
|
6941
|
+
xinference/web/ui/node_modules/.cache/babel-loader/858063f23b34dfe600254eb5afd85518b0002ec4b30b7386616c45600826e3b2.json,sha256=Ak_ecXSikmBTH5yOqirtiUbhk3j_zKurOAxmXl_QKNE,2336
|
|
6769
6942
|
xinference/web/ui/node_modules/.cache/babel-loader/858a39c962d846261138942666a05970d06d00aaef77d2f982131dd156f73ea3.json,sha256=aaR4aixOjVvaesCsDLqymO-i8HKrVGuU56XgsOcZYYA,1556
|
|
6770
6943
|
xinference/web/ui/node_modules/.cache/babel-loader/858c5166e58c266be1ae5b4e952fe782e92bc31a04a66aca1b5a6ad37382e691.json,sha256=VGNm4knzcqo-cZX4kl2H07-ulXc27MDdl9ob4RgOnCM,1361
|
|
6771
6944
|
xinference/web/ui/node_modules/.cache/babel-loader/858cdf8644ef895ef79d9ad0fa7e359e20f08154b4dd10e8e7faf77e03c95589.json,sha256=ueRPKv2UUOVWyM1s2IBvI2zmqJzmIpCn5qJ5TQWwjJ0,1262
|
|
@@ -7136,7 +7309,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/8d212cca2ffc8b02e577e2327b662
|
|
|
7136
7309
|
xinference/web/ui/node_modules/.cache/babel-loader/8d26df4851d290c63f01c9839dd0ace7485e8f39e9dce02158f0dcab5b85d341.json,sha256=To_Ed_quxmpNvRK8x4ea8Zj2G_6fsHWWLFg8hon6M4w,1322
|
|
7137
7310
|
xinference/web/ui/node_modules/.cache/babel-loader/8d307af1e642352399b35843f143422f05664ce90b6d1c3960090cdb6a386eb1.json,sha256=pXgK7m-6j35GoaQn7av_Q5NYJEPCYsq_8_yOnIA5_lw,1164
|
|
7138
7311
|
xinference/web/ui/node_modules/.cache/babel-loader/8d30d73a576fb3bf169591a2dbc9723f57d6c1dc9d965f24e254c23550c35411.json,sha256=p_B8xdF0edaBuxJMDIrY-NYyCHp_WGyw3A0_i5dUcuM,1784
|
|
7139
|
-
xinference/web/ui/node_modules/.cache/babel-loader/8d33354bd2100c8602afc3341f131a88cc36aaeecd5a4b365ed038514708e350.json,sha256=wzRjuiH6e85MEhvd71K-U0URieL5CHToWSsULkAdKZY,1480
|
|
7140
7312
|
xinference/web/ui/node_modules/.cache/babel-loader/8d36ce8c6fbfd2621624094625571a9ed2c9836fc3d7b8d6198d891b48555a0c.json,sha256=8gKDTUI19xq5qJRryyTiY3jiX9O1dTcPN8cSQUTXTAw,1482
|
|
7141
7313
|
xinference/web/ui/node_modules/.cache/babel-loader/8d38d32b42c58998f34b48a444c67af53b0b1dd2458d3b39421e2a9202a5f3d9.json,sha256=6v537GHVSX1bIn5bL_91mp99sKnvOT4CNY-A-8VN5qg,2973
|
|
7142
7314
|
xinference/web/ui/node_modules/.cache/babel-loader/8d3fbaaf522c8b1a5f026f4776a6341d645964aa304e2044b1c6a8837bdd4cd1.json,sha256=yQcSTbGPuF3s4xsPd2PkLj2lRXlZzIkE3lhqqLjCo78,2595
|
|
@@ -7399,6 +7571,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/91f713b75bf383a168068cf26906e
|
|
|
7399
7571
|
xinference/web/ui/node_modules/.cache/babel-loader/92019db1812038ee10c42491588794d6261cd57a60e5c62d41045e28e29d712a.json,sha256=Z1Il_l-SaKEDEmgnD0kRcjg2ehWURQiRqZAHrJFMbw0,1788
|
|
7400
7572
|
xinference/web/ui/node_modules/.cache/babel-loader/92041758388b54986e2cf72be8cbf9543f8a73039e4af373bbc53453e99216f8.json,sha256=6OqoDxHAPkompLR698Ej1Bxfw7jxwFAf-hXAf4z_-NM,1523
|
|
7401
7573
|
xinference/web/ui/node_modules/.cache/babel-loader/9204233e120b04a9c966b3dc629066dd2c4b006c8a57c1dd1c2a78f63a01560c.json,sha256=DF8NlkGBU4gZQAR_2RipobDoJtphibBX9Sfk7Wxyb-I,2138
|
|
7574
|
+
xinference/web/ui/node_modules/.cache/babel-loader/920b82c1c89124cf217109eeedbfcd3aae3b917be50c9dfb6bbb4ce26bdfd2e7.json,sha256=8jskAas2irN63pP157Y4TjjtfHz70teN6b0sCwaEUpM,10411
|
|
7402
7575
|
xinference/web/ui/node_modules/.cache/babel-loader/920d6f3ce59928d7572b8e0d1140ae153b55c628b77b3facc5292e19167990db.json,sha256=I6DIPfqFaucON5nwJkGCJlIBW0m6gw-FjFZa20wkdwQ,1235
|
|
7403
7576
|
xinference/web/ui/node_modules/.cache/babel-loader/920f9fe717782fe26fb8f30b632b38d0b37ddf355c64e419bf0fd6154d5a9230.json,sha256=kRIDC4maFqg7y3bGEkZpTDp5SmR0tOJlDsIz65O41Og,3019
|
|
7404
7577
|
xinference/web/ui/node_modules/.cache/babel-loader/92113ee06f72b6b58cabd2750bd3adbc124333ec15d47133bffa781168e8437b.json,sha256=cCOr_4iNDCBtV0fFgLw6BXK0gfWIJvucL7cO9xLmnSU,1359
|
|
@@ -7464,7 +7637,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/936191405cedf1dc023ce02fb8ee4
|
|
|
7464
7637
|
xinference/web/ui/node_modules/.cache/babel-loader/9362081e3220d1a66035f5551df8ce48c68232e69dac641f7bf97bf6eca37d1a.json,sha256=3wOW1L4ZQiocld1VJExejkupK7_y4nTp03ffgtCdqQM,2100
|
|
7465
7638
|
xinference/web/ui/node_modules/.cache/babel-loader/9362faf720cd13316df81a48e9dca2a341583a60d2937539d0c261778a6bb64b.json,sha256=m7Rv0SjT5B1H5pZubG6kgWZT2nuu0McW0J80HZC0PDk,1850
|
|
7466
7639
|
xinference/web/ui/node_modules/.cache/babel-loader/93695962f47a5148695dd9b5ec329ae7cc81ecaa5350ba37e0d87f4bee521ba4.json,sha256=KbQuIgov62XjgOfB-V1433vCG75188dQfZoF9R2VoZw,1108
|
|
7467
|
-
xinference/web/ui/node_modules/.cache/babel-loader/9375a35b05d56989b2755bf72161fa707c92f28569d33765a75f91a568fda6e9.json,sha256=CgvF1f2BmrB_2gHP2I532N48ltL1J7-EMMTC8tUvEbo,17398
|
|
7468
7640
|
xinference/web/ui/node_modules/.cache/babel-loader/9383e98ac3705a89485275840bba8547747c8be7a828f9c4c7d163f5779f551b.json,sha256=kRmArMGCOgMFq69dQchDbkr6Mu58bKUriilXJa5HjBQ,1319
|
|
7469
7641
|
xinference/web/ui/node_modules/.cache/babel-loader/939558ae0d8556c785a039f6e62290cde4120a4d5e33d461bcfe1fec47490167.json,sha256=e84IpLcGgwr7PPHLWgVeIECAx3GYBARiBi-QY70l2hM,1376
|
|
7470
7642
|
xinference/web/ui/node_modules/.cache/babel-loader/939634d675d11ad4483e05d76a76f3612e7dfbd51d10f822173a232b080be37a.json,sha256=maRQ9zTa_pgLpP3l7GMFY-kgr1T85DHz-0ivU_m3vCc,1339
|
|
@@ -7520,6 +7692,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/94b0f4f03e0ede6bd1805c508584e
|
|
|
7520
7692
|
xinference/web/ui/node_modules/.cache/babel-loader/94c9695bea80bb99ddece5ea38dab75d5b98712c8d29848c17e1bf38269c40c4.json,sha256=wofa24gXQM0Mf8DcFcdIul4BbUdchspBY8ECE6adyfs,556
|
|
7521
7693
|
xinference/web/ui/node_modules/.cache/babel-loader/94c9c43d8e1ab8c0c05effcd7e91688ba281e150a75032f7c585f7b6f55f8875.json,sha256=d7xNmHWjbsSoPY5_lhqCWMT5QeQbbu0iqMEDbjwSolU,5281
|
|
7522
7694
|
xinference/web/ui/node_modules/.cache/babel-loader/94d11c7f5eb1e85ba07651e2307f3a77430af4151de51cb358d2313d5613c6ee.json,sha256=kbct48GgUYV2vanfUFK42imjh5KNeIDp-zjH8JSnHbE,1014
|
|
7695
|
+
xinference/web/ui/node_modules/.cache/babel-loader/94d8b7aeb0076f2ce07db598cea0e87b13bc8d5614eb530b8d6e696c2daf6f88.json,sha256=eN3mN8QcSz7GzdYWDAGl-trPJ0HxEfaUaoPzmD5iDTA,1617
|
|
7523
7696
|
xinference/web/ui/node_modules/.cache/babel-loader/94dcbb4f484214e3d59d063d48a60e6ee91fa68ec0e31caba2e6549a4276e5a6.json,sha256=GN9axFOADAcFjWZLn3SMtEyxmq7aZCTskSWXkNJ5UYY,1170
|
|
7524
7697
|
xinference/web/ui/node_modules/.cache/babel-loader/94e4b89a17218bbe639078b1f8aab5c5c35914b5804b3fc011ca01d03f88502a.json,sha256=VTFcCCdzO3ZzA4kFDWgSkyHxObzYRNzMkHT231R4yPU,1487
|
|
7525
7698
|
xinference/web/ui/node_modules/.cache/babel-loader/94ea43c15b867e78c52b79f3144b7b3cd5d32463a97ad5f3cbbf35437413a0e1.json,sha256=QKwxjvAHY0nhNxYYHTmnf4rPUj1fRcqslumDSLuafZA,2335
|
|
@@ -8003,6 +8176,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/9e6ad10661a4082f20cccd55db5b1
|
|
|
8003
8176
|
xinference/web/ui/node_modules/.cache/babel-loader/9e72d38977a657d7aa36a0a2969588d383159fdc0a79aec83b1b81195651d2b5.json,sha256=RMm8SHE4SrBSEqw4j5up5v0QZGjnYqXblAW5N5eT86Q,1657
|
|
8004
8177
|
xinference/web/ui/node_modules/.cache/babel-loader/9e737edade1ae2379e877a5c8bc240019bcd51baa587cc60d0e27aad3315040c.json,sha256=PHfCDb7D4EEhdu9Zp5KLAfwsOOXYCOyVDrVKP6FSDRo,1040
|
|
8005
8178
|
xinference/web/ui/node_modules/.cache/babel-loader/9e8d8fe506a02aaa4d4e59f0c2f2b7fdef75019290c947a4cb7f47cf4e58db1d.json,sha256=x_Fi0j2AcpVCfnJ47DAx-ZacvSK1h0_HdJHuYCGlE1Y,2836
|
|
8179
|
+
xinference/web/ui/node_modules/.cache/babel-loader/9e917fe7022d01b2ccbe5cc0ce73d70bb72bee584ff293bad71bdff6695dee28.json,sha256=PqJkB-sqfDG4KhrhzJs3GJan9QllR__4iTnW2EuPLFY,2243
|
|
8006
8180
|
xinference/web/ui/node_modules/.cache/babel-loader/9ea4fec8cb1f93fe835bb387abb02470d3908bbe791a1654d5e275f930c141b9.json,sha256=pk9S2kPk5rtPy5glYcqVHU81I2KGp3s4x-5Izl2dxg4,1098
|
|
8007
8181
|
xinference/web/ui/node_modules/.cache/babel-loader/9eb72c1ec4c1079dca6fc5dfb83ec482bddc60a2f5e4120d09a779940c041e39.json,sha256=Aow4HwXemp615VTYNbI2s2YS8SKGTRbSRiEH4mqjsMk,982
|
|
8008
8182
|
xinference/web/ui/node_modules/.cache/babel-loader/9ec09f7a480a10a4af61cd1c47f7c3f2655daa85ec0a2ffd960e7f01c105a246.json,sha256=FbE3NcQoupw_lHgcKlRe0L2ZyGKQf633H36G3sVNGIk,1616
|
|
@@ -8019,6 +8193,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/9f13e22a760a64e5fde6a6468334c
|
|
|
8019
8193
|
xinference/web/ui/node_modules/.cache/babel-loader/9f1485bee312f70d9df5af30bcadbb965fd69d24983fc8e61c8822e095a60831.json,sha256=nwMobIAgrXcg8m5x3Zmehi3B6rtnRfPP3dhMaZnSPhQ,1360
|
|
8020
8194
|
xinference/web/ui/node_modules/.cache/babel-loader/9f1533b76c05b607f4aa053142801144f89d7f697e763b4415dc9cc3ab1027e3.json,sha256=CdlWE2OsyCcLBkT7h5d0_eMDEEspz0kLEY0F2su4rAE,1310
|
|
8021
8195
|
xinference/web/ui/node_modules/.cache/babel-loader/9f1eb609a04326c5abf0935502456fec85f5e079ae10136841e08d25ffad6434.json,sha256=KB9n5WmmM2trjIFHaTd9vsBtBUlLmliYEFk39V0eMQ4,3560
|
|
8196
|
+
xinference/web/ui/node_modules/.cache/babel-loader/9f28fdb8399f1d0474f0aca86f1658dc94f5bf0c90f6146352de150692de8862.json,sha256=gbtwG1aieJgf2ecBtXFeYoDr9sEg2OFsNSiNLpHw6DM,20249
|
|
8022
8197
|
xinference/web/ui/node_modules/.cache/babel-loader/9f2df2dc11193a6526e70ac3df9c93e13e35a690561e229f84ec2b01415af325.json,sha256=Hul2LoVgWpJwHy5ElHDCppjKSyUll9rNvZpidWJhJ1w,342
|
|
8023
8198
|
xinference/web/ui/node_modules/.cache/babel-loader/9f305bdf5b83d6b4c3ba238d167462cafe546b11ae5b9c974c6a1102d10679d5.json,sha256=-mvmhSEEbNkVpy46F-OEjxBBETz-bCO08hA4FZKQrMs,1034
|
|
8024
8199
|
xinference/web/ui/node_modules/.cache/babel-loader/9f30e0fafa77da0cd0d0df4438ce0139b85192b106eae8de4e9b6fea8167a746.json,sha256=RhE10-CqGiqJx_4kmpuOOSRunHlscFEuAM-8d4-7Zow,1845
|
|
@@ -8104,6 +8279,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/a0b76bac13a310c2b8a7ccf7abbca
|
|
|
8104
8279
|
xinference/web/ui/node_modules/.cache/babel-loader/a0bbdb95988edd8a3b4ded73c8aa9c9bf03ced18602b16ea337ce336c3bba7d7.json,sha256=p_ws0-h_Bcjsrj-7oAC4ve7fW_aEf0xEeildxoYgrOA,1622
|
|
8105
8280
|
xinference/web/ui/node_modules/.cache/babel-loader/a0cbd1109fd3edb62c09cfa629a1e540df07696aaa14727011affca41e6f3918.json,sha256=AdzxBy2lV5isM5uvUskacK13xwUtr2dHbW9AnRvF8_I,1049
|
|
8106
8281
|
xinference/web/ui/node_modules/.cache/babel-loader/a0ce3efb790a2bf4f30dcf3991ee08ed22d5d7f511976434ebaade3b94dd7080.json,sha256=xtYVwyynEqG7GZ_Saq3osjyrFFC2V05Btjw2fHenykg,1410
|
|
8282
|
+
xinference/web/ui/node_modules/.cache/babel-loader/a0dfafa06b2bb7cba8cad41c482503f61944f759f4318139362602ef5cc47ccb.json,sha256=Z7jwSX1bJYrusAaWrmb7p8o2Fj0-4WYw3xsl9y8zUYk,2380
|
|
8107
8283
|
xinference/web/ui/node_modules/.cache/babel-loader/a0e1cb99eb387f8fe9d76cbe9aea826aacc98e970339d672dbd18f70b98fcdd6.json,sha256=310uzz4svblKrdY3qYNAqzqQKs4xxvH9zNO1rRmqd20,1057
|
|
8108
8284
|
xinference/web/ui/node_modules/.cache/babel-loader/a0e5837849d5ee044cd7bbca074613a51d1d39d0ad5268a9667494bdc2a591a5.json,sha256=Zi-8y42SMnC8gTJ47sAA8tGSdS1cBjbhzs32H7-adsc,1705
|
|
8109
8285
|
xinference/web/ui/node_modules/.cache/babel-loader/a0e728a47a8fd631d2c9674d34b2210fb7457bd94135d2027476994437799a2e.json,sha256=YnI4tKuXroCNi9bbbWPyoZ_00RGXcSu6YilQxK9TT0s,1648
|
|
@@ -8126,7 +8302,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/a144e72375aeb7e8baad14951a3b9
|
|
|
8126
8302
|
xinference/web/ui/node_modules/.cache/babel-loader/a14c964f4b3c5f594df50c01028f1d52ccd465a54b625726315c11aa94755996.json,sha256=EtPwv3i77PoZvpfapLOoeMQ8ykDCTzmtFfvt15gRj58,5599
|
|
8127
8303
|
xinference/web/ui/node_modules/.cache/babel-loader/a14df48c7e270ad325578b6ae2d6853de6f195baeaa4338bdb845cbf4c13ad95.json,sha256=J8Eaonm8b35WU01kos-VzhSwX1qO2s6OdlH_1brcHtI,1538
|
|
8128
8304
|
xinference/web/ui/node_modules/.cache/babel-loader/a15424231fe92924202910b264aa147987349c90e04c3e370f1457cce81c0601.json,sha256=X6D92O1GQzDUZ67RhROjZBBZL89mzeMo-RtY_8x3Tu4,2171
|
|
8129
|
-
xinference/web/ui/node_modules/.cache/babel-loader/a158a9ffa0c9b169aee53dd4a0c44501a596755b4e4f6ede7746d65a72e2a71f.json,sha256=w_Q3mk-_nN613MQktkoIUDqRPBKpLNjDN8eX2du-2ZY,3262
|
|
8130
8305
|
xinference/web/ui/node_modules/.cache/babel-loader/a15909e899522c2865413f4a2db9563ec2bdc405b935c5c0cafd23dca7d2c4bc.json,sha256=7G9bPj09hSG2fqaVkajyM_RmDh2hua9Pn2H6RwZXpqw,1471
|
|
8131
8306
|
xinference/web/ui/node_modules/.cache/babel-loader/a168a75db326831150937465cabdde8a566dda85f2d7616587e7d911587b10db.json,sha256=ps6wyn_sIqytr4p3mMqjkuyTARv1pgkp39H5P6Io8ss,2687
|
|
8132
8307
|
xinference/web/ui/node_modules/.cache/babel-loader/a1741432f05cfe278c93a0478230c1985ff6b90aa3446a88c871ceb39f719c43.json,sha256=vQixRXxKlCy5dsl6z8s_yQPL6WspA3Kf2CbfUd-EqDg,1050
|
|
@@ -8249,6 +8424,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/a3ef0ae53a0b4f21d85bbb4fb5a82
|
|
|
8249
8424
|
xinference/web/ui/node_modules/.cache/babel-loader/a3f03cbec4df500cce421fd1efdbd64a09173bcf57b05feb9bcbeda965d4d22b.json,sha256=lQ_YeeXrjiIZ8AjpLYAb4cPseEmYd6mY8hBwSVuUv9g,1274
|
|
8250
8425
|
xinference/web/ui/node_modules/.cache/babel-loader/a3f0fd5b99583db00436a6495f05cdd028a382de4c03a62925aeaf5af8a26af2.json,sha256=Xuf0azpq-b2PiR1d-JhSUwIXUtvBJQWmCxG6oldAJ6s,1812
|
|
8251
8426
|
xinference/web/ui/node_modules/.cache/babel-loader/a3fd339d82e8c1c17f1ffaff55c9e724a7549ac2c5a8ab75b6d67898c16a67f8.json,sha256=VSL7y_QTFuxxgtzTbPrlaMQQzZB38mb13kI5zDBT7G8,2177
|
|
8427
|
+
xinference/web/ui/node_modules/.cache/babel-loader/a3ff866acddf34917a7ee399e0e571a4dfd8ba66d5057db885f243e16a6eb17d.json,sha256=tKiB9Pweo7P8IQHo0zkfiRslIvhOcXPm1RdXE-YOLmw,208053
|
|
8252
8428
|
xinference/web/ui/node_modules/.cache/babel-loader/a400ae3500d8e2480ef56b672afcb3828cf2c620b7daa9793fbc3a9f62f9b8b1.json,sha256=Ge0HJ9BgWGRizmVVGtI6dNcfilL1p09kHkywryhrHh4,1866
|
|
8253
8429
|
xinference/web/ui/node_modules/.cache/babel-loader/a403ca07d8be675101f9d4bba17a4268c0b16e88c3bdc347ecde94af2957679c.json,sha256=sQw_AHZ4NGV7OGQAZbx36pBA6I3YD_EPzU4A7cq1-Es,1137
|
|
8254
8430
|
xinference/web/ui/node_modules/.cache/babel-loader/a4045b0f07b6077cb028d95a9b91c70ea074012362104bb480bcc509c3171605.json,sha256=qNjnWGkFt0aew4zPpIUshTQd_SMcqoi1m2dZJlEnVnk,2078
|
|
@@ -8803,6 +8979,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/af9c5358be1f0c3f2045d182b7432
|
|
|
8803
8979
|
xinference/web/ui/node_modules/.cache/babel-loader/afa58df73c4d36d7e8b3dcb1ad8ae477bc4b95054b391acd5b6fa441be4e0c7b.json,sha256=EvMabD21uMftgsK8yjLHWaaMROedFyNpARLrEr-tMsU,2938
|
|
8804
8980
|
xinference/web/ui/node_modules/.cache/babel-loader/afb0061e3310d0d4b194a6b68a9a5265e4b56ddb319fbe36b16b645b5ed6c14d.json,sha256=VgAjP51d_Vtb5Oi87qYNxKJIAPd9oxIBfIfbgbdqVrg,1523
|
|
8805
8981
|
xinference/web/ui/node_modules/.cache/babel-loader/afb2aa6bbe1fc02cf56ae07bb5a2e38b029c8d27310c3714146aae1e70abddc8.json,sha256=nTSvYbrlKFkiZmLIWfwPOilyCVfHD1xFIAnHIPWfGvQ,1176
|
|
8982
|
+
xinference/web/ui/node_modules/.cache/babel-loader/afb8084f539534cd594755ea2205ecd5bd1f62dddcfdf75a2eace59a28131278.json,sha256=XwyzHg5x50LeY-KkJYhrrFPNMjB722ziUOdToAo2x-k,3620
|
|
8806
8983
|
xinference/web/ui/node_modules/.cache/babel-loader/afbb9fe60ead88c9859d1e6599d3fbd3243396588a4f62610595483f86c2a725.json,sha256=q1Fex1RDqHmM8x62LMh9RlRDcI8o3DA_NW3wzU9UtYA,1061
|
|
8807
8984
|
xinference/web/ui/node_modules/.cache/babel-loader/afbed5e07802c1062264d40c1b68f7daa2c24602b285986c9284de6b8e8d2496.json,sha256=9CvUu3lVee6_8hA1lha01pMxtrfWWWoIzBnHHuNbb_U,1725
|
|
8808
8985
|
xinference/web/ui/node_modules/.cache/babel-loader/afc99e4120220278a41a597b1a59c51d5ccff28cba12188e2d8801fa8d624026.json,sha256=XMdsuqYUYkIM-_KI4J8l99CPk3egjq_a3noS2tBJLbM,1112
|
|
@@ -9056,6 +9233,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/b5727a5b78ab17e419b03b737deae
|
|
|
9056
9233
|
xinference/web/ui/node_modules/.cache/babel-loader/b573fbd0aa291403a74b3835baf1918c71f88361c24727b7b2f4ebb8263af5bb.json,sha256=FiVOKiDU7qOsaEbKBi0QygafN_BM0kHqxVtwX0Bip_Y,1169
|
|
9057
9234
|
xinference/web/ui/node_modules/.cache/babel-loader/b576603d0e81f79f9e92d58adfb234d0cfff73c542893b8cd36ca6700565ab6e.json,sha256=tmFyf5Esauz31w-EyfjIeHZla-GBetI9Ifl1QRe5XF0,1531
|
|
9058
9235
|
xinference/web/ui/node_modules/.cache/babel-loader/b57b00bf3708bf1ebaebeb6ebd1bf2ef8050aa6d97efcbfaefda35daea67041b.json,sha256=BziE8A6q6ghoFYqueny9Ia7QDIkGDZBu96l5E2do7C8,19863
|
|
9236
|
+
xinference/web/ui/node_modules/.cache/babel-loader/b57b1438b77294c1f3f6cfce12ac487d8106c6f016975ba0aec94d98997e2e1e.json,sha256=9JKu3ZNHuMC6vt76o_oYEMvD3KOhC6C2m5WwjU-r4Jc,4101
|
|
9059
9237
|
xinference/web/ui/node_modules/.cache/babel-loader/b57ee1926e592bc276ac4af8db1484ae32856d1b566c64ca18a5aa8d98457964.json,sha256=8SXD6Ur3HZk6RMKF0AP9N-jpcFNPHIHUqwQk94YqKl0,2163
|
|
9060
9238
|
xinference/web/ui/node_modules/.cache/babel-loader/b5849300f33b3f37a5dbcfd587a2c1105f6eacc94e2c1b23709171fe1f481da5.json,sha256=0eWe1qxeDceZUx7QIskZwievaS18xzKTp4tIsIZb_2U,1579
|
|
9061
9239
|
xinference/web/ui/node_modules/.cache/babel-loader/b58637ef36a84b22691207aa8c680447fa170888a2602f4d960c0863c13c50f7.json,sha256=vTuQAlslgO_UydY-YCmgyTBboGNswzMWb2JiYQP-VM4,1184
|
|
@@ -9235,6 +9413,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/b97f133a446f86e6c47695cda85ea
|
|
|
9235
9413
|
xinference/web/ui/node_modules/.cache/babel-loader/b97ff14615bf37dd4c59670c671e1123718c8897b7e827d446fa13353c6eaa8e.json,sha256=Ayv6Gt6ZGznJB0GA2JRWv7mMVHeHptNvosmgRL1w25c,725
|
|
9236
9414
|
xinference/web/ui/node_modules/.cache/babel-loader/b99100b619d1ff500564b30d09434cb2d2c4c451024de7d8d225c8dc7015fe21.json,sha256=iwSTAL3L0KGFzM5Ss9CDgXhySd-P6F0B12uiEVhqf24,1145
|
|
9237
9415
|
xinference/web/ui/node_modules/.cache/babel-loader/b9912680c2f3534dc079567b486a9e69b31ad14b20693be7a484e55416a23f9a.json,sha256=tY3FPcnxSBG8hVgeOq_pAaklRR3favhm4EwY8XJUthg,1291
|
|
9416
|
+
xinference/web/ui/node_modules/.cache/babel-loader/b9917b0bf8e4d55ccbac1c334aa04d6ff3c5b6ed9e5d38b9ea2c687fa7d3f5a9.json,sha256=X9DYyRuYsfxa10Co0NuJ6XMeWk5stQn6GpOK_fSaxko,1529
|
|
9238
9417
|
xinference/web/ui/node_modules/.cache/babel-loader/b99608b9d7aaa130102dd9b68d797bc0d033fc392f1c240173cd4a6d6f2221b6.json,sha256=YmbnZnDlOJc9m125hplE8k-Rit71pfRfewWZn5pwivY,1247
|
|
9239
9418
|
xinference/web/ui/node_modules/.cache/babel-loader/b996f86c86a7c7629454cdca619ec56f755e415461642d61c3bdd4b19444edd9.json,sha256=SPw70Z0MCdSUj0gKIC_c36Wos6UQlnWUz0-uIEBq-ug,1702
|
|
9240
9419
|
xinference/web/ui/node_modules/.cache/babel-loader/b99a26a3b78a154d75ca8367d480026f3cb765bac64c8b0f67cfb6a49e240c1d.json,sha256=Ul3w7nVMxZA1DqreP8xjl4UHegO61_UHouU-Hep1Ohg,1081
|
|
@@ -9354,6 +9533,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/bbc4186a2ddcca934657809291039
|
|
|
9354
9533
|
xinference/web/ui/node_modules/.cache/babel-loader/bbc8c4c2cc2bac7bdc1172148ba05c93a5e0fe0e4e5e075d314bc2dc10ce8170.json,sha256=gRDxcirP10lNpQKKRQSNi3IV7qeG8Rs-mnXtEvq2bcs,1674
|
|
9355
9534
|
xinference/web/ui/node_modules/.cache/babel-loader/bbcaae650f13262255261ca170b7dbb26d1b2abd58645a3b0bea6face7705dcf.json,sha256=qTub7DTiy6ZIH9exQ35XoK5JDOXGcbD_prkHuU8qZZE,2006
|
|
9356
9535
|
xinference/web/ui/node_modules/.cache/babel-loader/bbcab55b5728fe054db4fa453d8d773d438d9bafe1aef8bf34a6a732a8c7a920.json,sha256=8OVNUeWnXD_toI8qfD_klsviVwa1iHn2GXg831NimOA,2256
|
|
9536
|
+
xinference/web/ui/node_modules/.cache/babel-loader/bbcc94b0149963d1d6f267ee1f4f03d3925b758392ce2f516c3fe8af0e0169fc.json,sha256=MuiqRtEvJya07JgxBT5bjJgNNW4QM5--O5a18g-FnfY,6459
|
|
9357
9537
|
xinference/web/ui/node_modules/.cache/babel-loader/bbd00ac8f49e11e901afd45941fc0989089e8ebb4386933b106ccb27145aa392.json,sha256=SZ86vd5v3szzwETzxRbjOWgwQjHiTrZI3RHljZGros8,1854
|
|
9358
9538
|
xinference/web/ui/node_modules/.cache/babel-loader/bbd6fd9570a9b71930b6bfae217255b0c82b4ece30f1b76edb9a80aeee4d8d13.json,sha256=nK3nMVSUs0hILyHPOxebC6HNgB_NibWmjwXFtyqw7No,1814
|
|
9359
9539
|
xinference/web/ui/node_modules/.cache/babel-loader/bbdfaf8b8dd1ffc1904d09360a95b75715da3af38ef948e2f0205413b31bc272.json,sha256=iS0Lcoi5nzSxx8fnI2xmsaMU6dROtLZDsMsWu5Lt2ng,1367
|
|
@@ -9414,7 +9594,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/bd55c70319dbc19ceec0f0acfd8ed
|
|
|
9414
9594
|
xinference/web/ui/node_modules/.cache/babel-loader/bd5faddae8fd655cc1db76fb5119e0f20685e414b354c19fc55926914ec64e0f.json,sha256=7hj24Mwy05PFGaav9LsjVMoYQv9lOOcXQaUK15K9mjo,1693
|
|
9415
9595
|
xinference/web/ui/node_modules/.cache/babel-loader/bd6254d64cd97a3fa5456e01e896e803275ea461980e7c2b6f22e7875a605e2f.json,sha256=4Imjadq6nfq1gn0M0UrR2iwr15WmFQ8YPpkL9U73uHM,807
|
|
9416
9596
|
xinference/web/ui/node_modules/.cache/babel-loader/bd69f67515abb09f7746f74513f1094198c604ffc9a0bab4b4d328e9a6d44a1b.json,sha256=cP0-aLAH3o6k_Y_BNywyr-LGQTsGcKbMfYm9ciiYE9g,1263
|
|
9417
|
-
xinference/web/ui/node_modules/.cache/babel-loader/bd6ad8159341315a1764c397621a560809f7eb7219ab5174c801fca7e969d943.json,sha256=vK_50akBXt_n6RuP1yHaz71-pwUzDKkk6EsHNGLqPIM,65089
|
|
9418
9597
|
xinference/web/ui/node_modules/.cache/babel-loader/bd6e3b3cbee9f2d64bbc8c62da1a628a8a8ec2f5037697a950f5c363a619e7aa.json,sha256=7iquDU6fzG8wmI1-_ZuH9tphn_EgdNLqWkZszgqTa8w,1113
|
|
9419
9598
|
xinference/web/ui/node_modules/.cache/babel-loader/bd918644e0ecb7d99e41af695ac8a8d371eb497b9062c83fac3fceb8f903dff0.json,sha256=Akmf_Wc8uIU0Ba14mCw4ZYwMAoC_8Luxsi2eH4RbE_Y,1897
|
|
9420
9599
|
xinference/web/ui/node_modules/.cache/babel-loader/bd9187144579112dafc1f14ccafaee12259e75aa8ecca852b0fd0a58c9ddeddd.json,sha256=uHo_vmj_Cto-nqLwe4HBdWHvNZF0vgVaO_LEuCp3uq4,324
|
|
@@ -9438,6 +9617,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/bddca250ae18a2696bbae53d390e9
|
|
|
9438
9617
|
xinference/web/ui/node_modules/.cache/babel-loader/bddcf875e7612f82fb68763864baa7e53c50ca47fb4290d22d5b0323bccf5e43.json,sha256=Zm2AWMJq5ilNwPUwia8LyMptmv86K23wBCAb78ifqlE,1733
|
|
9439
9618
|
xinference/web/ui/node_modules/.cache/babel-loader/bdde6847c5379a134b5252a5f7d26a378ad9d3ea2093eaecfaa004a4bf89abf2.json,sha256=wOFW5dtHekchvy75h9ucpl0ZsyykrdbkKwFk_QYX4yk,1429
|
|
9440
9619
|
xinference/web/ui/node_modules/.cache/babel-loader/bde9859bea957ff39d263ed67deba7deeae75f8845c1f8003fea3246f8b57600.json,sha256=xvBOjbLMtdtwYJJvw75pzttx-2ru1nsaROIVBkJvOxs,1457
|
|
9620
|
+
xinference/web/ui/node_modules/.cache/babel-loader/bdee44abeadc4abc17d41c52eb49c6e19a4b1a267b6e16876ce91bdeeebfc52d.json,sha256=8eQm6DyfNyZdU73Jws0b_m9ff-GMPgSdyKve5GBqRdk,19092
|
|
9441
9621
|
xinference/web/ui/node_modules/.cache/babel-loader/bdf3d4cfa020bfb455525c27c7a9661b7854c75ed7ac4c36ce4afcb6b981e2ff.json,sha256=YrKnAxiyR1jpG03GLKbLa_vS5SPPpmyggMUbuuVIsjA,1699
|
|
9442
9622
|
xinference/web/ui/node_modules/.cache/babel-loader/bdf756f0d0bbf8d2ae6cb9538393af1118d7c44691c1f94eec29fa84913e8b08.json,sha256=xF0y-_ruI66csnjfPLRTmhWasN3FqNSW5uEbDCqHJUQ,1487
|
|
9443
9623
|
xinference/web/ui/node_modules/.cache/babel-loader/bdfb6076ee258bd3cde6a565faa4d4324d3624daaa4d2eac9dc803af3822da02.json,sha256=_dVJY1TqVGb72DTZZP0sKNVaDveZ6OaQHelivCCE1as,494
|
|
@@ -9475,6 +9655,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/be97f256515876e5e5be612ae46e2
|
|
|
9475
9655
|
xinference/web/ui/node_modules/.cache/babel-loader/be9d37ad8415a1a46bd39a4169efd97edbaf562dff5181bb5ad27fe859595397.json,sha256=MnGynB1GSulHEhXyX-wQLTZToQy71aqLelZW-MAiCqw,1044
|
|
9476
9656
|
xinference/web/ui/node_modules/.cache/babel-loader/bea14737a4ae8819a269a8468e245aa296fae6a3ee3bb24d36e6a8651d9dea70.json,sha256=OKKx8y2cWV1dKCXvQrhx2aOxbD1bksByAS98b5DXeBs,17606
|
|
9477
9657
|
xinference/web/ui/node_modules/.cache/babel-loader/beaa3c94444e1cae0d4ca225ea5b8032e139610709090088f92722c12032c0ec.json,sha256=3NxvGI6tjRZidKwXAk20usYjCKCZ1qni6-_LvDTdZm4,1472
|
|
9658
|
+
xinference/web/ui/node_modules/.cache/babel-loader/beb112b70f4a56db95920a9e20efb6c97c37b68450716730217a9ee1a9ae92be.json,sha256=qKMkpUI9HwTxBr008VvbShFMDR0fd7AzovnuKTy0eaA,16659
|
|
9478
9659
|
xinference/web/ui/node_modules/.cache/babel-loader/beb26f8e05f0ef535ef7405b2d20319babef98b7af43443dbcfd2e3247e85439.json,sha256=8rtFDI1d4nUM3WHyKMCIzJJB3w_HhRUsduwtNa4coJw,1775
|
|
9479
9660
|
xinference/web/ui/node_modules/.cache/babel-loader/beb50352ab2206bcdb97745fe7e8cfada072bbc0346adedfb3960ce2c5f12565.json,sha256=Azf59Ux3VDNgNQhOhJNyHfBbuK6JsT54D01_g3YYEps,558044
|
|
9480
9661
|
xinference/web/ui/node_modules/.cache/babel-loader/bec3a43a9cb807c601aaa615d96b8c04707572dd6bb7313c6921a1ffbd0d2b91.json,sha256=o2HQ_TQzoTkcbvyFM9eXKqqigVK9gK5fGHS8XdrMT5o,2079
|
|
@@ -9884,7 +10065,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/c794daf613ddd9142366357e09711
|
|
|
9884
10065
|
xinference/web/ui/node_modules/.cache/babel-loader/c7aa20ac57be2861a8c571b55f5411843904f2bd134bf0d3e8afbe85f7260715.json,sha256=lYa7T_mmP1UoLArApGXVhWEev5ZSFapDHqsUq41tDHM,1029
|
|
9885
10066
|
xinference/web/ui/node_modules/.cache/babel-loader/c7acca6547f99d9b9567fad4a2facfd526d336ab01005f6c74cca5f9efacc19b.json,sha256=_yJ326jZpvxmBMpf35g1SA2Vr6pquXJigTkgt4S3EYg,1669
|
|
9886
10067
|
xinference/web/ui/node_modules/.cache/babel-loader/c7bbf1207d587797be6c4797903b294efa7b08baded26a7df5223ddc7e639924.json,sha256=whjHlO5kuilci2eJ_lgEQwAewMJqVheYi__6iFubB0g,1273
|
|
9887
|
-
xinference/web/ui/node_modules/.cache/babel-loader/c7bf40bab396765f67d0fed627ed3665890608b2d0edaa3e8cb7cfc96310db45.json,sha256=2FcHTVbxn7nlJjR05wRgqy0opLopdD38ZY0RRHc3sV8,132660
|
|
9888
10068
|
xinference/web/ui/node_modules/.cache/babel-loader/c7bf5e13f8b336cdb46a6a3a50ff314248b33ed3c7e92eee011f83fcbee82725.json,sha256=C5u-uVYiYbqiSgvghD2lnZuSHDuUpF5mA24qTZExld4,15906
|
|
9889
10069
|
xinference/web/ui/node_modules/.cache/babel-loader/c7bf9982a714496a1410049be141d9f21e58e47af6fd6f123a6097933c804dd1.json,sha256=tf_msOTTEo3AkmUjNKDnIB1DQ9YbwniLNGvdhanFxzs,2541
|
|
9890
10070
|
xinference/web/ui/node_modules/.cache/babel-loader/c7c271c62e079b812ede2349098c8fbfd40f4760bc0881b7a25ef060f46ef5f2.json,sha256=5OeiLeelTM3VdQtpdRsgg4wIB4LHgNchGIRzdFpYf9U,2099
|
|
@@ -9938,6 +10118,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/c8785e29f9c39fefd01a02780a7ad
|
|
|
9938
10118
|
xinference/web/ui/node_modules/.cache/babel-loader/c87c5a5250c1d94cef1e54f5853565f568f162149ff14d6b177f3450734826bc.json,sha256=VZ_Xk65BLDPCyBbhSEGse6GEnV0veyN3WdcqN8FOdzc,25597
|
|
9939
10119
|
xinference/web/ui/node_modules/.cache/babel-loader/c88a4ea7702b7119ab44c3a25a93c3ff60c7e8778aa69f3553bc6ee33824b4b7.json,sha256=bkYCIPpbn_clLCCzD4VyzFHTFB2YYUL6V3rFgjtDs_o,1971
|
|
9940
10120
|
xinference/web/ui/node_modules/.cache/babel-loader/c88cd946d36c920151cd640f21b9d8c51d9c51f346a354d7246faa9248c48434.json,sha256=XPLAf2sRCd2duojlTksKh9UJ5QfapPWiQuNGFldPcqI,10392
|
|
10121
|
+
xinference/web/ui/node_modules/.cache/babel-loader/c88db97be0cdf440193b3995996e83510a04cb00048135485fc0e26d197e80b5.json,sha256=bJs8dZFXb3EykgG83Z43GNiKsbbccY67LZEvQNlMcIk,803
|
|
9941
10122
|
xinference/web/ui/node_modules/.cache/babel-loader/c8914a520ef220b4266504cff673be621ab89c2508d08848d3a00de04dad8063.json,sha256=M8YZtERBH8PwAQqox5cRooyuGabvC_6xRJWVogap6JU,1674
|
|
9942
10123
|
xinference/web/ui/node_modules/.cache/babel-loader/c89f391c889e3af4d427165408c303b4771becf1e011d43543b8362cfdf95d81.json,sha256=YMv9MdAxvghIwKRLx96YluhAtM4QQc-ink9irTmzUMQ,1408
|
|
9943
10124
|
xinference/web/ui/node_modules/.cache/babel-loader/c8a4d5f6f452d3627f56724cc048bf5d08af7aec16b4356ffe3ff82b4ff05e46.json,sha256=9LfJcS9ESzzzwuTNuuSy--ohUGnYlzS3-z84Z4DF0sY,332
|
|
@@ -10535,6 +10716,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/d4855301155938ea903b9eaea595c
|
|
|
10535
10716
|
xinference/web/ui/node_modules/.cache/babel-loader/d4966dc620e7bf0e8bf7504baf44347c25813274ad5f2a724ad1e4df901fe6e8.json,sha256=GpUVTit__5bAarooalCNuRWy4Ptb317dZgYAfeugYTI,2988
|
|
10536
10717
|
xinference/web/ui/node_modules/.cache/babel-loader/d4968010fcf6ab036a7a508f7bd80648711505448f7e1e644a1628237c2f88dd.json,sha256=-VvjSJzK-XaGx70rpGZMuy1aHW3QrpBg0dkEUUkTmDY,1734
|
|
10537
10718
|
xinference/web/ui/node_modules/.cache/babel-loader/d49b51099b169b5a53c319f4ae37d77a1c7d1e4d4c5012b7901b6fbf7f62fbf6.json,sha256=aydCBCI4TCUpd0vlx2K6sB660mYOKKklt3_Svy7C-Mk,1519
|
|
10719
|
+
xinference/web/ui/node_modules/.cache/babel-loader/d49e5314d34310a62d01a03067ce1bec5da00abce84c5196aa9c6842fa79a430.json,sha256=A3yJcReSSUjKT_YmSmDNdomU9OY9S8nm1tgiN7779tQ,4020
|
|
10538
10720
|
xinference/web/ui/node_modules/.cache/babel-loader/d49fe1d0f588279044b216cbc49d6952717c9da3242d57d6a857865d1e51e145.json,sha256=X14HWnrl-494OAyswnuV6zOrZYjn3OnicsAHlEN0MQ0,1249
|
|
10539
10721
|
xinference/web/ui/node_modules/.cache/babel-loader/d4a2a4d8d7b207fd947d9ba359aec5884f1c4c98dc60090baa98249abbf505ba.json,sha256=DsuV858qzC95oOrIjLFAu3M2s4o1_QC8TGv6UMkywJM,1138
|
|
10540
10722
|
xinference/web/ui/node_modules/.cache/babel-loader/d4a2dcf35318cd95780707fd5e58120da1de2200df631959e1c86ab05764acbd.json,sha256=Kg2KIBn8ylcpsccBXytSWRAQf81WfvYr3ICDmQy3r3I,1155
|
|
@@ -10639,7 +10821,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/d6b661fa1bf7211c773e0652bb74e
|
|
|
10639
10821
|
xinference/web/ui/node_modules/.cache/babel-loader/d6b7425238f565004db5df79e7b61a571789ebfff4f7ae65eef669d356290019.json,sha256=O9wJcEBe8FPgfZj7HVSnRMAKR1gzVfbFqVZQmlWW8lI,1674
|
|
10640
10822
|
xinference/web/ui/node_modules/.cache/babel-loader/d6b7ed323be423a58af3d7109a6bf501fc893ec1becb2c77370297fdd7a22b36.json,sha256=XYz33V_mFJfJ4mG6-Pig31YmMdDC3T4qrS1XiGxFir4,1694
|
|
10641
10823
|
xinference/web/ui/node_modules/.cache/babel-loader/d6bc59a190b6b65141f4168139fc73ec2b6ad14836fe6f3386dcd61fb99d39d7.json,sha256=H62ZgV9wlGeepP68tkxtJ77flZuuwAPOoCklNnuEvPU,1336
|
|
10642
|
-
xinference/web/ui/node_modules/.cache/babel-loader/d6c643278a0b28320e6f33a60f5fb64c053997cbdc39a60e53ccc574688ade9e.json,sha256=BxXZY4HaZo1NLKIbIDDwXZBlGQE6Yu5a3HlyavMtVoc,20555
|
|
10643
10824
|
xinference/web/ui/node_modules/.cache/babel-loader/d6cb17c6b5a4427f4e87f9f5b7cbb7e94286c95036c47eaecf4998fdb0d0e7b1.json,sha256=cApaGSHkTZsuoNWtkAQom9CeIXwIC9Bxihu0SgX55w0,1065
|
|
10644
10825
|
xinference/web/ui/node_modules/.cache/babel-loader/d6cb811acc22c9971b5f2bba3ada65b7546d1f6e055e07e930ed4f559f77628f.json,sha256=_FBjHRmRUuZX5ecWLO1GsaaxYS1knu9LTbuZWJlz0dw,1256
|
|
10645
10826
|
xinference/web/ui/node_modules/.cache/babel-loader/d6cbf32aa7cc6185ef2d4c18ca6669975eb04cbcbc84f5946ab5729d2949e416.json,sha256=90ucsdOyjCGTUgp-P3ljrwTgoalD054HcJv80aVHXnM,3233
|
|
@@ -10674,6 +10855,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/d75613f88a88197e115fad4878d13
|
|
|
10674
10855
|
xinference/web/ui/node_modules/.cache/babel-loader/d759b2241df679e1059e984966fbe1b81f30a651a6a8aa26ab73eb3756e66287.json,sha256=GusgrgttYr7VtkNgvUmB0Zc2d-GuQ107LThf6QdEgCk,1615
|
|
10675
10856
|
xinference/web/ui/node_modules/.cache/babel-loader/d75bd2b9f3cd24f7e0865a953dd4f8774d5e9f3c85fd51f6279105b2fdf245d5.json,sha256=sMbShos_gGR5VX3g83SqVHYuYF_UWviYuSgiEtkpCIY,1541
|
|
10676
10857
|
xinference/web/ui/node_modules/.cache/babel-loader/d760e46bd29bac1e8ccb58ec2f980ec7604c51c01bbff339d276b391fde84589.json,sha256=EDAxqswNYSv0iW8aVetIYgYsNm0WlrVxTIXRi1u8-p4,1292
|
|
10858
|
+
xinference/web/ui/node_modules/.cache/babel-loader/d7664d18c4ddbad9c3a6a31b91f7c00fb0dde804608674a9860ee50f33e54708.json,sha256=rOoDsHX9tvydOmOgiWdBXWGiVyC5qeeRjHRu_JmOoSk,14446
|
|
10677
10859
|
xinference/web/ui/node_modules/.cache/babel-loader/d7680380a675a9632f0861b67901d9dfc62977c71409126711644b510bf17e2f.json,sha256=SVKIMqJLsgScB4B_jLpVFVD60-Z-ffxQ2SnAscNdkHo,1298
|
|
10678
10860
|
xinference/web/ui/node_modules/.cache/babel-loader/d777212982ce7c44eec08a43ac0f5f92e31bc01431455dc16503287af91557dc.json,sha256=jjjIi1oIslJhj6qoBW5O1DmAlRPpGTTUgyh-_J044aw,1732
|
|
10679
10861
|
xinference/web/ui/node_modules/.cache/babel-loader/d79d0270028cdc880a77c99ef91be97ddf98199fd14e7c5ef097df499e031657.json,sha256=AeIpEQtHn_qkZlgZNZzlLyNeFC065saJFWy92d-M9Sk,1183
|
|
@@ -10755,6 +10937,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/d8ee3ff0ced6a25ab754c2a2accc3
|
|
|
10755
10937
|
xinference/web/ui/node_modules/.cache/babel-loader/d8f7933772c48137bc3b7f3297f8008c4a700f0d9048f07b0fbee9fbbf5483f1.json,sha256=yIfyg8qSQuq_zcAQYowDKckmVKivzflJrZdbut15tGE,1638
|
|
10756
10938
|
xinference/web/ui/node_modules/.cache/babel-loader/d8fa07ac6e86b8f600a7d6c29fbaa976e39b668f23abc94bb30a1ffd6a0fd61f.json,sha256=6tfJIyefAbInvUdZjfZIGDqBRlxGXpQNqF_W8myWZ04,1111
|
|
10757
10939
|
xinference/web/ui/node_modules/.cache/babel-loader/d8ff0efe321e0670862b1b6b61b04be1ae2e3dcf9280a3eb0dec104bd5d483a4.json,sha256=oDQ-lZl2bKn-WkKDTZwbu6c9pdBmPJXhDAo63vc3Hhc,2667
|
|
10940
|
+
xinference/web/ui/node_modules/.cache/babel-loader/d9072c318b819b7c90a0f7e9cc0b6413b4dbeb8e9859898e53d75ea882fcde99.json,sha256=fy8vZSA0-tAz8174fSh1B23vDzPGkSEEsp2cdszclJ0,332129
|
|
10758
10941
|
xinference/web/ui/node_modules/.cache/babel-loader/d907925fb28912f2e98cccfe758bce680aa4f894cc9d2079d73d7e2d85481d47.json,sha256=UPCuxhQhD264I6OdoiVgJq6OiFxE_spo5bYn0ndNAeo,820
|
|
10759
10942
|
xinference/web/ui/node_modules/.cache/babel-loader/d90f78c4fc0e5ff0864a9b6847086b12b9e31fe8a664aa55f7fc4d75e25fbb62.json,sha256=YRfWnDPPwGEzlgRfVdGBticZNBbVzRMKWXWbQ1BON0g,2596
|
|
10760
10943
|
xinference/web/ui/node_modules/.cache/babel-loader/d919cc09187461766a55f1c2b05bab4de48247aaa8c73fe82d6b59c416fb208b.json,sha256=VYoCY0zb0QOp4bWNwrcWDG7tn4XfMuHz9YZWlPgDnhw,1132
|
|
@@ -10853,6 +11036,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/dafd1cb73ab6b2e006685775ded74
|
|
|
10853
11036
|
xinference/web/ui/node_modules/.cache/babel-loader/db05f17be907c3949bd5e2c9ec0d15882e2b58cbe3bce580319d549721c44cba.json,sha256=N3QoaAZKVvpkblS2ZcyltdULpJnQC_QtAjfhiWsi2rw,1366
|
|
10854
11037
|
xinference/web/ui/node_modules/.cache/babel-loader/db0611993b35d8dac5636de0291c976553370b238d9b3ec0a82f113097248ce4.json,sha256=JdeZxXhFETs2-jidhcp_LRgipMLNLYUrBZXmAUjs8VI,1231
|
|
10855
11038
|
xinference/web/ui/node_modules/.cache/babel-loader/db15953920ab2516461a0a2fe60621c8eb4432aa33cece9fc1be791ffbec4f78.json,sha256=s0wQzOHrx9yFtuczKovy30FTCBPtEVWpMEUg_qTpY2w,5731
|
|
11039
|
+
xinference/web/ui/node_modules/.cache/babel-loader/db16a983bc08a05f0439cc61ca0840e49e1d8400eef678909f16c032a418a3d6.json,sha256=5HOCB5eyRTHGRk6zSjd0s5RB4ogq3gjYNWqkhUsHtzI,134257
|
|
10856
11040
|
xinference/web/ui/node_modules/.cache/babel-loader/db17cddaad6632d5aa3b5bcf48c52db3d8b4f3973787cd82dc19237b54f4ba8d.json,sha256=PjS5jh5YNgXZ-fTjZ32wWHLzQSfCm0mtyfKMuPuuaOU,1451
|
|
10857
11041
|
xinference/web/ui/node_modules/.cache/babel-loader/db29f84b7d8549a4a8eace5c6bd3985c96c83818ccedd6c9f2aec3506a7fd43d.json,sha256=2rxojBMoN3Yb7sAG5byGeAlof1HJLQGacycSt6yzOU8,1153
|
|
10858
11042
|
xinference/web/ui/node_modules/.cache/babel-loader/db2e2835f8a89206146ffe08363d6437e906cbb2ab968b0ab4a9dd153d49734a.json,sha256=OV5eBv86tU3_-_dOdL7XapsYxos7-PgXUrA4ISHTYW0,25966
|
|
@@ -10908,6 +11092,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/dc106fd5eca2e1e1d9ff521802adc
|
|
|
10908
11092
|
xinference/web/ui/node_modules/.cache/babel-loader/dc123ef902ae1bb7586b4b70c4201089358e6ff622f42b410fa82a13cc38b315.json,sha256=EYShIG-XnH_fu-xIvyhMrpSfsDmI9lkHhwE_-ECLtD8,1298
|
|
10909
11093
|
xinference/web/ui/node_modules/.cache/babel-loader/dc16895830c47107867d8e75948385c255e20e8fb03a764655a25006f6bb3423.json,sha256=3Yi6y0LQHAgP_FXZhI3fIB4XuC0r2UO_XJjO7VoNLpI,1295
|
|
10910
11094
|
xinference/web/ui/node_modules/.cache/babel-loader/dc197e00c2829779b4d2c7a719246313c3e5c4a94970acd26ed0e52ec144d8b1.json,sha256=6_bRqrA1hqhb96xl-KNl0OsjhRSD2PB6Uco2v1ooZtQ,1468
|
|
11095
|
+
xinference/web/ui/node_modules/.cache/babel-loader/dc249829767b8abcbc3677e0b07b6d3ecbfdfe6d08cfe23a665eb33373a9aa9d.json,sha256=l01XQAykRnJByqiQzw_2XWwPhTbIUvWYWvyRjs9B4Qc,5082
|
|
10911
11096
|
xinference/web/ui/node_modules/.cache/babel-loader/dc320ecc40a5d7a5c27f1ad6b549f2c1c27dd0d2020ec006d8299acb5a28034b.json,sha256=2bufTSrhZekl4aWqPKp-UcRWO0XwjvSQCkmilf6kiC0,528
|
|
10912
11097
|
xinference/web/ui/node_modules/.cache/babel-loader/dc345700ee479411b8cb72fe5383eb1a548496737cdcd763f19b400ec8b74341.json,sha256=NT8J2U0aMmh7oOtPoQ6GNt3RcWYCtkikp1DGJotDSyg,1149
|
|
10913
11098
|
xinference/web/ui/node_modules/.cache/babel-loader/dc354a282ba6605953d9b1bdb12ea78f905ca709cdc4773b276d28d9ae940b79.json,sha256=ckcCdORBgbXu1M2ytktW66az1wN3exW_XmOZGe0ZD6c,1403
|
|
@@ -11221,6 +11406,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/e23332113bb465570807233881c67
|
|
|
11221
11406
|
xinference/web/ui/node_modules/.cache/babel-loader/e233c270f6dfbe07d56794125b0dbc7b210aa9d60bfa800f1a65d1017725aacb.json,sha256=T-6Qh1Bd2ET2s7uwz_l-H1D4YmhxiPu0z9QtAUa13yE,2335
|
|
11222
11407
|
xinference/web/ui/node_modules/.cache/babel-loader/e2355f65675bf448620913cb394bd1a7654c112c65fe9a2e9cad956b423cd2cf.json,sha256=1XBl_gKYZ1vXz5Dm8JCI6ueUIPf3CYJmq6Hyj7wmaYY,1348
|
|
11223
11408
|
xinference/web/ui/node_modules/.cache/babel-loader/e235fddcc3d5be0176eb839158aec89cdbfe418229ffefd5b850096e0008e472.json,sha256=quJOT-8bzeSAB-duCR6ZUCth1R5GFdQuJcPMaHPAwAA,1519
|
|
11409
|
+
xinference/web/ui/node_modules/.cache/babel-loader/e242c583c2dbc2784f0fcf513523975f7d5df447e106c1c17e49e8578a6fc3ed.json,sha256=7A2ZoOlXOoKgZmyVlwd9rU63AhxlXPwrOK8vsbc6Tzs,5320
|
|
11224
11410
|
xinference/web/ui/node_modules/.cache/babel-loader/e248f466e99f90d380f52c948985591af0f64c9476cabf153213e601f26d56fe.json,sha256=a3zY9Uhewn94UH_oEWgeZRn9JPuLEZRD_My-qrCh4II,1043
|
|
11225
11411
|
xinference/web/ui/node_modules/.cache/babel-loader/e24e0a714c9c084f168b65d26d5ee47035313842ae464764b23cf4d446de84ec.json,sha256=TC141hTEzdmepi_8XUCZexM9eBNeEGfjFd7zsuv_N7g,503
|
|
11226
11412
|
xinference/web/ui/node_modules/.cache/babel-loader/e25714cafcc654bab8c31de244d1df7b0ecfb122ad2de464b87c0f4edc6dc3ae.json,sha256=gDJ-qPupD8XRWMFgO1dzxSkcWe7nCzVMkka4KDmY1Dg,1167
|
|
@@ -11310,7 +11496,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/e41fb0f646b017f61d83076f66e15
|
|
|
11310
11496
|
xinference/web/ui/node_modules/.cache/babel-loader/e42494915054a5dad23ba3b78b66088888c6b238a1b94ee189097228a1c0543a.json,sha256=7Y0AZQ6BjK9_ZRSLKx1b2bkyGPIsT64CwPyjUxOgl2I,2317
|
|
11311
11497
|
xinference/web/ui/node_modules/.cache/babel-loader/e427f1000001e7d6f6b6e5c07e7b74c0a538b03b09cbbcb4ebf5a8ee2d5d0bc5.json,sha256=wb6iZjtQRRJuhQ7KGdW-BsIqw2iM6yUp47vJdp6-upk,2157
|
|
11312
11498
|
xinference/web/ui/node_modules/.cache/babel-loader/e429d5a5014100a41c720a5324a139bcc1cf1a662a723ea7209d17719a480953.json,sha256=emqP8a3UO8tCaVZcqsItMi9u0dUqQeLpUNECJ1KvlH0,1879
|
|
11313
|
-
xinference/web/ui/node_modules/.cache/babel-loader/e42b72d4cc1ea412ebecbb8d040dc6c6bfee462c33903c2f1f3facb602ad742e.json,sha256=4RdDbeoTkIPgwxqprQ4QzACTSNuK8l_xiug-sdAeoSw,9831
|
|
11314
11499
|
xinference/web/ui/node_modules/.cache/babel-loader/e42cc78022decaa22d66b47d2e2970f777682872d52622cd0b239e06df3fd61c.json,sha256=5XJHafg1U5xiVCjr6iO5rEt7-H6FUVc2Sjjq3xlPYKQ,6379
|
|
11315
11500
|
xinference/web/ui/node_modules/.cache/babel-loader/e43d0d99318a292776677dbd344d482e969ef8a57428b6aa1ef555f940f2aa1f.json,sha256=hbKSPSXQLPGpUq0CF1TAkDvzUhoI7g5ZCDlw46emb_A,2174
|
|
11316
11501
|
xinference/web/ui/node_modules/.cache/babel-loader/e440da7abd7b46e4802e3e0251d6d5411eb4dce999cf08ec9cad1f7976614567.json,sha256=wL-lW1XVx1SQ1a5HDzSuaZXASZWdQqgTwh1pzIeneIw,1367
|
|
@@ -11425,7 +11610,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/e63bbf4e2be4e290d0ab27ab726c5
|
|
|
11425
11610
|
xinference/web/ui/node_modules/.cache/babel-loader/e63bed6e2431a76d99ce23c459ac072cf2a600ad83a0cbc2ab70ccdb0b53ab19.json,sha256=CuCvhCZyvxvcaXU1_e886W9TYVxxw1HAZrij9dUEz-c,1548
|
|
11426
11611
|
xinference/web/ui/node_modules/.cache/babel-loader/e6414327e9907ff2a0d0220af37e43f5538c3fc667a8d4b889fc60801db6a138.json,sha256=SyvJeiYIkAH8-Kv6FVLcoBQq4hOKr4KgSN7K85fdKWY,1865
|
|
11427
11612
|
xinference/web/ui/node_modules/.cache/babel-loader/e6448192c1587bcf98d82d4982712b0bde2c260e77086708a662940dfddf702c.json,sha256=ExN7p6fiFkBRoVAwyCcVFWqkzx-uXet6IpTKKJbkKgg,309
|
|
11428
|
-
xinference/web/ui/node_modules/.cache/babel-loader/e64b7e8cedcf43d4c95deba60ec1341855c887705805bb62431693118b870c69.json,sha256=VEQxXkIGOkcu3d5MIWHheeBa7WtuCeLlCYYPG9YHnU0,5440
|
|
11429
11613
|
xinference/web/ui/node_modules/.cache/babel-loader/e64cac4631ac00f380657f80a294ec1747c2f7d6aef52c8578d728d15adf5b11.json,sha256=H7hKoTpT9ZxbPJAph0fLfVN1tR1PKnz3eg4oiV8Dsg0,1300
|
|
11430
11614
|
xinference/web/ui/node_modules/.cache/babel-loader/e655899d292c5b498b8918292324d3027d0dc99efa3323f9a0011cb7e81ce5ba.json,sha256=GhTzdmLzTf4MkABonxPhJzv2197a3QJCbtUCIaB9whQ,426
|
|
11431
11615
|
xinference/web/ui/node_modules/.cache/babel-loader/e656be73510c6cf2b89f06187a87c614e28a596f6ac4e52ab3ccba8569cf1082.json,sha256=b6L1XRGH7H2g3HvJSFJjX-WcA6o93NEez37y32LRMjg,1990
|
|
@@ -11651,6 +11835,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/eaa311b61f8dea79db1d046af8ab3
|
|
|
11651
11835
|
xinference/web/ui/node_modules/.cache/babel-loader/eaacf53d9722fca6051c537570e31c23cc2c42c37b4a237afec96465759b0d6a.json,sha256=pCx3URNf2CtG8GPRThgJCHq6ke07G7HMXRJi2kvtiI0,1417
|
|
11652
11836
|
xinference/web/ui/node_modules/.cache/babel-loader/eab37f71d46793e8d42637a18ae046f6b93da6e54af213375de495eddd9f4feb.json,sha256=yY-uIbbQsewocbi_Flczpy7-yi5Z9NQXxo-eR_FIpZQ,1826
|
|
11653
11837
|
xinference/web/ui/node_modules/.cache/babel-loader/eac262a3ad29832be26f65084770e524abcecd6238fcf45160fb4ce5d079c8a5.json,sha256=j65gEyf66UYirRIIYiV9yOHjNGVs4PPn-6iIA4Caiqc,1079
|
|
11838
|
+
xinference/web/ui/node_modules/.cache/babel-loader/eac5f1296513e69e4b96f750ddccd4d0264e2bae4e4c449144e83274a48698d9.json,sha256=VL6zbGgVND_2rRh0vpDwEE0S5p5hqgY0TCcGVKsejxQ,3501
|
|
11654
11839
|
xinference/web/ui/node_modules/.cache/babel-loader/eac65c0c9fa002884bb343228a5f572c73f70a9c1e367a52b589eadce6c94032.json,sha256=BS-4To808U1F-qhZ0gVb8VVyaHmHckRQ4iOPXSnmlNg,1347
|
|
11655
11840
|
xinference/web/ui/node_modules/.cache/babel-loader/eac708e1c00823e08e93aa48286dfa0ec26bcb5c37d3415078e01be1eccdf07f.json,sha256=BiMl0MUruOEqLY-KL9P2CZbQhbiPhfMi_sHCK5Zz5ss,2365
|
|
11656
11841
|
xinference/web/ui/node_modules/.cache/babel-loader/eadb6083f26fe6e3bf4592b407b6da4e9e4810192125b6e14437719fdc77c3b1.json,sha256=BmdoSlpjRJQ1YsxsHAx_p-bV3NFU6YDS4-kg-SnCMII,1396
|
|
@@ -11754,6 +11939,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/ed332503f7f9ee0b665b5e8183892
|
|
|
11754
11939
|
xinference/web/ui/node_modules/.cache/babel-loader/ed37a4506676fe2b0ab1fcfe07c6a2279585f8121af90f2be5b6180a7b36a20f.json,sha256=FJeewi3aXSVj-5Jcuouz3w9lJppqlswz85Cwvia7jI8,3049
|
|
11755
11940
|
xinference/web/ui/node_modules/.cache/babel-loader/ed48b21d0c244a7297e552bee452d2d440ee92561dfea73ca1d946fbcd9bb86e.json,sha256=s4s4mEQsgNVB_ptq1TBJIedbj2UpFEZ8jZxdVgb86C0,1404
|
|
11756
11941
|
xinference/web/ui/node_modules/.cache/babel-loader/ed528b169ff6c5941b8b1fc8ada2e10d250d21867e76a09fb3f2b6c719f0a57b.json,sha256=ic1Qn1FhWevpzktCyCZscp4qtGA3p43zg16MzAUZPuk,1363
|
|
11942
|
+
xinference/web/ui/node_modules/.cache/babel-loader/ed57202cb79649bb716400436590245547df241988fc7c8e1d85d132299542d2.json,sha256=02rj8-yoiMC4-1ttT-O_RctuBq6658prnxskUDHlg6M,21135
|
|
11757
11943
|
xinference/web/ui/node_modules/.cache/babel-loader/ed57c2762de9d32b9e6cfcb19b3213d4ab63d6cf0ba04d1ecaddd5f81cf71927.json,sha256=wZfwM8MpcVhdFfZWd2XL7Uw-Jg26cNisP0AFvxcGp64,1050
|
|
11758
11944
|
xinference/web/ui/node_modules/.cache/babel-loader/ed580bd00e2356af6688efd3e478c030cfa0dad33e679128213b1245451afbca.json,sha256=bx7h-9YTZQVSBeIbTBs9W2Y4r4wfHUs0goH37W6D8CE,1483
|
|
11759
11945
|
xinference/web/ui/node_modules/.cache/babel-loader/ed5b124e59321bdf3229bdfada580243b9d91db1af4330b6f7d930a76b946156.json,sha256=qIY_6ZbPTgwkkDiBmiUYJnLgq5KmLROKg0UaYUgtzig,1218
|
|
@@ -11936,6 +12122,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/f108323debea3f1c061800f13e272
|
|
|
11936
12122
|
xinference/web/ui/node_modules/.cache/babel-loader/f110784262cb5e5b214e52117f5b3c5297d023b768a40490a5f872b0fc27f76e.json,sha256=CGH0LkkVkURm2To5ZAqTmxXStAH9mfWp_3rCH7JO__A,1606
|
|
11937
12123
|
xinference/web/ui/node_modules/.cache/babel-loader/f119720849b267ba7e78a79e6632b8cc17602e8b8aa5f0aec2291082fc1cf2ad.json,sha256=fpUsdq5dT6kvK6PIFs8TvN4z6eQxTqNorhIKE8DaBLE,1314
|
|
11938
12124
|
xinference/web/ui/node_modules/.cache/babel-loader/f11fae4007495156ff20e9d9ebd5c658ed81f1e945aaf42b69455bc1d4c70c56.json,sha256=FXJzjborA2BgoxXniH8xatywtq4pFNmeT73_Cqg_XC0,2299
|
|
12125
|
+
xinference/web/ui/node_modules/.cache/babel-loader/f125bf72e773a14cdaebd0c343e80adb909d12e317ee5c00cd4a57442fbe2c62.json,sha256=2aldnAzp8LHQMBILJF6cScj-5pzeh7KZ_IS1FB7-wF4,5345
|
|
11939
12126
|
xinference/web/ui/node_modules/.cache/babel-loader/f129e97d726868ec9a3bbaa900e267b7fff9c4a26509b16ef4e4823183cd401b.json,sha256=sSPFust6Lizk8bPH--yJM5NlzUOTZQPGgk70jlLDfiM,2321
|
|
11940
12127
|
xinference/web/ui/node_modules/.cache/babel-loader/f12caf265724e281f7f6451332b793aa36e91989b1003cddc431ea7e1a070a6f.json,sha256=brPur4sw70pexR4_acs47VBVUUWW5H5Qc_67phr4Jww,1515
|
|
11941
12128
|
xinference/web/ui/node_modules/.cache/babel-loader/f1353cac2392bbd432028cf5eac6635252eddbedcff4b81b3116f1f1ec90fdd1.json,sha256=6ACwyAyaSE8tUCnbR4f6Qx9j8qhBccApTuOqiNUySFs,1327
|
|
@@ -12123,7 +12310,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/f4f343b04d11666f98f14a31e2a1b
|
|
|
12123
12310
|
xinference/web/ui/node_modules/.cache/babel-loader/f4fc407c14fb0e71fec7f6993086752a43887f8a7bf7e7989846e60904b5e1c2.json,sha256=KoWp9emzLVKyh0AdeWCqgtAJctr1TxkTLoix6JNxfEA,1363
|
|
12124
12311
|
xinference/web/ui/node_modules/.cache/babel-loader/f4fdaad59db5ed92a1c678affaf34b036740b5345d0cc696ae81c8fe5c60949b.json,sha256=4pk4GFrSiEVlWRwOTUA1oyQvYxdMsbykunwN3y4Qok4,1394
|
|
12125
12312
|
xinference/web/ui/node_modules/.cache/babel-loader/f501fca5d4064783cb26d01e00f3b8c97e23781c59b9018a810f7cbdb8b203a4.json,sha256=cw5LNX7lTybhK8nAqz95Ju9h4YRBLulpA8zvrwJsK5g,1598
|
|
12126
|
-
xinference/web/ui/node_modules/.cache/babel-loader/f5039ddbeb815c51491a1989532006b96fc3ae49c6c60e3c097f875b4ae915ae.json,sha256=XfXnMNV-QdWUJboPH_CLcTEfwJCynkJwW6k6IwX0CA8,14626
|
|
12127
12313
|
xinference/web/ui/node_modules/.cache/babel-loader/f5166236bc3e182f8bfd009c91200dba9d7cf96c0002eb83fe4ffc17586dd531.json,sha256=ieblslAPgYaHbU-Yi_nRmNDm9xgdkmRa6ehWwiswOjA,1043
|
|
12128
12314
|
xinference/web/ui/node_modules/.cache/babel-loader/f519c4de4494e4cbfec0261d864c14d67d3dd97f937ad42f4e856c9ade0cd097.json,sha256=OVVaC1LtZacvN21gLcZmeeconK68h2bL3bDn78JGYK8,1829
|
|
12129
12315
|
xinference/web/ui/node_modules/.cache/babel-loader/f51a6ad07f134e87af4ca8cb2a95b8f21048ad48380d369f001ce87fd97886c6.json,sha256=SgcKRCCbTPp0TgoAbxPTIMyqp3Z6dJb33VeE5Ff2K6I,1254
|
|
@@ -12229,7 +12415,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/f70f1d8ec5d018de3ce7b363d1ea0
|
|
|
12229
12415
|
xinference/web/ui/node_modules/.cache/babel-loader/f71419551f1c94ba50aa5d0a076697d8a282776fc982ee7954bb3a97ce82b066.json,sha256=7c1B0jy7uctlOtfmRYhn7MdvTyEMMHJqmLTFl4Uw8Hk,1265
|
|
12230
12416
|
xinference/web/ui/node_modules/.cache/babel-loader/f71c37113c7ff54dacd86a97719e795aec998fbac52e30864901b2a92222aa16.json,sha256=ascnsrlL2_Np-7bcJqGQny_UiXq1AJKQr7pbloXK6BY,1256
|
|
12231
12417
|
xinference/web/ui/node_modules/.cache/babel-loader/f721efe48ae867d730170b98c5d9329da7f6f5169a562ee2e2a6fe6995e52dc1.json,sha256=n7Y6FZL6OPXqliA__lR9gD1BZiYGZUzbMoKF18iv2Qg,1369
|
|
12232
|
-
xinference/web/ui/node_modules/.cache/babel-loader/f72f011744c4649fabddca6f7a9327861ac0a315a89b1a2e62a39774e7863845.json,sha256=NMgZ0Lk6tKkuJC5EOv7XwcF7HYDGrSYIZop8qxR2IDg,9786
|
|
12233
12418
|
xinference/web/ui/node_modules/.cache/babel-loader/f72f55720771ce53110ca40b8de2b354a2a277e2339d9b6093a0bdc8f4013a97.json,sha256=YWIeUTTNRB3U1aagaQ2G0--agug1D06FDrBQaYblQe4,1045
|
|
12234
12419
|
xinference/web/ui/node_modules/.cache/babel-loader/f72f67c0ba1025e917ab6ec6aff36250aede4418ad1fa8e3c4059bad7e1eb305.json,sha256=IeAIeGn-E8kE5LHDLJYTBGLK6ODhk-FU-fxWC3tHuug,2318
|
|
12235
12420
|
xinference/web/ui/node_modules/.cache/babel-loader/f7332c70db6530bb694071f0461bdcdb95812cc2455f9455d2a9deab06c2c5d5.json,sha256=qE2HWSobExOV_PdjHMK4UPfi74CoomEuI7NMAnAY0mE,1559
|
|
@@ -12323,6 +12508,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/f90a06d01c6f49f96be6d8dacfc05
|
|
|
12323
12508
|
xinference/web/ui/node_modules/.cache/babel-loader/f91151b4dcbd0d780192d755f7ee7c0280b0dd9aa444b571fb8ce88ef727de79.json,sha256=xmTm3VW2LlE2lwVhSjb0iyZ1ReRvsfPZh0v2-5rs47Y,1206
|
|
12324
12509
|
xinference/web/ui/node_modules/.cache/babel-loader/f913b95f47b5f73b60d3225502f1fa19d867d96b178233c25be3eac617751d58.json,sha256=eGrTDp2tjukVtFqTpX_qlCcuRQT5WNqX0CLFnKJp3rU,1286
|
|
12325
12510
|
xinference/web/ui/node_modules/.cache/babel-loader/f915d6d3c96981f18174e40ad3b5f6bbbbceb35946c3ab3241a610a3226e041d.json,sha256=0Bx8VqX1eEtyk52RbgfnaiGKx3xAmpxxudQ513Fb6Ss,1950
|
|
12511
|
+
xinference/web/ui/node_modules/.cache/babel-loader/f91af913d7f91c410719ab13136aaed3aaf0f8dda06652f25c42cb5231587398.json,sha256=cTEPhC7FyLDe94nRu6iQdtn_ugc2gvUxLJWQEIZDXe0,1963
|
|
12326
12512
|
xinference/web/ui/node_modules/.cache/babel-loader/f91e3dda1729ea500805fa915a019aada9ce8ea66b7402ca3002c36b7028d50f.json,sha256=dj7lf4L5Q_yXb7Rj3Za9KPdeGWTSwAhMZFh5dKXrRmY,1184
|
|
12327
12513
|
xinference/web/ui/node_modules/.cache/babel-loader/f9232fc4d716e454755ff231179f4454f48b695cc8c14c56d37c762a070ff795.json,sha256=kQe9d4Ecmeh0THYN-QHOYV1KLo6g-yGMiJowmuLRUqU,1508
|
|
12328
12514
|
xinference/web/ui/node_modules/.cache/babel-loader/f927a20c8492729544398c53966284f24919cab7a18547fd6eacaab85262d54b.json,sha256=87NbVzZ8TS_wfXQ2Zi575BvghSCzPPkP3YmOE5b4-Uk,1277
|
|
@@ -12598,7 +12784,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/fea30c99ca4d66aa9e28b97f3a53f
|
|
|
12598
12784
|
xinference/web/ui/node_modules/.cache/babel-loader/fea50374ff9a5128187346c9afff58467b8334882943a0cecf2b8612f50a2de0.json,sha256=fI6pvwRtDq5ZHNHEepJNp2b1HLoCfn4azcFmswD-DwE,1754
|
|
12599
12785
|
xinference/web/ui/node_modules/.cache/babel-loader/fea57c6780d7380597cc72e22aa7f153e28ed2530aff75cbe38be3d2f43467b0.json,sha256=GDAF23B7YGhDt6tB6NbR16KdTIlpApJiJjAldWj3xmM,382
|
|
12600
12786
|
xinference/web/ui/node_modules/.cache/babel-loader/fea86398d4c077f1c87e5f9c00e3ecf510a22de4dd8aeb27d5582d271d0b83da.json,sha256=HX1nydAYreKMX4Eu5qwbGLDgAba3WYFmrhPtMEU-lMg,2881
|
|
12601
|
-
xinference/web/ui/node_modules/.cache/babel-loader/feabb04b4aa507102da0a64398a40818e878fd1df9b75dda8461b3e1e7ff3f11.json,sha256=RvMWgzvvv0BIjMh3VrQUUDRMstyRBbnqsqFhHSEPeM0,6407
|
|
12602
12787
|
xinference/web/ui/node_modules/.cache/babel-loader/feb1b098529b2e0b4ba580dc838eb30e98ca96a93c744aa29d555cc252621ed5.json,sha256=uRxCH-k_SOB8qU2yXbbbzile16KwdQzxWsuB7jbJB3M,15152
|
|
12603
12788
|
xinference/web/ui/node_modules/.cache/babel-loader/feb218750f215bbd193160bbf99235be78ca185199a3723384de744d09045a3b.json,sha256=OConYgo96N2zQvwzW18axEnvI0SZKjQ6gW3W6TwI7bM,1894
|
|
12604
12789
|
xinference/web/ui/node_modules/.cache/babel-loader/feb3a63f3602f17dc3413d5b184815fbf84724844150e50a5167ee63a7f8b596.json,sha256=L8mZnGwO9k1hNiBGIa1zjcbS-leO3lqy1ml0BLkGrrM,2600
|
|
@@ -12793,7 +12978,7 @@ xinference/web/ui/node_modules/@babel/preset-modules/package.json,sha256=kNWArL_
|
|
|
12793
12978
|
xinference/web/ui/node_modules/@babel/preset-react/package.json,sha256=6C-5rDFo8uDI4M_Ocr_kezc5rlLn5U1lSUB2Qv1ro28,1181
|
|
12794
12979
|
xinference/web/ui/node_modules/@babel/preset-typescript/package.json,sha256=ZgqZA30pAgRHCBGQPUr_b58eGHODVTdXYf7h1bd6Td0,1165
|
|
12795
12980
|
xinference/web/ui/node_modules/@babel/regjsgen/package.json,sha256=iPuLZNZ28OmuFTgLw1ALgKNRpqgFAB_dUTcZSc9niKY,1020
|
|
12796
|
-
xinference/web/ui/node_modules/@babel/runtime/package.json,sha256=
|
|
12981
|
+
xinference/web/ui/node_modules/@babel/runtime/package.json,sha256=rcrTSIMEDfLrTVPBZBXVuq9RCwHpWewa26o1ihO7xzU,39095
|
|
12797
12982
|
xinference/web/ui/node_modules/@babel/runtime/helpers/esm/package.json,sha256=0qrzJDmURlFrQtgmJL4Yrc1kZf3fEAt7p59XMj9j2lI,22
|
|
12798
12983
|
xinference/web/ui/node_modules/@babel/runtime/node_modules/regenerator-runtime/package.json,sha256=kMpvmDX_3KELgzrtF3fqEzEGkkdL9FK14uEOUq9JOxc,463
|
|
12799
12984
|
xinference/web/ui/node_modules/@babel/template/package.json,sha256=zSBH3uXjBP6MTkBSVEFHm_Z7_9o7N0zcZp04dAA1BBE,771
|
|
@@ -14267,6 +14452,7 @@ xinference/web/ui/node_modules/html-escaper/package.json,sha256=do4fPlfGgDKAkl5x
|
|
|
14267
14452
|
xinference/web/ui/node_modules/html-escaper/cjs/package.json,sha256=-mlEogyl5vuvmP0gLrjHAE1bSreG42ue0C7jHb4ZbJ8,19
|
|
14268
14453
|
xinference/web/ui/node_modules/html-escaper/test/package.json,sha256=-mlEogyl5vuvmP0gLrjHAE1bSreG42ue0C7jHb4ZbJ8,19
|
|
14269
14454
|
xinference/web/ui/node_modules/html-minifier-terser/package.json,sha256=Fmdhssoyqvzi-lE_a0Kil9bjCqULodC7eaaxlBWDmOY,2187
|
|
14455
|
+
xinference/web/ui/node_modules/html-parse-stringify/package.json,sha256=QOBJkubUkoJWbNmy64J0fxWDH3HCCmnseRpQIWLWgYs,1260
|
|
14270
14456
|
xinference/web/ui/node_modules/html-webpack-plugin/package.json,sha256=C19j0ExgWQ4bzskWmRN-bm0HtighUg714rPhAGFl9mI,2293
|
|
14271
14457
|
xinference/web/ui/node_modules/htmlparser2/package.json,sha256=ZjQjTA7g62dpztvHyi0Fs_xmdwNhE_nz8pP1QVC8uCY,2004
|
|
14272
14458
|
xinference/web/ui/node_modules/http-deceiver/package.json,sha256=2gUUNZ9Fw5OFs3KdXnV5cDDO0PD8kzASkQQ9rhz0tVQ,710
|
|
@@ -14278,6 +14464,8 @@ xinference/web/ui/node_modules/http-proxy-agent/package.json,sha256=iZP5XzXGvXre
|
|
|
14278
14464
|
xinference/web/ui/node_modules/http-proxy-middleware/package.json,sha256=WltwxrNzc1XzcaGSR44_emvWo-h1eWg4stWHwHp7a64,2920
|
|
14279
14465
|
xinference/web/ui/node_modules/https-proxy-agent/package.json,sha256=1B2RJ8vtQ9-OLUBL-vQTYZQqiv64LrV8z4UV4E6zPR0,1405
|
|
14280
14466
|
xinference/web/ui/node_modules/human-signals/package.json,sha256=jQ5YIgQ7YgOBu6Abg1Ajqlh9rMxskwK9AC8YXRRB5YA,1220
|
|
14467
|
+
xinference/web/ui/node_modules/i18next/package.json,sha256=7tATkFDMbTti6XopUpvU1ynR1fmTr454_khWTCRmSPw,4379
|
|
14468
|
+
xinference/web/ui/node_modules/i18next/dist/esm/package.json,sha256=75pXrwOmWttCcS8Lf27UwkTrFkvCOlSIk5rp0nfScBo,38
|
|
14281
14469
|
xinference/web/ui/node_modules/iconv-lite/package.json,sha256=OpWC_RIfhBwkXR_PhO8LnkHJS3hbjX62P59a7JutC5g,1131
|
|
14282
14470
|
xinference/web/ui/node_modules/iconv-lite/encodings/tables/big5-added.json,sha256=25TbXl06tpbdsAJWhc-oXaGGSDmkomqrL4-G9rg4Iog,17717
|
|
14283
14471
|
xinference/web/ui/node_modules/iconv-lite/encodings/tables/cp936.json,sha256=giW7aT79OAJ57XKAuPhBn9BpxfAY0g1ZRr8YetksDPc,47320
|
|
@@ -14899,6 +15087,9 @@ xinference/web/ui/node_modules/react-dev-utils/node_modules/supports-color/packa
|
|
|
14899
15087
|
xinference/web/ui/node_modules/react-dom/package.json,sha256=6dwVI4Pwh1jOWbf0qUFxRkPY5A3XKkF4Xy8GIM8EG3g,1353
|
|
14900
15088
|
xinference/web/ui/node_modules/react-error-overlay/package.json,sha256=CIjlts8Y64mehjDwuqkt7Zw9HhG35RbGz7DpjqxvkI8,2106
|
|
14901
15089
|
xinference/web/ui/node_modules/react-fast-compare/package.json,sha256=FgehAGutvBOIuH1l_2Y5bxeDqBnrhDfXNwZQ_ZKzxCo,2311
|
|
15090
|
+
xinference/web/ui/node_modules/react-i18next/.eslintrc.json,sha256=Q_61XBL-WD3jT_Px6JaKwVYGM0tKPVXfwNEXWwoRC0I,2423
|
|
15091
|
+
xinference/web/ui/node_modules/react-i18next/package.json,sha256=BVwc2y_Krw4vBewP-Juq_GPs9jaubHzdACyU1z9weD0,5735
|
|
15092
|
+
xinference/web/ui/node_modules/react-i18next/dist/es/package.json,sha256=fLMf96jotttPm8baBM6XsbjhfwJXRuPrUfWv5dRWEPs,37
|
|
14902
15093
|
xinference/web/ui/node_modules/react-is/build-info.json,sha256=6mU6yN6sfeCkmDwAxD5qAp5A05HOcfjEFWrRG72NmSk,167
|
|
14903
15094
|
xinference/web/ui/node_modules/react-is/package.json,sha256=lgAtzFisvTHA4TKcVI9Nln6hRGxWWOUU3hJb5yk-XmA,529
|
|
14904
15095
|
xinference/web/ui/node_modules/react-lifecycles-compat/package.json,sha256=5bvnjFAUuvBtAVcDySqt4yVdov9dCkoiU-VtYp4dRFI,1127
|
|
@@ -15232,6 +15423,7 @@ xinference/web/ui/node_modules/uuid/package.json,sha256=XWGBILKbLqnPYF6gllfyDC8S
|
|
|
15232
15423
|
xinference/web/ui/node_modules/v8-compile-cache/package.json,sha256=D6A3MMOWgRD2-MCI6_ujekMZBpCpZPuLzG5IWtvl8cw,832
|
|
15233
15424
|
xinference/web/ui/node_modules/v8-to-istanbul/package.json,sha256=uhTNNWqsSPBbx3IPaNDRLu_Aj_lWWPmRCtK4vaM5jyo,1074
|
|
15234
15425
|
xinference/web/ui/node_modules/vary/package.json,sha256=c-2u6WTVJxF6n2nWNg--bOxTSr2RJ3lL4Bpq9YoTnao,1215
|
|
15426
|
+
xinference/web/ui/node_modules/void-elements/package.json,sha256=nMNQPmXGRxkmlCHBgg8Ru2atWl8Vl-5o41DtGN0juYo,754
|
|
15235
15427
|
xinference/web/ui/node_modules/w3c-hr-time/package.json,sha256=urpGj9qK1qulwaRMlBI3f_tR6idf9TaYJdB_a2EZTWk,594
|
|
15236
15428
|
xinference/web/ui/node_modules/w3c-xmlserializer/package.json,sha256=RHJW2GX0f5YzTjjr0ldTgDLZQj8URbkH2aWUTLRFH_o,573
|
|
15237
15429
|
xinference/web/ui/node_modules/walker/package.json,sha256=9INDl979JvGm5_VJ1qkDP2Cvic2kvghwSK0zKsealTI,569
|
|
@@ -15524,9 +15716,11 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15524
15716
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15525
15717
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15526
15718
|
xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
|
|
15527
|
-
xinference
|
|
15528
|
-
xinference
|
|
15529
|
-
xinference-1.
|
|
15530
|
-
xinference-1.
|
|
15531
|
-
xinference-1.
|
|
15532
|
-
xinference-1.
|
|
15719
|
+
xinference/web/ui/src/locales/en.json,sha256=MahpAAKmZPqtK5-M_kwdI9IUbBP-GcNqI0jSTVXHEE8,8169
|
|
15720
|
+
xinference/web/ui/src/locales/zh.json,sha256=9-Hu72a9FSB1ZCUMkKDzopBTh7Aer6b-3PB62cYxsOg,7933
|
|
15721
|
+
xinference-1.2.1.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
15722
|
+
xinference-1.2.1.dist-info/METADATA,sha256=NUwKoNtMeFa3TkRJMqGYa7E-HLCZqOxBysi6gNHY-c4,23919
|
|
15723
|
+
xinference-1.2.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
15724
|
+
xinference-1.2.1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
15725
|
+
xinference-1.2.1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
15726
|
+
xinference-1.2.1.dist-info/RECORD,,
|