xinference 0.14.2__py3-none-any.whl → 0.14.4__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/_version.py +3 -3
- xinference/core/chat_interface.py +1 -1
- xinference/core/image_interface.py +9 -0
- xinference/core/model.py +4 -1
- xinference/core/worker.py +60 -44
- xinference/model/audio/chattts.py +25 -9
- xinference/model/audio/core.py +8 -2
- xinference/model/audio/cosyvoice.py +4 -3
- xinference/model/audio/custom.py +4 -5
- xinference/model/audio/fish_speech.py +228 -0
- xinference/model/audio/model_spec.json +8 -0
- xinference/model/embedding/core.py +25 -1
- xinference/model/embedding/custom.py +4 -5
- xinference/model/flexible/core.py +5 -1
- xinference/model/image/custom.py +4 -5
- xinference/model/image/model_spec.json +2 -1
- xinference/model/image/model_spec_modelscope.json +2 -1
- xinference/model/image/stable_diffusion/core.py +66 -3
- xinference/model/llm/__init__.py +6 -0
- xinference/model/llm/llm_family.json +54 -9
- xinference/model/llm/llm_family.py +7 -6
- xinference/model/llm/llm_family_modelscope.json +56 -10
- xinference/model/llm/lmdeploy/__init__.py +0 -0
- xinference/model/llm/lmdeploy/core.py +557 -0
- xinference/model/llm/sglang/core.py +7 -1
- xinference/model/llm/transformers/cogvlm2.py +4 -45
- xinference/model/llm/transformers/cogvlm2_video.py +524 -0
- xinference/model/llm/transformers/core.py +3 -0
- xinference/model/llm/transformers/glm4v.py +2 -23
- xinference/model/llm/transformers/intern_vl.py +94 -11
- xinference/model/llm/transformers/minicpmv25.py +2 -23
- xinference/model/llm/transformers/minicpmv26.py +2 -22
- xinference/model/llm/transformers/yi_vl.py +2 -24
- xinference/model/llm/utils.py +13 -1
- xinference/model/llm/vllm/core.py +1 -34
- xinference/model/rerank/custom.py +4 -5
- xinference/model/utils.py +41 -1
- xinference/model/video/core.py +3 -1
- xinference/model/video/diffusers.py +41 -38
- xinference/model/video/model_spec.json +24 -1
- xinference/model/video/model_spec_modelscope.json +25 -1
- xinference/thirdparty/fish_speech/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py +3 -0
- xinference/thirdparty/fish_speech/fish_speech/callbacks/grad_norm.py +113 -0
- xinference/thirdparty/fish_speech/fish_speech/configs/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/configs/lora/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/conversation.py +2 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/concat_repeat.py +53 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/protos/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_pb2.py +33 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_stream.py +36 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/semantic.py +496 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/vqgan.py +147 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/__init__.py +3 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/core.py +40 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/en_US.json +122 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json +122 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json +123 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json +133 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json +122 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/scan.py +122 -0
- xinference/thirdparty/fish_speech/fish_speech/models/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lit_module.py +202 -0
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py +779 -0
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lora.py +92 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py +3 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/lit_module.py +442 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/discriminator.py +44 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py +625 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py +139 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/reference.py +115 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/wavenet.py +225 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/utils.py +94 -0
- xinference/thirdparty/fish_speech/fish_speech/scheduler.py +40 -0
- xinference/thirdparty/fish_speech/fish_speech/text/__init__.py +4 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_class.py +172 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_constant.py +30 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_util.py +342 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/cardinal.py +32 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/date.py +75 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/digit.py +32 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/fraction.py +35 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/money.py +43 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/percentage.py +33 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/telephone.py +51 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/text.py +177 -0
- xinference/thirdparty/fish_speech/fish_speech/text/clean.py +69 -0
- xinference/thirdparty/fish_speech/fish_speech/text/spliter.py +130 -0
- xinference/thirdparty/fish_speech/fish_speech/train.py +139 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/__init__.py +23 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/braceexpand.py +217 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/context.py +13 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/file.py +16 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/instantiators.py +50 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/logger.py +55 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/logging_utils.py +48 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/rich_utils.py +100 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/spectrogram.py +122 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/utils.py +114 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py +120 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/manage.py +1237 -0
- xinference/thirdparty/fish_speech/tools/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/api.py +495 -0
- xinference/thirdparty/fish_speech/tools/auto_rerank.py +159 -0
- xinference/thirdparty/fish_speech/tools/download_models.py +55 -0
- xinference/thirdparty/fish_speech/tools/extract_model.py +21 -0
- xinference/thirdparty/fish_speech/tools/file.py +108 -0
- xinference/thirdparty/fish_speech/tools/gen_ref.py +36 -0
- xinference/thirdparty/fish_speech/tools/llama/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/llama/build_dataset.py +169 -0
- xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py +171 -0
- xinference/thirdparty/fish_speech/tools/llama/generate.py +698 -0
- xinference/thirdparty/fish_speech/tools/llama/merge_lora.py +95 -0
- xinference/thirdparty/fish_speech/tools/llama/quantize.py +497 -0
- xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py +57 -0
- xinference/thirdparty/fish_speech/tools/merge_asr_files.py +55 -0
- xinference/thirdparty/fish_speech/tools/post_api.py +164 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py +573 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py +332 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/vad_utils.py +61 -0
- xinference/thirdparty/fish_speech/tools/smart_pad.py +47 -0
- xinference/thirdparty/fish_speech/tools/vqgan/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/vqgan/create_train_split.py +83 -0
- xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py +227 -0
- xinference/thirdparty/fish_speech/tools/vqgan/inference.py +120 -0
- xinference/thirdparty/fish_speech/tools/webui.py +619 -0
- xinference/thirdparty/fish_speech/tools/whisper_asr.py +176 -0
- xinference/thirdparty/matcha/__init__.py +0 -0
- xinference/thirdparty/matcha/app.py +357 -0
- xinference/thirdparty/matcha/cli.py +419 -0
- xinference/thirdparty/matcha/data/__init__.py +0 -0
- xinference/thirdparty/matcha/data/components/__init__.py +0 -0
- xinference/thirdparty/matcha/data/text_mel_datamodule.py +274 -0
- xinference/thirdparty/matcha/hifigan/__init__.py +0 -0
- xinference/thirdparty/matcha/hifigan/config.py +28 -0
- xinference/thirdparty/matcha/hifigan/denoiser.py +64 -0
- xinference/thirdparty/matcha/hifigan/env.py +17 -0
- xinference/thirdparty/matcha/hifigan/meldataset.py +217 -0
- xinference/thirdparty/matcha/hifigan/models.py +368 -0
- xinference/thirdparty/matcha/hifigan/xutils.py +60 -0
- xinference/thirdparty/matcha/models/__init__.py +0 -0
- xinference/thirdparty/matcha/models/baselightningmodule.py +210 -0
- xinference/thirdparty/matcha/models/components/__init__.py +0 -0
- xinference/thirdparty/matcha/models/components/decoder.py +443 -0
- xinference/thirdparty/matcha/models/components/flow_matching.py +132 -0
- xinference/thirdparty/matcha/models/components/text_encoder.py +410 -0
- xinference/thirdparty/matcha/models/components/transformer.py +316 -0
- xinference/thirdparty/matcha/models/matcha_tts.py +244 -0
- xinference/thirdparty/matcha/onnx/__init__.py +0 -0
- xinference/thirdparty/matcha/onnx/export.py +181 -0
- xinference/thirdparty/matcha/onnx/infer.py +168 -0
- xinference/thirdparty/matcha/text/__init__.py +53 -0
- xinference/thirdparty/matcha/text/cleaners.py +121 -0
- xinference/thirdparty/matcha/text/numbers.py +71 -0
- xinference/thirdparty/matcha/text/symbols.py +17 -0
- xinference/thirdparty/matcha/train.py +122 -0
- xinference/thirdparty/matcha/utils/__init__.py +5 -0
- xinference/thirdparty/matcha/utils/audio.py +82 -0
- xinference/thirdparty/matcha/utils/generate_data_statistics.py +112 -0
- xinference/thirdparty/matcha/utils/get_durations_from_trained_model.py +195 -0
- xinference/thirdparty/matcha/utils/instantiators.py +56 -0
- xinference/thirdparty/matcha/utils/logging_utils.py +53 -0
- xinference/thirdparty/matcha/utils/model.py +90 -0
- xinference/thirdparty/matcha/utils/monotonic_align/__init__.py +22 -0
- xinference/thirdparty/matcha/utils/monotonic_align/core.pyx +47 -0
- xinference/thirdparty/matcha/utils/monotonic_align/setup.py +7 -0
- xinference/thirdparty/matcha/utils/pylogger.py +21 -0
- xinference/thirdparty/matcha/utils/rich_utils.py +101 -0
- xinference/thirdparty/matcha/utils/utils.py +259 -0
- xinference/web/ui/build/asset-manifest.json +3 -3
- xinference/web/ui/build/index.html +1 -1
- xinference/web/ui/build/static/js/{main.ffc26121.js → main.661c7b0a.js} +3 -3
- xinference/web/ui/build/static/js/main.661c7b0a.js.map +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/070d8c6b3b0f3485c6d3885f0b6bbfdf9643e088a468acbd5d596f2396071c16.json +1 -0
- {xinference-0.14.2.dist-info → xinference-0.14.4.dist-info}/METADATA +31 -11
- {xinference-0.14.2.dist-info → xinference-0.14.4.dist-info}/RECORD +189 -49
- xinference/web/ui/build/static/js/main.ffc26121.js.map +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/2f40209b32e7e46a2eab6b8c8a355eb42c3caa8bc3228dd929f32fd2b3940294.json +0 -1
- /xinference/web/ui/build/static/js/{main.ffc26121.js.LICENSE.txt → main.661c7b0a.js.LICENSE.txt} +0 -0
- {xinference-0.14.2.dist-info → xinference-0.14.4.dist-info}/LICENSE +0 -0
- {xinference-0.14.2.dist-info → xinference-0.14.4.dist-info}/WHEEL +0 -0
- {xinference-0.14.2.dist-info → xinference-0.14.4.dist-info}/entry_points.txt +0 -0
- {xinference-0.14.2.dist-info → xinference-0.14.4.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
xinference/__init__.py,sha256=muQ9V9y11BcIqlZhhc06oDf193H7bwDIa8e_wSoDKI8,986
|
|
2
2
|
xinference/_compat.py,sha256=SQAjZMGxtBIce45qtW7ob7RWzA0zhv2yB3AxT0rb0uU,1778
|
|
3
|
-
xinference/_version.py,sha256=
|
|
3
|
+
xinference/_version.py,sha256=UK39f7bKAwfaeWtCUM51WiC6chlaNYVcNxfTpFv9Flg,498
|
|
4
4
|
xinference/conftest.py,sha256=FF-ZkqkfOxQw4hz_8G7p5aB7gFdsJlr6u2ZdFuuauAA,9744
|
|
5
5
|
xinference/constants.py,sha256=FZwKBlSwUMb1_qKMZWfkz9z6nrgdgOhO-g7S_Qn3cis,3319
|
|
6
6
|
xinference/device_utils.py,sha256=zswJiws3VyTIaNO8z-MOcsJH_UiPoePPiKK5zoNrjTA,3285
|
|
@@ -21,17 +21,17 @@ xinference/client/restful/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7
|
|
|
21
21
|
xinference/client/restful/restful_client.py,sha256=3He6Tj6GUJ3IVc_CjDDX1pzKUSomEOSK5oE_2Zj2VBk,51649
|
|
22
22
|
xinference/core/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
23
23
|
xinference/core/cache_tracker.py,sha256=2hk8ANOYruhxAt4MPz482tYEQcvYBh_B7sq0eYd0rTU,6963
|
|
24
|
-
xinference/core/chat_interface.py,sha256=
|
|
24
|
+
xinference/core/chat_interface.py,sha256=iOc44reuewD7w2AtQUJWHU0yWdkhleS0KZbqnDW1_TA,20944
|
|
25
25
|
xinference/core/event.py,sha256=Lkx_-Ohwyzyt-MBbkrZy9N-7aeYs-wux0fDtZpa2SJY,1632
|
|
26
|
-
xinference/core/image_interface.py,sha256=
|
|
26
|
+
xinference/core/image_interface.py,sha256=B_unlVzesE-shlsQg6Q2UCD12NnyHWr2OefkYNwsWlA,10539
|
|
27
27
|
xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
|
|
28
|
-
xinference/core/model.py,sha256=
|
|
28
|
+
xinference/core/model.py,sha256=7JB0-sCCkAgGHpwGHUaZNey7yadm_1QlbgBChNM4CCQ,27836
|
|
29
29
|
xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
|
|
30
30
|
xinference/core/scheduler.py,sha256=X5lWhzkgTgZgIU-RKz1ytFIju4kE9voII0y0KYUaym4,15651
|
|
31
31
|
xinference/core/status_guard.py,sha256=fF5hisvfn6es9DV6Z6RRD6V_S_uLcb8lHM6PArGgb04,2820
|
|
32
32
|
xinference/core/supervisor.py,sha256=BhL-VCUvfazH_UQ8n99vCgapwt_ZB73KWwZy9NY6rPw,52253
|
|
33
33
|
xinference/core/utils.py,sha256=LqPrez5dGELRQDSwOD5EP8XHb-aUKAdyszS-QpNouuw,6401
|
|
34
|
-
xinference/core/worker.py,sha256=
|
|
34
|
+
xinference/core/worker.py,sha256=l5Dm-wrm2wKsSQ0P59ZpqW0mRxndtQlnDKlDFqisuMw,46156
|
|
35
35
|
xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
36
36
|
xinference/deploy/cmdline.py,sha256=PNp5_Y9_ZMceTHiwbKcj7EEKQo6lpaOVMVfkGxx9190,48489
|
|
37
37
|
xinference/deploy/local.py,sha256=vlAvhcl8utP1DjW4MJpBgD4JLHQV-1Xebmdd8j9M8IM,3946
|
|
@@ -42,81 +42,85 @@ xinference/deploy/test/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQ
|
|
|
42
42
|
xinference/deploy/test/test_cmdline.py,sha256=m8xDzjtDuAJy0QkvYVJIZDuTB29cmYBV0d231JyRCPU,7714
|
|
43
43
|
xinference/model/__init__.py,sha256=IRC3ojiqYkVLIK_xsIxYeKypEeeTTdrovnVzK_4L4eg,663
|
|
44
44
|
xinference/model/core.py,sha256=WQakLJgxrJMbTGn9AVaw-Tas7QL5M8cJsuYpGgH-io8,4706
|
|
45
|
-
xinference/model/utils.py,sha256=
|
|
45
|
+
xinference/model/utils.py,sha256=4rseD7ckXDwhzIFbsXoJPPfV0I1BB5PT96qs9rMQ-Xk,12634
|
|
46
46
|
xinference/model/audio/__init__.py,sha256=QyQwELIYk7DuD5Hen2q45pLMJ4K8iAnto8zlOA9QUSY,2839
|
|
47
|
-
xinference/model/audio/chattts.py,sha256=
|
|
48
|
-
xinference/model/audio/core.py,sha256=
|
|
49
|
-
xinference/model/audio/cosyvoice.py,sha256=
|
|
50
|
-
xinference/model/audio/custom.py,sha256=
|
|
47
|
+
xinference/model/audio/chattts.py,sha256=osLh_7eTtsYGLBWI-QaNusBIqmLGxYRVZQJMNDYMV-U,4495
|
|
48
|
+
xinference/model/audio/core.py,sha256=All5OqarDEcmWWpGwPKblDOsoVpJx5xDVJCjI_TznWo,6496
|
|
49
|
+
xinference/model/audio/cosyvoice.py,sha256=dPrSvbd6nXzPozMdy_8AjA0FulVSzgEt1OLBRp99JQI,4987
|
|
50
|
+
xinference/model/audio/custom.py,sha256=8GXBRmTtR-GY03-E91nlRGTIuabCRzlt20ecU6Un6Y8,4985
|
|
51
|
+
xinference/model/audio/fish_speech.py,sha256=UFPn9crljYYOXGHW1z_uEwHvjTClgjJap85u0rbxJ38,7015
|
|
51
52
|
xinference/model/audio/funasr.py,sha256=zAkQPZp9H4zXbCjWJW1qxWK4B88XXrVaewvdoPQylo4,3985
|
|
52
|
-
xinference/model/audio/model_spec.json,sha256
|
|
53
|
+
xinference/model/audio/model_spec.json,sha256=GSbEIX9g-Ec8IvuLEcNxc-e3CQupEZlnC63bI4MTe0s,4758
|
|
53
54
|
xinference/model/audio/model_spec_modelscope.json,sha256=dTINTAHopLQtDVLNJXURUG8u8Iv39-D7Vp_bDr3Lck8,1729
|
|
54
55
|
xinference/model/audio/utils.py,sha256=pwo5cHh8nvhyBa9f-17QaVpXMSjmbpGbPYKwBBtEhGM,717
|
|
55
56
|
xinference/model/audio/whisper.py,sha256=okhJWnWoE-1Jmk-oKxTotCQ56rQIFMhTOZOmJBk5ug0,7764
|
|
56
57
|
xinference/model/embedding/__init__.py,sha256=0FLzOZyOuMctxFvhobkLXRUepwHck6RPbtjCct1eMI8,2854
|
|
57
|
-
xinference/model/embedding/core.py,sha256=
|
|
58
|
-
xinference/model/embedding/custom.py,sha256=
|
|
58
|
+
xinference/model/embedding/core.py,sha256=sP_R5Zc9Gx2zUdb3sE6phx-zdCa4PgXzbQbO8SuKwIM,17601
|
|
59
|
+
xinference/model/embedding/custom.py,sha256=757KncqhsOWVypHZFtuhBP_xy-UTNaFdy0BuZRfuIV8,3848
|
|
59
60
|
xinference/model/embedding/model_spec.json,sha256=jhM2MVaxhihFvShVs18xx0vuneBfAVDUCFyaJ9IgIh8,6889
|
|
60
61
|
xinference/model/embedding/model_spec_modelscope.json,sha256=FYMBk4zE__lvjU0tiT5aNW1QYd1cr2Gj39BShG2h2PU,6010
|
|
61
62
|
xinference/model/embedding/utils.py,sha256=t_y-7TrYenJKzX3p8e8KWXyC66u7Kd7lMvSzEOolnZw,790
|
|
62
63
|
xinference/model/flexible/__init__.py,sha256=AmJBQVIHyrLtDe1kDxxvJIUL_KmVSkiu4PWg61BRBhg,1408
|
|
63
|
-
xinference/model/flexible/core.py,sha256=
|
|
64
|
+
xinference/model/flexible/core.py,sha256=3REGHL9uUTgwgEEr6qv5uNMq-j-7by4bAco7QNwwxx4,7231
|
|
64
65
|
xinference/model/flexible/utils.py,sha256=_GlEarRHKPAxT7o6N39VOd9sB580zKzdSktqjbdrNig,1145
|
|
65
66
|
xinference/model/flexible/launchers/__init__.py,sha256=X8w_2hKuQ9H3f90XYK7H_AQU4J8lHQdEeUNBZcdqso8,704
|
|
66
67
|
xinference/model/flexible/launchers/image_process_launcher.py,sha256=APbbHls0N9DpLFL6_qTexuc5o6bQAvdgJEAZWU4clyw,2510
|
|
67
68
|
xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRUGhulP4PRJ4fZEJ2D9cfv7lcC2qJBoDE,2012
|
|
68
69
|
xinference/model/image/__init__.py,sha256=lDtP961bpu6h5TK57kJ531Zoch2xU5DM-Eco_YQne-Y,2780
|
|
69
70
|
xinference/model/image/core.py,sha256=JmzqyvY_DicnAa1TeKUXHTTvDB0gg-bT9ONwh5-3GhM,8871
|
|
70
|
-
xinference/model/image/custom.py,sha256=
|
|
71
|
-
xinference/model/image/model_spec.json,sha256=
|
|
72
|
-
xinference/model/image/model_spec_modelscope.json,sha256=
|
|
71
|
+
xinference/model/image/custom.py,sha256=5gjujQpJVTJ-pVB5LzBo4-bWKKOHzFlRaoRKJ_CuIUg,3769
|
|
72
|
+
xinference/model/image/model_spec.json,sha256=dt0BVh4OGwuwNuh1TLZNoJ5UcQP4UQQMtAAE_-Hqjjo,5086
|
|
73
|
+
xinference/model/image/model_spec_modelscope.json,sha256=Tl44o5EJnxJhSItQIf4iLK73Bs_1heAubW_pX2C4ZGA,3984
|
|
73
74
|
xinference/model/image/utils.py,sha256=gxg8jJ2nYaDknzCcSC53WCy1slbB5aWU14AbJbfm6Z4,906
|
|
74
75
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
75
|
-
xinference/model/image/stable_diffusion/core.py,sha256=
|
|
76
|
-
xinference/model/llm/__init__.py,sha256=
|
|
76
|
+
xinference/model/image/stable_diffusion/core.py,sha256=Z6KjLdHV_ityLMByd38wcyILBSc7wV3Qe1vVJ2oqn9U,12532
|
|
77
|
+
xinference/model/llm/__init__.py,sha256=Gc1UfXo2PIbZ4oOqK7w0yBxZg7h2-AdaqK-XAQbXduk,11581
|
|
77
78
|
xinference/model/llm/core.py,sha256=f4nKVPTAseivij6mbL2yXEKxrzllKm-_i2ttSqckTCg,8157
|
|
78
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
79
|
-
xinference/model/llm/llm_family.py,sha256=
|
|
79
|
+
xinference/model/llm/llm_family.json,sha256=XnWU4i00VB0nT5hPOHFpBVr_5NcdwozNbN9s_XXeEjY,190276
|
|
80
|
+
xinference/model/llm/llm_family.py,sha256=3FI9UYlWnArtUR1NqwLPIAT077u0pf8TSMpKBQL-e-U,38147
|
|
80
81
|
xinference/model/llm/llm_family_csghub.json,sha256=fqIodnCl2_VUpX1NaBdVYApG2LRkXMhUxLNhLt8C7W8,3057
|
|
81
|
-
xinference/model/llm/llm_family_modelscope.json,sha256=
|
|
82
|
+
xinference/model/llm/llm_family_modelscope.json,sha256=1-to5OOgJEsmhwErurfTX0DRNhWP2PnwBA2XonC1H5Y,125262
|
|
82
83
|
xinference/model/llm/memory.py,sha256=NEIMw6wWaF9S_bnBYq-EyuDhVbUEEeceQhwE1iwsrhI,10207
|
|
83
|
-
xinference/model/llm/utils.py,sha256=
|
|
84
|
+
xinference/model/llm/utils.py,sha256=boZBoSuxHko_hlj5tY6AsvSgOEw9isZ0yP4oYllk5VI,35808
|
|
84
85
|
xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
85
86
|
xinference/model/llm/llama_cpp/core.py,sha256=sTwUY6a14bCXgAbFMNmDM2ToQMj-iAk-0KHnFJGz3tU,11755
|
|
87
|
+
xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
|
+
xinference/model/llm/lmdeploy/core.py,sha256=-oG8jYXIkzNLUMl0tR0MxFykQhPFCai002x_KE_ZeVM,20714
|
|
86
89
|
xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
87
90
|
xinference/model/llm/mlx/core.py,sha256=rxZ7aS9QoapJJ0jBOct4ckj5KsftWlND0n6Qlbs3A-w,14485
|
|
88
91
|
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
89
|
-
xinference/model/llm/sglang/core.py,sha256=
|
|
92
|
+
xinference/model/llm/sglang/core.py,sha256=AIG5YzM956VsGSJ8chx1bCvVbtq_mccyAwmFo59kZPU,15951
|
|
90
93
|
xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
91
94
|
xinference/model/llm/transformers/chatglm.py,sha256=h0LgHWWoLk96VnW0ZS4o9QGntQWDScGmGmJoIVwKkK4,22118
|
|
92
|
-
xinference/model/llm/transformers/cogvlm2.py,sha256=
|
|
95
|
+
xinference/model/llm/transformers/cogvlm2.py,sha256=hPghq5UUgJ80g5JC1FbH_MUmFssmkkchgp7Xife2HFQ,16811
|
|
96
|
+
xinference/model/llm/transformers/cogvlm2_video.py,sha256=1gYBHTz5ZrvcsMroDmIRQ3bc03Qq-JL_rO2VSHlu9Ms,18876
|
|
93
97
|
xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
|
|
94
|
-
xinference/model/llm/transformers/core.py,sha256=
|
|
98
|
+
xinference/model/llm/transformers/core.py,sha256=eDUZwIao0i8I_67zp5tAY2VLmGkg47yik7CZf9rTJdM,30914
|
|
95
99
|
xinference/model/llm/transformers/deepseek_vl.py,sha256=yiOJd2GHrVTTFvyZ7hLV-O-YsCfqRAEHK46ah-zqq3I,11562
|
|
96
|
-
xinference/model/llm/transformers/glm4v.py,sha256=
|
|
97
|
-
xinference/model/llm/transformers/intern_vl.py,sha256=
|
|
100
|
+
xinference/model/llm/transformers/glm4v.py,sha256=L9rTyuwd0VriudlqH6FkNAugWNy3eOasFYMy59KuNeo,15706
|
|
101
|
+
xinference/model/llm/transformers/intern_vl.py,sha256=ogWYnNl6FOT4KvY3M3d364twC5ZlQT6_xxlK_UgBKoc,19256
|
|
98
102
|
xinference/model/llm/transformers/internlm2.py,sha256=9x_mPhCQifmBVNoIQ_z3DXtI2qRsA_3wOckRsGmDDog,7831
|
|
99
103
|
xinference/model/llm/transformers/llama_2.py,sha256=Nr2yaNxmoDmPhIw_p0lwN76iB4jxh7NGKDoK-YaIZiY,3836
|
|
100
|
-
xinference/model/llm/transformers/minicpmv25.py,sha256=
|
|
101
|
-
xinference/model/llm/transformers/minicpmv26.py,sha256=
|
|
104
|
+
xinference/model/llm/transformers/minicpmv25.py,sha256=NLuJpeTmqnc8Cn_13-bSjVmtqSUbtxXd20j-sOOWP84,7879
|
|
105
|
+
xinference/model/llm/transformers/minicpmv26.py,sha256=BlmsIqjrD4oHewaskGTemOAN8Dr2S0V7YmFoZQXffZs,9603
|
|
102
106
|
xinference/model/llm/transformers/omnilmm.py,sha256=3vF8963CbSOrTZhkiNrzAI-p14b57s8QiR_aGBM1oMY,5724
|
|
103
107
|
xinference/model/llm/transformers/qwen_vl.py,sha256=4JukyB0YVH0TcyV8sIErhbRRJgNdrB4jSxx1mFBnIQ8,15592
|
|
104
108
|
xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
|
|
105
109
|
xinference/model/llm/transformers/utils.py,sha256=EMHeihMi6MWL9j1m2CUB1Pcniv-fJjDOcoMs8e5oEbE,27936
|
|
106
|
-
xinference/model/llm/transformers/yi_vl.py,sha256=
|
|
110
|
+
xinference/model/llm/transformers/yi_vl.py,sha256=JeraCcpwzscLrqNq4fIGVohFbgEYHJYR6YAvvTzU7Pc,10116
|
|
107
111
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
108
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
112
|
+
xinference/model/llm/vllm/core.py,sha256=DMuA6iGZei1UYadMsT4KPUssl3kuvzGoyldptTn7ie8,26441
|
|
109
113
|
xinference/model/rerank/__init__.py,sha256=BXIL1uu3ZpZHX9bODhW9lxKUXudZE7-OkXFmmM5rpMU,2817
|
|
110
114
|
xinference/model/rerank/core.py,sha256=G3SMm7BlMk3r8zyDs5FwwTCemlWHYspuZtTh8pWpdmg,12231
|
|
111
|
-
xinference/model/rerank/custom.py,sha256=
|
|
115
|
+
xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
|
|
112
116
|
xinference/model/rerank/model_spec.json,sha256=zZHVUq9B5vwTQOzXOXNK3pgGpQVrMG9npAYwftqFZ3I,1608
|
|
113
117
|
xinference/model/rerank/model_spec_modelscope.json,sha256=vSSC0aWy_DHnNDzzBcMWr2pqdISDmPS95FtD_YfMmn4,1275
|
|
114
118
|
xinference/model/rerank/utils.py,sha256=MJAFL47G3r3zLVGXKoi0QLTgU3Xr4Ffv72Ipn--psew,713
|
|
115
119
|
xinference/model/video/__init__.py,sha256=DZBkad3SRlQIVRHP72R-cN3mKN0H-7NWUa6VBHm6IVU,2027
|
|
116
|
-
xinference/model/video/core.py,sha256=
|
|
117
|
-
xinference/model/video/diffusers.py,sha256=
|
|
118
|
-
xinference/model/video/model_spec.json,sha256=
|
|
119
|
-
xinference/model/video/model_spec_modelscope.json,sha256=
|
|
120
|
+
xinference/model/video/core.py,sha256=PMqyWhhBWO77VjpEvTC7EQrGmyLWxJ_-Mm1VRqb2dNY,6031
|
|
121
|
+
xinference/model/video/diffusers.py,sha256=kSEBRf0vtWyo0IrwoiEpr_ROu7SwDAVBZ4leqkcPycM,6244
|
|
122
|
+
xinference/model/video/model_spec.json,sha256=yQcLSU3vRJys-ACdHGtTNdz2pX1O9QDQ5rGHQd9LdFY,817
|
|
123
|
+
xinference/model/video/model_spec_modelscope.json,sha256=U8p6IqNLbY5Safxwpa6dCfnGbyvOC4FtYIf2ucr8TvM,815
|
|
120
124
|
xinference/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
125
|
xinference/thirdparty/cosyvoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
126
|
xinference/thirdparty/cosyvoice/bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -180,6 +184,100 @@ xinference/thirdparty/deepseek_vl/serve/app_modules/utils.py,sha256=OzrxNSM8oNLK
|
|
|
180
184
|
xinference/thirdparty/deepseek_vl/utils/__init__.py,sha256=u8C--egJMT_DDm0JG3frXGSQNNv6cfIAumPhghzkxhk,1091
|
|
181
185
|
xinference/thirdparty/deepseek_vl/utils/conversation.py,sha256=7oITA8TsIuOfumVZ8hcoDpA6dm1jz7n8-VXPe_7-4YA,11702
|
|
182
186
|
xinference/thirdparty/deepseek_vl/utils/io.py,sha256=HQqLoONZF4nl1E9oMrm7_2LwU8ZSh1C9htm7vLN4YfI,2751
|
|
187
|
+
xinference/thirdparty/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
|
+
xinference/thirdparty/fish_speech/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
|
+
xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=Qh8G6Y7O1qUa2cjRdDBKDLP3ygyn1cFgdEBilkZsI7U,58
|
|
190
|
+
xinference/thirdparty/fish_speech/fish_speech/scheduler.py,sha256=xpstAfXlsdx-N_hDcJJYFKiLb_cW5mTdXACyuODrcIg,1101
|
|
191
|
+
xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=8Q-M1wBr6z77pQLvZyfHrjTV_zYCrWUrLheA6hQectk,4443
|
|
192
|
+
xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py,sha256=LYHvlvb9463UMJ3stVzBilVpLtdiLCteuzMIB5ypHS0,70
|
|
193
|
+
xinference/thirdparty/fish_speech/fish_speech/callbacks/grad_norm.py,sha256=pzuUxUnXWAa9U6XKcvQpnGoUZhMmFQKimSqYH-WajIQ,3436
|
|
194
|
+
xinference/thirdparty/fish_speech/fish_speech/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
195
|
+
xinference/thirdparty/fish_speech/fish_speech/configs/lora/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
196
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/concat_repeat.py,sha256=y9pAty3Sa3gyfAERSaubmMNRdUzyAw4zzoDyXzuGGxQ,1498
|
|
198
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/semantic.py,sha256=FHpdQj3awN-21w3f96xL0Z6DvEnOpW7qES8_ZjdHBt8,16727
|
|
199
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/vqgan.py,sha256=NMOaBOYPvHuMPwyRx5ahJh0pkhPauEFVWMGFi2Vl7L8,4012
|
|
200
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_pb2.py,sha256=GFnBeGCTFtWJTdNXQx0hzPpxagzleSyWxN3pE22-E2g,1758
|
|
202
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_stream.py,sha256=v9i3jbIC6KFTSLvSVso8-3mBDufSOwE7IAr4-5RXgQ0,781
|
|
203
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/__init__.py,sha256=u9r_HCtTmYcU64L62Gg9lLANvGybfb0-ETw8Ob-fnxY,43
|
|
204
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/core.py,sha256=8Ks8wGog73U-AZqlzGltfx61KALGTh7uCIXnQHDnDOw,1036
|
|
205
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/scan.py,sha256=1mdXKPeR0d3bTcFZWhX6ODWUJbbiOHO73MBDEJlTmUY,3751
|
|
206
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
207
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/en_US.json,sha256=O7W7R78RoE_vy9S2yuYUBQw91aykw8Mhwgt7WUv3y6g,8123
|
|
208
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json,sha256=Mdp3T59iZh3KvWwndcut5gpeN7lVyLAKliyDLbOmlGs,9026
|
|
209
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json,sha256=-XEQvWtxYFCu-MHBjQWmlOzpFiznxEhkqGObFjuEiMg,9533
|
|
210
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json,sha256=pm4GUSUOC0HcpIJagE0Kabfj-ic4qnsh3Fxp1ByPF6M,9672
|
|
211
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json,sha256=grThn88-jttZQOzsV4qyydT40u5J5HvrYC66pPXjpaU,7781
|
|
212
|
+
xinference/thirdparty/fish_speech/fish_speech/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
214
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lit_module.py,sha256=Brrgxy6tHNAwclfu04XDNLKzzGU_FamBL5D8XWPj99A,6567
|
|
215
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=CDrQ6sUJ5gwFXjzBb25T-NUeBuzo1rKkxww_Fv4KoM8,25764
|
|
216
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lora.py,sha256=KHbtG1BGrFMtdoMtHXPWb3OTez8HtHEiuAaMEFOrNYI,2923
|
|
217
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py,sha256=ZcGYSCAe5uCM9lRLqYQ__YlpKRPIIW8wNKJgqYcPnJc,51
|
|
218
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/lit_module.py,sha256=cxzIZ52_pNZE3Z_VOUiBn1MFuN9tjjl8haAN81oI25c,14238
|
|
219
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/utils.py,sha256=irmTsK36GlLccFI5CjWahKO7NG6LZQrd5FEh_7qy4Xs,2533
|
|
220
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
221
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/discriminator.py,sha256=bdOovuQUg9R5GD3bwpBcH864k5zr_iEX8B2qWnq3zk0,1203
|
|
222
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py,sha256=BS8_2ttzcIwlYpOCQe-TJaRz5nEooyyQqnlmKMUMgo0,20469
|
|
223
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py,sha256=Lgp0ovnddj9ECcXmvAbXsga1OdxXCkaQFCFrHlC1YWk,4000
|
|
224
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/reference.py,sha256=1qozYaZ9b9LlUntbg2PHCquyyzG54KWKdPdyXVgWoQM,3613
|
|
225
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/wavenet.py,sha256=UakV7x67j5hZB5kzfxUbvz8dQtKdRgeTNKrR5SWHu_U,6469
|
|
226
|
+
xinference/thirdparty/fish_speech/fish_speech/text/__init__.py,sha256=3lYfSw4Xb3Qh0p8FsjX4ToOJNsm7ZxN3XPh_xFKXoUQ,102
|
|
227
|
+
xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=CTNqZJRf8KSvIcAZbIA0t6BSbDeBlJDnHsOs4JQWKpo,1399
|
|
228
|
+
xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=GRwZepmtWAfcyOWjCsBfXhC3_l4LP5CIKS5t3m8enuA,3799
|
|
229
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
230
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_class.py,sha256=m4d9b6Mr30ChJ4NzWbWQwAG2PtnTjEAkMB5_wGtINAs,4390
|
|
231
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_constant.py,sha256=EBvR_-At1FbsbSmryn5ch41UND-ob3K-dLunpceM4LU,976
|
|
232
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_util.py,sha256=yh_e9nw9bsDYBo0JNgps96D3IrRmrXxa8aBXPXKLHw0,11342
|
|
233
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/cardinal.py,sha256=QyeejVyIK_zc8g5eIMwPsRHClVJtxETzV9JDK1z_KJw,689
|
|
234
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/date.py,sha256=q-aWfALNzMDV6aFkj-cjwc_CY7DfkDKpm-O8H-RXp84,2161
|
|
235
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/digit.py,sha256=bAc4r56huEhqqGg5hPCPA_icJ3U4mDhG5JtAaU1amlo,665
|
|
236
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/fraction.py,sha256=xHzkGNHLYhYgVlB0WFhuYq67kHRnznCVEbQeoppZSIc,927
|
|
237
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/money.py,sha256=aSN88hdY5IP6lHimj9XXq7ZjYxo6BfoA9Gr7yQNMwjA,1018
|
|
238
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/percentage.py,sha256=3DCSkP7Qg5px99rfgF-Qb1yL9HeMDAV6OxE2VSleeSo,838
|
|
239
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/telephone.py,sha256=cDPtwmnHKD_JP29wIp5p1Og0I132BUg_cmzGdyoJHM8,1557
|
|
240
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/text.py,sha256=8TdfX5c9t144t1sbhbyTeYncvL_3yjgFAwJfuZqXsIs,6936
|
|
241
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/__init__.py,sha256=mDvZjkfjn7MhYBK3zbS_DJXxlXV3T8JbuPwJbG47uI8,680
|
|
242
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/braceexpand.py,sha256=X_44wW-LJP21kNb19j63DSSzFopkgsSNkqmsElLSS6U,6724
|
|
243
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/context.py,sha256=G5AyI1qavhX-vBesANU0Mb97ojBY80nwiXBrzNFdQ5E,287
|
|
244
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/file.py,sha256=GrVn5R0Mc5Veb3_9kyOaH_yIiN3zoFvV7g1G3SY-Rp4,345
|
|
245
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/instantiators.py,sha256=KkX18XTz13Et3gKzCGELXI1ZsF_Ons8rdQxPm4Rvxh4,1514
|
|
246
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/logger.py,sha256=WVnMyEQqlO2nvt4xySkFogcepeNDNcHWjTYY-m0fo4I,2467
|
|
247
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/logging_utils.py,sha256=BJ3h8hF-62MbqxajhmZgKglkpjPfz_GTFTr682SIeYU,1384
|
|
248
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/rich_utils.py,sha256=RHRUrq2xY1d1Eg24htFnmyj0RRW2NRdww9xz0jWnQt8,3105
|
|
249
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/spectrogram.py,sha256=R9dGOEJnsF03T-9BBFLwMHikgp1VYTe7Cm76doKj76s,3239
|
|
250
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/utils.py,sha256=GaL7k1geF-D5temeOQI2Q8RzfC_Jc1bsQnLNvO-sV1c,3793
|
|
251
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
252
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py,sha256=uIWcCXHyF7Oqo7uyq8li0fpVL6q-t-ITk2k3ma5WjU0,3972
|
|
253
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=yCmMEMtchR9lCnaBMLyzLInp_9MGQNEPyPp0sxnK_6E,46882
|
|
254
|
+
xinference/thirdparty/fish_speech/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
255
|
+
xinference/thirdparty/fish_speech/tools/api.py,sha256=Voi8YlyENsYNI9cOZ_FhbOTRbE0XENoXqHYRRtoCf1Y,14806
|
|
256
|
+
xinference/thirdparty/fish_speech/tools/auto_rerank.py,sha256=HeVUTG0yh4suJ2Ijnazml0ybIHZIbVhciAc8sul0Nxc,4033
|
|
257
|
+
xinference/thirdparty/fish_speech/tools/download_models.py,sha256=kTFkIZTdYpnJe0vzNA_uVaGbdBAp43mLBrZnSQIoSsY,1373
|
|
258
|
+
xinference/thirdparty/fish_speech/tools/extract_model.py,sha256=42b_U4rmqX3OUOIqWQQczsEktt79aQSOJ4E55B1bHl8,536
|
|
259
|
+
xinference/thirdparty/fish_speech/tools/file.py,sha256=soQoO6epHGv8aEeRrGxYW9kGHwGleYVrc8NxlbOd-2E,2633
|
|
260
|
+
xinference/thirdparty/fish_speech/tools/gen_ref.py,sha256=_frao-RXnsgEKNSQ2NWYDtyJl-3tcw-dDS-MCBC1FNg,1020
|
|
261
|
+
xinference/thirdparty/fish_speech/tools/merge_asr_files.py,sha256=oeW-WFNVnXp0pH7SoLi64GmubNrWDu46XS_5qi2ffYE,2013
|
|
262
|
+
xinference/thirdparty/fish_speech/tools/post_api.py,sha256=QKzUwAZ_bvEC-aTRampep69K9oX5o111-DzVVPdDkvA,5047
|
|
263
|
+
xinference/thirdparty/fish_speech/tools/smart_pad.py,sha256=MWA78einNJI4gRgb5nrs8bXD9GWv9V4V5xcX-C_qc7I,1264
|
|
264
|
+
xinference/thirdparty/fish_speech/tools/webui.py,sha256=h32_3IidZbIFsbRlOIViMghaQ2QGzM5qkp6ugVM5-sM,18917
|
|
265
|
+
xinference/thirdparty/fish_speech/tools/whisper_asr.py,sha256=uG6NsSnH6oLEkCRM-Tb8o6L7OKDZ1eSVd8obEoq7jVc,4893
|
|
266
|
+
xinference/thirdparty/fish_speech/tools/llama/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
267
|
+
xinference/thirdparty/fish_speech/tools/llama/build_dataset.py,sha256=sRWljD4-WIziEG8uDbfuOiZ3OsK1Ug1yRKNu9cCrjHw,4910
|
|
268
|
+
xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py,sha256=vF2OVE4kj5qVaBBHGR1eTqcmLWvUeoO4OMj9eUkTXvw,4623
|
|
269
|
+
xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=czEjxx_RnHzfwN8A0ZO4FkYcbivFGQaJJv3ucgtQYHM,21644
|
|
270
|
+
xinference/thirdparty/fish_speech/tools/llama/merge_lora.py,sha256=fQSKyLIGV8B1xDuzxCWVMu8WSO_wbYqR_mwLfFNTnJk,3277
|
|
271
|
+
xinference/thirdparty/fish_speech/tools/llama/quantize.py,sha256=kyFK1FuszL6erStml8jqxqDR43LjgcjlT1d3LeHwTz8,16606
|
|
272
|
+
xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py,sha256=MuFdqOsU2QHq8cSz7pa4PAsjZyrJrghCZQR2SrpplTQ,2025
|
|
273
|
+
xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
|
+
xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py,sha256=abg8hFiVcWwhJYT_E8De-vYRUQOs1u0Zxxgz1nj1790,22739
|
|
275
|
+
xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py,sha256=gLpuvycuY2_QyOqBbwfBCtDQ9CdEQovcBOvmbHvHqjo,10182
|
|
276
|
+
xinference/thirdparty/fish_speech/tools/sensevoice/vad_utils.py,sha256=QZhdJN6PiJUWui_8fdt_-BA32OKVfvjqV8roavLna20,2214
|
|
277
|
+
xinference/thirdparty/fish_speech/tools/vqgan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
278
|
+
xinference/thirdparty/fish_speech/tools/vqgan/create_train_split.py,sha256=aWQeRSJ_KRPp72qtXoFvxJkkP6P-73VKIew2iIeETos,2996
|
|
279
|
+
xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py,sha256=85HKh1ZI0wgeMsX1viEZbv3JIVFCUa5X0euhXSPwiGM,6770
|
|
280
|
+
xinference/thirdparty/fish_speech/tools/vqgan/inference.py,sha256=6YuLl23AMpPj07hZCsPfAn0DQUL9wV4i3T096h8csmo,3777
|
|
183
281
|
xinference/thirdparty/internvl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
184
282
|
xinference/thirdparty/internvl/conversation.py,sha256=2wLSnfxyLItQaLd-N5xoybBPKyZadXkVntPuMV5iyGo,15040
|
|
185
283
|
xinference/thirdparty/llava/__init__.py,sha256=UlCNtyBVX645CB6S6LfyYkTfQVO18_a8e9SmR7cHExA,41
|
|
@@ -194,6 +292,48 @@ xinference/thirdparty/llava/model/clip_encoder/builder.py,sha256=D1d2_hW2V1kT4jn
|
|
|
194
292
|
xinference/thirdparty/llava/model/clip_encoder/clip_encoder.py,sha256=ieNXVeV1UFIxbcMufZewxofnSSP9t5dBhMFLfMJcFN4,2789
|
|
195
293
|
xinference/thirdparty/llava/model/multimodal_projector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
196
294
|
xinference/thirdparty/llava/model/multimodal_projector/builder.py,sha256=URP051uhGLWqC6ERsqjn2MiQDNYzOoQ6EJEcB-Z0RzM,1933
|
|
295
|
+
xinference/thirdparty/matcha/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
296
|
+
xinference/thirdparty/matcha/app.py,sha256=bBOG1VM5L8X64aF8rH4iddu45dje9lmkyr5ubAq_4-4,13992
|
|
297
|
+
xinference/thirdparty/matcha/cli.py,sha256=QfYJNwcmItevYGsbQAQc4zQSNsiRPwNu1rqyS9xH66U,15592
|
|
298
|
+
xinference/thirdparty/matcha/train.py,sha256=eKFZFkaSvmdfMNhOAcvp63kp-Wvj_9IE47mAp4sHGxg,4613
|
|
299
|
+
xinference/thirdparty/matcha/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
300
|
+
xinference/thirdparty/matcha/data/text_mel_datamodule.py,sha256=aC9ULlp2re5fKBh6wTXMth7KFp3-ki3vOI9EwKfynhA,9206
|
|
301
|
+
xinference/thirdparty/matcha/data/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
302
|
+
xinference/thirdparty/matcha/hifigan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
303
|
+
xinference/thirdparty/matcha/hifigan/config.py,sha256=cxS_YTK_UoO2uma_Ue8QRFtNA6ldSEt1EL36u2-NgCc,779
|
|
304
|
+
xinference/thirdparty/matcha/hifigan/denoiser.py,sha256=Q2juI2a3QTqce6fuvqWQnShoV671kVW2JsQyoqwwvLI,2644
|
|
305
|
+
xinference/thirdparty/matcha/hifigan/env.py,sha256=QthDmqTWWAIo2tSI-arVteRVxnKUnm9mkjlQVnXbmDc,429
|
|
306
|
+
xinference/thirdparty/matcha/hifigan/meldataset.py,sha256=4Ps0NXA3Yv0oV2PyCdHcptc4lZ43tp978m3BM2NYWxc,6786
|
|
307
|
+
xinference/thirdparty/matcha/hifigan/models.py,sha256=Ln7J7YzeN4h33tBKQHhlPcoNfmX-_-kwBkTZIYJY5q8,11668
|
|
308
|
+
xinference/thirdparty/matcha/hifigan/xutils.py,sha256=aNtYu1SyQaGtbN_NnSfLGhTi-r_y3vYKMIf7EYGaDOA,1396
|
|
309
|
+
xinference/thirdparty/matcha/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
310
|
+
xinference/thirdparty/matcha/models/baselightningmodule.py,sha256=0PKvALIWaJLGV2Pgyl9mwAXbTViC-M3J1Yj934mJ1rU,7049
|
|
311
|
+
xinference/thirdparty/matcha/models/matcha_tts.py,sha256=bIRbDYMzUir6W7oH9MoCGD_5s7Ug8kcc-vmOJM92QNU,10383
|
|
312
|
+
xinference/thirdparty/matcha/models/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
313
|
+
xinference/thirdparty/matcha/models/components/decoder.py,sha256=fqlKYc08lnA6oQf9zRuC3i8vat4go8X0NLYAUxgXams,14459
|
|
314
|
+
xinference/thirdparty/matcha/models/components/flow_matching.py,sha256=pvKy7somAHSdV13ahiTYZNkEIn4qn3ZKbLK4kpBEXmw,4657
|
|
315
|
+
xinference/thirdparty/matcha/models/components/text_encoder.py,sha256=QEQynUB7PaBsdlJ-e1TUBAe9rL2LBnmk5bAkr_vCTek,14845
|
|
316
|
+
xinference/thirdparty/matcha/models/components/transformer.py,sha256=Zv8gktl0qZslG52OXAi7zszq7fr0HivYrytLx6Vty-o,13237
|
|
317
|
+
xinference/thirdparty/matcha/onnx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
318
|
+
xinference/thirdparty/matcha/onnx/export.py,sha256=VUAviRbyh9WhXaxLPQjdQLwaVK_ZZNgaWPMFA2UKh4c,5386
|
|
319
|
+
xinference/thirdparty/matcha/onnx/infer.py,sha256=ACgjtfMdvzuU4XmalNLrebmkBD2W8VLcLi8blXnjUmU,6293
|
|
320
|
+
xinference/thirdparty/matcha/text/__init__.py,sha256=Nyfj5js7itNwOf2xfb0EAxa7tvcivYKnxJYfN3qLPr8,1708
|
|
321
|
+
xinference/thirdparty/matcha/text/cleaners.py,sha256=CrzCUkbU1Pk0yhjH3U3rdLkQhFD6pqtTXxXHwY1ZHh0,3797
|
|
322
|
+
xinference/thirdparty/matcha/text/numbers.py,sha256=Nwp-HmqaqstAELVqqlMu_7bj4qiWQzMXFmw56nBq1h0,2249
|
|
323
|
+
xinference/thirdparty/matcha/text/symbols.py,sha256=hw78I8JtBmkri5HiDUQC05i2N9MFkxWJoHujIxJFP1c,635
|
|
324
|
+
xinference/thirdparty/matcha/utils/__init__.py,sha256=YNs91rjzeUcVSs3aZjv9thma42I81Jksy9RF3nquvOo,326
|
|
325
|
+
xinference/thirdparty/matcha/utils/audio.py,sha256=L3QQZL_MlIXRmkI1ZJbYriTeyAw9bvXKf06Kv7-cYco,2282
|
|
326
|
+
xinference/thirdparty/matcha/utils/generate_data_statistics.py,sha256=EX0qYTuZH2py6V9Zt5-oInuzEWmIeP5PQ3ATpJ6b7TU,3307
|
|
327
|
+
xinference/thirdparty/matcha/utils/get_durations_from_trained_model.py,sha256=1dIDpP-oC3f0SxjOCahNs1FMieLkNwFg3SJbWv-jBx8,6473
|
|
328
|
+
xinference/thirdparty/matcha/utils/instantiators.py,sha256=QxqOnRVabCSeurpPODXqh3JSZ-E7m8jKSsxy1WvTX-I,1828
|
|
329
|
+
xinference/thirdparty/matcha/utils/logging_utils.py,sha256=glOI_JG8_YBKHWwD5RRKKkCez3N7DJlH27Vz48yAEtU,1711
|
|
330
|
+
xinference/thirdparty/matcha/utils/model.py,sha256=UViKHaV89_IeaKJFww1xHV_RTXqv0YvfQWqwOtnzQ-I,2935
|
|
331
|
+
xinference/thirdparty/matcha/utils/pylogger.py,sha256=YbC8Ym5HZrJcDBIsQO6jSnuyY5CLZQR13E_oAS9SYZQ,720
|
|
332
|
+
xinference/thirdparty/matcha/utils/rich_utils.py,sha256=Oj5jrkz5s1b3RJL6m_8EXj85LY079FWClMIzf_Gwvcc,3279
|
|
333
|
+
xinference/thirdparty/matcha/utils/utils.py,sha256=5TN-PISzsjI_CgnRX3PSPBVsFhRL8GHZyZdwm89O4TQ,8455
|
|
334
|
+
xinference/thirdparty/matcha/utils/monotonic_align/__init__.py,sha256=_s_INV7vL_N9mhYtZADAk11CsSGP8kykn0fEyyM73ts,646
|
|
335
|
+
xinference/thirdparty/matcha/utils/monotonic_align/core.pyx,sha256=t2jJamslaDGkFZnWhdUQ0qs4T4gjntMOAXSPMtZaq0w,1236
|
|
336
|
+
xinference/thirdparty/matcha/utils/monotonic_align/setup.py,sha256=bf0d0cvGRaACC22qq0sqgZEBBhz4qzDlMqBxOyTKC2g,207
|
|
197
337
|
xinference/thirdparty/omnilmm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
198
338
|
xinference/thirdparty/omnilmm/chat.py,sha256=oi0I-yVkvvnW_Vqj-iQzKaPUbGJ__EBn1we9AHlaGn4,6784
|
|
199
339
|
xinference/thirdparty/omnilmm/constants.py,sha256=bq6C4oIANqwTtt5G7sjJUdRlLyTa-_urOHMJN7VBmU4,84
|
|
@@ -207,14 +347,14 @@ xinference/thirdparty/omnilmm/train/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY
|
|
|
207
347
|
xinference/thirdparty/omnilmm/train/train_utils.py,sha256=L4JtFWDKtdEcQYpGW-UV6GCswTqHkiskK3phM9J-xUM,5634
|
|
208
348
|
xinference/web/ui/package-lock.json,sha256=MDt0IM5NT4MvrBwKJxD6TlgqKHvRQB7uH2szO1CQspU,762056
|
|
209
349
|
xinference/web/ui/package.json,sha256=W0Bq0vT0HOALv-nFo34Fos3r6DKrjR7zAL5swLg5qZg,1987
|
|
210
|
-
xinference/web/ui/build/asset-manifest.json,sha256=
|
|
350
|
+
xinference/web/ui/build/asset-manifest.json,sha256=oLXWEdxH8dtoBigKuDZ49ruJlIiQb3JQl1OWAbybNuA,453
|
|
211
351
|
xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
|
|
212
|
-
xinference/web/ui/build/index.html,sha256=
|
|
352
|
+
xinference/web/ui/build/index.html,sha256=0e3pBYf2BEpdY_opFUy5H41auiqaEuuiVCkqRwyv2zg,650
|
|
213
353
|
xinference/web/ui/build/static/css/main.4bafd904.css,sha256=B1LOr0CAJXDztw7bSsJMTmEwdzqnciZOYjgeBSO25cQ,3910
|
|
214
354
|
xinference/web/ui/build/static/css/main.4bafd904.css.map,sha256=rIbo5tZ_vpOnVcUwFk29B6UpEffrfphEQ3XKUAuG49E,7794
|
|
215
|
-
xinference/web/ui/build/static/js/main.
|
|
216
|
-
xinference/web/ui/build/static/js/main.
|
|
217
|
-
xinference/web/ui/build/static/js/main.
|
|
355
|
+
xinference/web/ui/build/static/js/main.661c7b0a.js,sha256=ZEDxImgd13fLCY-qxAYlr8oNPL4ggW-5-W0s5nE7WS8,991008
|
|
356
|
+
xinference/web/ui/build/static/js/main.661c7b0a.js.LICENSE.txt,sha256=rbybPZZs56fvnjMiAklb5AB-cE9DLmWrrraygrxIG3I,2279
|
|
357
|
+
xinference/web/ui/build/static/js/main.661c7b0a.js.map,sha256=H-UjkAiyeb2jAn5mGjgGud1rmTcKC7GQKv0j2O_vv7Q,4394824
|
|
218
358
|
xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
|
|
219
359
|
xinference/web/ui/node_modules/.package-lock.json,sha256=9jU355rtDRCO-oEwZIz20ylwNPD9ZXgReo7Uu8B97Zg,760016
|
|
220
360
|
xinference/web/ui/node_modules/.cache/babel-loader/000791038e4133db461021f1018491323a006cca7a53e09c2ac35032bc36d8b6.json,sha256=bke3WZZjPsJqMKVeHZ7xOSiE8x3fy4fe9nzvylycWOE,1374
|
|
@@ -555,6 +695,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/06e467e83a2f58a5aeedce0872f73
|
|
|
555
695
|
xinference/web/ui/node_modules/.cache/babel-loader/06eabed6a8247a7e4d6d9aa3c627f5d8f9a9b06eed8ad2194a3260e134a37f86.json,sha256=PvkcfQRIjpa3f-o7rARuhbiTXzwg3hc6oC4iqpsXHp0,725
|
|
556
696
|
xinference/web/ui/node_modules/.cache/babel-loader/06f893dbada7c83fcf82fe1076a6ec550d3da9b326c62a383f29a2d888db6b3c.json,sha256=2w248sk5WCVJXbHuvA8gbcng1oY6UgllxP07wfluyDo,1803
|
|
557
697
|
xinference/web/ui/node_modules/.cache/babel-loader/06feacb80faf0c297a6167ec40f58202b4768b2f1a6e0dc3ba9c76ef54308a70.json,sha256=zyeoYuKySYrj3sDbT0aA7agp76JAdcg0UuPZXLOF6Fs,1366
|
|
698
|
+
xinference/web/ui/node_modules/.cache/babel-loader/070d8c6b3b0f3485c6d3885f0b6bbfdf9643e088a468acbd5d596f2396071c16.json,sha256=6moN2B9xnLvt1_SQhX1tBwjYgsyiO5Qapx-oVAremBA,187121
|
|
558
699
|
xinference/web/ui/node_modules/.cache/babel-loader/0714f7d7eed5c0490af5c1795b66746fc124d5a18699de3af3586e5c983fd6eb.json,sha256=BC_Mub10WX3lOzJZ8iMZftRGnz6L6e3VlPNTADQz31I,1053
|
|
559
700
|
xinference/web/ui/node_modules/.cache/babel-loader/0716a316a9ac8a4402261cfad73e47870cef0ed8e6963a44297985aed1be118a.json,sha256=R8PZV1XP5hFeZLSwrqaNlgfADR2QK9b2-ayWY2zU8Ho,1427
|
|
560
701
|
xinference/web/ui/node_modules/.cache/babel-loader/071aa41c309750db22884d0b19b59ec6ed92c07957fd4e989904a365289adde2.json,sha256=hhlAfcqHp8EBTPqeN6HcGY5ieM7dWVRLuQB4UuDjFug,1717
|
|
@@ -2462,7 +2603,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/2f3a5bea59fe969316d45d12408a0
|
|
|
2462
2603
|
xinference/web/ui/node_modules/.cache/babel-loader/2f3af892999a476f20c4ef5cad120993815ffccca6de5fd22c7d47e5ff950169.json,sha256=h0QwDDqQFEWRkuMV5o7XbX-SC7Qq-TaK6mSHWzU6adw,1325
|
|
2463
2604
|
xinference/web/ui/node_modules/.cache/babel-loader/2f3d3d288734a6e47745983f9f865df1c688b2430deb4c4c001b898134a819a0.json,sha256=dM_DSp2naYNI1GhebBe7gVGBpUNG55XFM1Y1UWVl_ZQ,1270
|
|
2464
2605
|
xinference/web/ui/node_modules/.cache/babel-loader/2f3f1ed017398baa9a659bb1d7114d278e96faa473364fd2928284563b18412d.json,sha256=yhH5QhdLKU269VXsoumGFLl3sTVLeQatePaAH1uh6b4,1868
|
|
2465
|
-
xinference/web/ui/node_modules/.cache/babel-loader/2f40209b32e7e46a2eab6b8c8a355eb42c3caa8bc3228dd929f32fd2b3940294.json,sha256=d9QXo0xNACjyHpjR7J--ZpN4s6yKDl1F94Msu6dDeZg,182891
|
|
2466
2606
|
xinference/web/ui/node_modules/.cache/babel-loader/2f43fe5334615d9a3d941e8f1f6639df1fbb5a843ebf3a603177fd3ba3fe18dd.json,sha256=VqCMJbZSamANuQeevKQ3m7FG5D2TGoZ86krqkwHHeQM,1876
|
|
2467
2607
|
xinference/web/ui/node_modules/.cache/babel-loader/2f45cf790b9bf2f826fcda3deba9e70946524b1a2b5d25507cd8dc632d1673db.json,sha256=pnnFpAyopv9mRlIY5FhZs_3Hk_E85Tq5VmLaNrs1hvU,26548
|
|
2468
2608
|
xinference/web/ui/node_modules/.cache/babel-loader/2f4888054f45db39120cffc39b262153d844febe05842dc4c73124e6f9b0f078.json,sha256=vZX-9UHCYEqHlgUikEDm-o2WsDwB5MlE-UiofNRanEk,1638
|
|
@@ -15472,9 +15612,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15472
15612
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15473
15613
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15474
15614
|
xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
|
|
15475
|
-
xinference-0.14.
|
|
15476
|
-
xinference-0.14.
|
|
15477
|
-
xinference-0.14.
|
|
15478
|
-
xinference-0.14.
|
|
15479
|
-
xinference-0.14.
|
|
15480
|
-
xinference-0.14.
|
|
15615
|
+
xinference-0.14.4.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
15616
|
+
xinference-0.14.4.dist-info/METADATA,sha256=xIi4XF0lThHekxV1K7A2HQy0_9u8IM12DSwM5hde0BY,18757
|
|
15617
|
+
xinference-0.14.4.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
15618
|
+
xinference-0.14.4.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
15619
|
+
xinference-0.14.4.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
15620
|
+
xinference-0.14.4.dist-info/RECORD,,
|