xinference 0.14.4.post1__py3-none-any.whl → 0.15.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 +51 -0
- xinference/_version.py +3 -3
- xinference/api/restful_api.py +209 -40
- xinference/client/restful/restful_client.py +7 -26
- xinference/conftest.py +1 -1
- xinference/constants.py +5 -0
- xinference/core/cache_tracker.py +1 -1
- xinference/core/chat_interface.py +8 -14
- xinference/core/event.py +1 -1
- xinference/core/image_interface.py +28 -0
- xinference/core/model.py +110 -31
- xinference/core/scheduler.py +37 -37
- xinference/core/status_guard.py +1 -1
- xinference/core/supervisor.py +17 -10
- xinference/core/utils.py +80 -22
- xinference/core/worker.py +17 -16
- xinference/deploy/cmdline.py +8 -16
- xinference/deploy/local.py +1 -1
- xinference/deploy/supervisor.py +1 -1
- xinference/deploy/utils.py +1 -1
- xinference/deploy/worker.py +1 -1
- xinference/model/audio/cosyvoice.py +86 -41
- xinference/model/audio/fish_speech.py +9 -9
- xinference/model/audio/model_spec.json +9 -9
- xinference/model/audio/whisper.py +4 -1
- xinference/model/embedding/core.py +52 -31
- xinference/model/image/core.py +2 -1
- xinference/model/image/model_spec.json +16 -4
- xinference/model/image/model_spec_modelscope.json +16 -4
- xinference/model/image/sdapi.py +136 -0
- xinference/model/image/stable_diffusion/core.py +164 -19
- xinference/model/llm/__init__.py +29 -11
- xinference/model/llm/llama_cpp/core.py +16 -33
- xinference/model/llm/llm_family.json +1011 -1296
- xinference/model/llm/llm_family.py +34 -53
- xinference/model/llm/llm_family_csghub.json +18 -35
- xinference/model/llm/llm_family_modelscope.json +981 -1122
- xinference/model/llm/lmdeploy/core.py +56 -88
- xinference/model/llm/mlx/core.py +46 -69
- xinference/model/llm/sglang/core.py +36 -18
- xinference/model/llm/transformers/chatglm.py +168 -306
- xinference/model/llm/transformers/cogvlm2.py +36 -63
- xinference/model/llm/transformers/cogvlm2_video.py +33 -223
- xinference/model/llm/transformers/core.py +55 -50
- xinference/model/llm/transformers/deepseek_v2.py +340 -0
- xinference/model/llm/transformers/deepseek_vl.py +53 -96
- xinference/model/llm/transformers/glm4v.py +55 -111
- xinference/model/llm/transformers/intern_vl.py +39 -70
- xinference/model/llm/transformers/internlm2.py +32 -54
- xinference/model/llm/transformers/minicpmv25.py +22 -55
- xinference/model/llm/transformers/minicpmv26.py +158 -68
- xinference/model/llm/transformers/omnilmm.py +5 -28
- xinference/model/llm/transformers/qwen2_audio.py +168 -0
- xinference/model/llm/transformers/qwen2_vl.py +234 -0
- xinference/model/llm/transformers/qwen_vl.py +34 -86
- xinference/model/llm/transformers/utils.py +32 -38
- xinference/model/llm/transformers/yi_vl.py +32 -72
- xinference/model/llm/utils.py +280 -554
- xinference/model/llm/vllm/core.py +161 -100
- xinference/model/rerank/core.py +41 -8
- xinference/model/rerank/model_spec.json +7 -0
- xinference/model/rerank/model_spec_modelscope.json +7 -1
- xinference/model/utils.py +1 -31
- xinference/thirdparty/cosyvoice/bin/export_jit.py +64 -0
- xinference/thirdparty/cosyvoice/bin/export_trt.py +8 -0
- xinference/thirdparty/cosyvoice/bin/inference.py +5 -2
- xinference/thirdparty/cosyvoice/cli/cosyvoice.py +38 -22
- xinference/thirdparty/cosyvoice/cli/model.py +139 -26
- xinference/thirdparty/cosyvoice/flow/flow.py +15 -9
- xinference/thirdparty/cosyvoice/flow/length_regulator.py +20 -1
- xinference/thirdparty/cosyvoice/hifigan/generator.py +8 -4
- xinference/thirdparty/cosyvoice/llm/llm.py +14 -13
- xinference/thirdparty/cosyvoice/transformer/attention.py +7 -3
- xinference/thirdparty/cosyvoice/transformer/decoder.py +1 -1
- xinference/thirdparty/cosyvoice/transformer/embedding.py +4 -3
- xinference/thirdparty/cosyvoice/transformer/encoder.py +4 -2
- xinference/thirdparty/cosyvoice/utils/common.py +36 -0
- xinference/thirdparty/cosyvoice/utils/file_utils.py +16 -0
- xinference/thirdparty/deepseek_vl/serve/assets/Kelpy-Codos.js +100 -0
- xinference/thirdparty/deepseek_vl/serve/assets/avatar.png +0 -0
- xinference/thirdparty/deepseek_vl/serve/assets/custom.css +355 -0
- xinference/thirdparty/deepseek_vl/serve/assets/custom.js +22 -0
- xinference/thirdparty/deepseek_vl/serve/assets/favicon.ico +0 -0
- xinference/thirdparty/deepseek_vl/serve/examples/app.png +0 -0
- xinference/thirdparty/deepseek_vl/serve/examples/chart.png +0 -0
- xinference/thirdparty/deepseek_vl/serve/examples/mirror.png +0 -0
- xinference/thirdparty/deepseek_vl/serve/examples/pipeline.png +0 -0
- xinference/thirdparty/deepseek_vl/serve/examples/puzzle.png +0 -0
- xinference/thirdparty/deepseek_vl/serve/examples/rap.jpeg +0 -0
- xinference/thirdparty/fish_speech/fish_speech/configs/base.yaml +87 -0
- xinference/thirdparty/fish_speech/fish_speech/configs/firefly_gan_vq.yaml +33 -0
- xinference/thirdparty/fish_speech/fish_speech/configs/lora/r_8_alpha_16.yaml +4 -0
- xinference/thirdparty/fish_speech/fish_speech/configs/text2semantic_finetune.yaml +83 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text-data.proto +24 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/README.md +27 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/en_US.json +1 -1
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json +1 -1
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json +1 -1
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json +1 -1
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json +1 -1
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py +2 -2
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py +0 -3
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py +169 -198
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py +4 -27
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/.gitignore +114 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/README.md +36 -0
- xinference/thirdparty/fish_speech/fish_speech/text/clean.py +9 -47
- xinference/thirdparty/fish_speech/fish_speech/text/spliter.py +2 -2
- xinference/thirdparty/fish_speech/fish_speech/train.py +2 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/css/style.css +161 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/html/footer.html +11 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/js/animate.js +69 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/manage.py +12 -10
- xinference/thirdparty/fish_speech/tools/api.py +79 -134
- xinference/thirdparty/fish_speech/tools/commons.py +35 -0
- xinference/thirdparty/fish_speech/tools/download_models.py +3 -3
- xinference/thirdparty/fish_speech/tools/file.py +17 -0
- xinference/thirdparty/fish_speech/tools/llama/build_dataset.py +1 -1
- xinference/thirdparty/fish_speech/tools/llama/generate.py +29 -24
- xinference/thirdparty/fish_speech/tools/llama/merge_lora.py +1 -1
- xinference/thirdparty/fish_speech/tools/llama/quantize.py +2 -2
- xinference/thirdparty/fish_speech/tools/msgpack_api.py +34 -0
- xinference/thirdparty/fish_speech/tools/post_api.py +85 -44
- xinference/thirdparty/fish_speech/tools/sensevoice/README.md +59 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py +1 -1
- xinference/thirdparty/fish_speech/tools/smart_pad.py +16 -3
- xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py +2 -2
- xinference/thirdparty/fish_speech/tools/vqgan/inference.py +4 -2
- xinference/thirdparty/fish_speech/tools/webui.py +12 -146
- xinference/thirdparty/matcha/VERSION +1 -0
- xinference/thirdparty/matcha/hifigan/LICENSE +21 -0
- xinference/thirdparty/matcha/hifigan/README.md +101 -0
- xinference/thirdparty/omnilmm/LICENSE +201 -0
- xinference/thirdparty/whisper/__init__.py +156 -0
- xinference/thirdparty/whisper/__main__.py +3 -0
- xinference/thirdparty/whisper/assets/gpt2.tiktoken +50256 -0
- xinference/thirdparty/whisper/assets/mel_filters.npz +0 -0
- xinference/thirdparty/whisper/assets/multilingual.tiktoken +50257 -0
- xinference/thirdparty/whisper/audio.py +157 -0
- xinference/thirdparty/whisper/decoding.py +826 -0
- xinference/thirdparty/whisper/model.py +314 -0
- xinference/thirdparty/whisper/normalizers/__init__.py +2 -0
- xinference/thirdparty/whisper/normalizers/basic.py +76 -0
- xinference/thirdparty/whisper/normalizers/english.json +1741 -0
- xinference/thirdparty/whisper/normalizers/english.py +550 -0
- xinference/thirdparty/whisper/timing.py +386 -0
- xinference/thirdparty/whisper/tokenizer.py +395 -0
- xinference/thirdparty/whisper/transcribe.py +605 -0
- xinference/thirdparty/whisper/triton_ops.py +109 -0
- xinference/thirdparty/whisper/utils.py +316 -0
- xinference/thirdparty/whisper/version.py +1 -0
- xinference/types.py +14 -53
- xinference/web/ui/build/asset-manifest.json +6 -6
- xinference/web/ui/build/index.html +1 -1
- xinference/web/ui/build/static/css/{main.4bafd904.css → main.5061c4c3.css} +2 -2
- xinference/web/ui/build/static/css/main.5061c4c3.css.map +1 -0
- xinference/web/ui/build/static/js/main.754740c0.js +3 -0
- xinference/web/ui/build/static/js/{main.eb13fe95.js.LICENSE.txt → main.754740c0.js.LICENSE.txt} +2 -0
- xinference/web/ui/build/static/js/main.754740c0.js.map +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/10c69dc7a296779fcffedeff9393d832dfcb0013c36824adf623d3c518b801ff.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/68bede6d95bb5ef0b35bbb3ec5b8c937eaf6862c6cdbddb5ef222a7776aaf336.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/77d50223f3e734d4485cca538cb098a8c3a7a0a1a9f01f58cdda3af42fe1adf5.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/a56d5a642409a84988891089c98ca28ad0546432dfbae8aaa51bc5a280e1cdd2.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/cd90b08d177025dfe84209596fc51878f8a86bcaa6a240848a3d2e5fd4c7ff24.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/d9ff696a3e3471f01b46c63d18af32e491eb5dc0e43cb30202c96871466df57f.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/e42b72d4cc1ea412ebecbb8d040dc6c6bfee462c33903c2f1f3facb602ad742e.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/f5039ddbeb815c51491a1989532006b96fc3ae49c6c60e3c097f875b4ae915ae.json +1 -0
- xinference/web/ui/node_modules/.package-lock.json +37 -0
- xinference/web/ui/node_modules/a-sync-waterfall/package.json +21 -0
- xinference/web/ui/node_modules/nunjucks/node_modules/commander/package.json +48 -0
- xinference/web/ui/node_modules/nunjucks/package.json +112 -0
- xinference/web/ui/package-lock.json +38 -0
- xinference/web/ui/package.json +1 -0
- {xinference-0.14.4.post1.dist-info → xinference-0.15.1.dist-info}/METADATA +16 -10
- {xinference-0.14.4.post1.dist-info → xinference-0.15.1.dist-info}/RECORD +179 -127
- xinference/model/llm/transformers/llama_2.py +0 -108
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/lit_module.py +0 -442
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/discriminator.py +0 -44
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/reference.py +0 -115
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/wavenet.py +0 -225
- xinference/thirdparty/fish_speech/tools/auto_rerank.py +0 -159
- xinference/thirdparty/fish_speech/tools/gen_ref.py +0 -36
- xinference/thirdparty/fish_speech/tools/merge_asr_files.py +0 -55
- xinference/web/ui/build/static/css/main.4bafd904.css.map +0 -1
- xinference/web/ui/build/static/js/main.eb13fe95.js +0 -3
- xinference/web/ui/build/static/js/main.eb13fe95.js.map +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/0b11a5339468c13b2d31ac085e7effe4303259b2071abd46a0a8eb8529233a5e.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/213b5913e164773c2b0567455377765715f5f07225fbac77ad8e1e9dc9648a47.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/5c26a23b5eacf5b752a08531577ae3840bb247745ef9a39583dc2d05ba93a82a.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/978b57d1a04a701bc3fcfebc511f5f274eed6ed7eade67f6fb76c27d5fd9ecc8.json +0 -1
- {xinference-0.14.4.post1.dist-info → xinference-0.15.1.dist-info}/LICENSE +0 -0
- {xinference-0.14.4.post1.dist-info → xinference-0.15.1.dist-info}/WHEEL +0 -0
- {xinference-0.14.4.post1.dist-info → xinference-0.15.1.dist-info}/entry_points.txt +0 -0
- {xinference-0.14.4.post1.dist-info → xinference-0.15.1.dist-info}/top_level.txt +0 -0
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
xinference/__init__.py,sha256=muQ9V9y11BcIqlZhhc06oDf193H7bwDIa8e_wSoDKI8,986
|
|
2
|
-
xinference/_compat.py,sha256=
|
|
3
|
-
xinference/_version.py,sha256=
|
|
4
|
-
xinference/conftest.py,sha256=
|
|
5
|
-
xinference/constants.py,sha256=
|
|
2
|
+
xinference/_compat.py,sha256=xFztCfyrq3O_4bssL_ygghYkfxicv_ZhiX2YDDWHf-k,3571
|
|
3
|
+
xinference/_version.py,sha256=wbdwr3kzesiwMZeRbtAdBTt5CkCnSrLiBm1cVWh10zY,498
|
|
4
|
+
xinference/conftest.py,sha256=56HYQjsAJcQrpZSmskniPqH9dLoW-i3Oud6NVTtc4io,9752
|
|
5
|
+
xinference/constants.py,sha256=f8RxXrnnhoEYSwhiDSp8nKeUMF-KE4GyerMg-pa3Vv4,3582
|
|
6
6
|
xinference/device_utils.py,sha256=zswJiws3VyTIaNO8z-MOcsJH_UiPoePPiKK5zoNrjTA,3285
|
|
7
7
|
xinference/fields.py,sha256=0UtBFaDNzn1n9MRjyTkNrolsIML-TpZfudWOejqjni8,5245
|
|
8
8
|
xinference/isolation.py,sha256=uhkzVyL3fSYZSuFexkG6Jm-tRTC5I607uNg000BXAnE,1949
|
|
9
|
-
xinference/types.py,sha256=
|
|
9
|
+
xinference/types.py,sha256=LHTbNLf0zI-FLruxRuBt2KMpk2P4eKpYdFvh2qzNTGI,12458
|
|
10
10
|
xinference/utils.py,sha256=VSOJMFd9H7kce98OtJZbcDjjpfzRpHAFs8WU0xXPBM8,717
|
|
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=5UR9RVbrxOJmBwwepxOrRmH49JGVzkp6Tku1os-zzLU,83540
|
|
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
|
|
@@ -18,44 +18,44 @@ xinference/client/__init__.py,sha256=Gc4HOzAy_1cic5kXlso7hahYgw89CKvZSJDicEU461k
|
|
|
18
18
|
xinference/client/common.py,sha256=iciZRs5YjM2gYsXnwACPMaiBZp4_XpawWwfym0Iyu40,1617
|
|
19
19
|
xinference/client/handlers.py,sha256=OKl_i5FA341wsQf_0onSOPbbW6V861WJrSP7ghtDc8c,527
|
|
20
20
|
xinference/client/restful/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
21
|
-
xinference/client/restful/restful_client.py,sha256=
|
|
21
|
+
xinference/client/restful/restful_client.py,sha256=rz3d5n1sTluZG6zj0B8jsM40LLNtUAlmPzDdBDrDvFY,50780
|
|
22
22
|
xinference/core/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
23
|
-
xinference/core/cache_tracker.py,sha256=
|
|
24
|
-
xinference/core/chat_interface.py,sha256=
|
|
25
|
-
xinference/core/event.py,sha256=
|
|
26
|
-
xinference/core/image_interface.py,sha256
|
|
23
|
+
xinference/core/cache_tracker.py,sha256=3ubjYCU5aZToSp2GEuzedECVrg-PR4kThTefrFUkb9g,6971
|
|
24
|
+
xinference/core/chat_interface.py,sha256=tM4hQPZ0UVcmE4_-auXWkq2z0rWmZBwwXNwbbl5zvGQ,20666
|
|
25
|
+
xinference/core/event.py,sha256=42F38H2WOl6aPxp2oxX6WNxHRRxbnvYRmbt4Ar7NP4U,1640
|
|
26
|
+
xinference/core/image_interface.py,sha256=-elEvAYVga8KXbl9uc1A8oV0YWK0QbKDu5RPofkxxXs,11837
|
|
27
27
|
xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
|
|
28
|
-
xinference/core/model.py,sha256=
|
|
28
|
+
xinference/core/model.py,sha256=LWdSidkibzbamyCeczAp526wZhd2QKWBdh7I3HYnkJo,30318
|
|
29
29
|
xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
|
|
30
|
-
xinference/core/scheduler.py,sha256=
|
|
31
|
-
xinference/core/status_guard.py,sha256=
|
|
32
|
-
xinference/core/supervisor.py,sha256=
|
|
33
|
-
xinference/core/utils.py,sha256=
|
|
34
|
-
xinference/core/worker.py,sha256=
|
|
30
|
+
xinference/core/scheduler.py,sha256=qONNFqAlnYDcmmzPO5jfU-r0aZ1Lhhpn1oSaA5CAGTE,15485
|
|
31
|
+
xinference/core/status_guard.py,sha256=4an1KjUOhCStgRQUw1VSzXcycXUtvhxwiMREKKcl1UI,2828
|
|
32
|
+
xinference/core/supervisor.py,sha256=bNMyGM-cqHwSqhYxHlR6oePEKqt9D4tcrBFMAb6-oV0,52510
|
|
33
|
+
xinference/core/utils.py,sha256=p3ptQMdzKu9WxdUJ2EdDTXvPDl53BGwiNuVWuhaE4EU,8536
|
|
34
|
+
xinference/core/worker.py,sha256=IvcagHkXpMKjTvZl9svXko5hRuKN3czhbi5phGv-6No,46264
|
|
35
35
|
xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
36
|
-
xinference/deploy/cmdline.py,sha256=
|
|
37
|
-
xinference/deploy/local.py,sha256=
|
|
38
|
-
xinference/deploy/supervisor.py,sha256=
|
|
39
|
-
xinference/deploy/utils.py,sha256=
|
|
40
|
-
xinference/deploy/worker.py,sha256=
|
|
36
|
+
xinference/deploy/cmdline.py,sha256=YNXbPIT9zJIp5EQzl_rH5KwDDYqBd2CbaOVF8hA0lws,48120
|
|
37
|
+
xinference/deploy/local.py,sha256=gcH6WfTxfhjvNkxxKZH3tcGtXV48BEPoaLWYztZHaeo,3954
|
|
38
|
+
xinference/deploy/supervisor.py,sha256=68rB2Ey5KFeF6zto9YGbw3P8QLZmF_KSh1NwH_pNP4w,2986
|
|
39
|
+
xinference/deploy/utils.py,sha256=71xnPSjjF3XDZIYmlJ59Fbr7mswWERtNdjfdYGwyT_I,6703
|
|
40
|
+
xinference/deploy/worker.py,sha256=VQ71ClWpeGsyFgDmcOes2ub1cil10cBjhFLHYeuVwC4,2974
|
|
41
41
|
xinference/deploy/test/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
42
42
|
xinference/deploy/test/test_cmdline.py,sha256=m8xDzjtDuAJy0QkvYVJIZDuTB29cmYBV0d231JyRCPU,7714
|
|
43
43
|
xinference/model/__init__.py,sha256=J7cdxnDxbr-4c8JREXWEIZ8MkB_VokXVaEOsI7ycjho,1101
|
|
44
44
|
xinference/model/core.py,sha256=WQakLJgxrJMbTGn9AVaw-Tas7QL5M8cJsuYpGgH-io8,4706
|
|
45
|
-
xinference/model/utils.py,sha256
|
|
45
|
+
xinference/model/utils.py,sha256=-eGdgTgCJYowL9VpJaXb6T8RVKOUpfzwyQHOJ0qaeM8,11958
|
|
46
46
|
xinference/model/audio/__init__.py,sha256=G4n-MyzdarFVOndPRkEyZZrCwqFIG8yIsky6_5dife0,3433
|
|
47
47
|
xinference/model/audio/chattts.py,sha256=rMH6-9M8boZdpUSgxaAge-LraE79nRs6mVc0nPLHd5A,4585
|
|
48
48
|
xinference/model/audio/core.py,sha256=2QexrIh3hDoaNeWh5rOMas9q4zDCZTaazsLRdQ7D5Zw,6512
|
|
49
|
-
xinference/model/audio/cosyvoice.py,sha256=
|
|
49
|
+
xinference/model/audio/cosyvoice.py,sha256=QhECyo5UuPOEv6F08tT9ToLsEL7v0cCtNPKNP1lkT-4,6460
|
|
50
50
|
xinference/model/audio/custom.py,sha256=8GXBRmTtR-GY03-E91nlRGTIuabCRzlt20ecU6Un6Y8,4985
|
|
51
|
-
xinference/model/audio/fish_speech.py,sha256=
|
|
51
|
+
xinference/model/audio/fish_speech.py,sha256=v2WVEV-BLWnbiDvqrx8WTGE_YNKmd9QoAF1LZBXWxn0,7310
|
|
52
52
|
xinference/model/audio/funasr.py,sha256=65z7U7_F14CCP-jg6BpeY3_49FK7Y5OCRSzrhhsklCg,4075
|
|
53
|
-
xinference/model/audio/model_spec.json,sha256=
|
|
53
|
+
xinference/model/audio/model_spec.json,sha256=Ixo-15HVY2vu3_J5lElLL6texoJ41YwH-TBDB139NP8,4858
|
|
54
54
|
xinference/model/audio/model_spec_modelscope.json,sha256=club_Pb1BdFPu5EOR5oVktsi2SiSrKYc7lHKsERjpds,1765
|
|
55
55
|
xinference/model/audio/utils.py,sha256=pwo5cHh8nvhyBa9f-17QaVpXMSjmbpGbPYKwBBtEhGM,717
|
|
56
|
-
xinference/model/audio/whisper.py,sha256
|
|
56
|
+
xinference/model/audio/whisper.py,sha256=PQL7rebGC7WlIOItuDtjdEtSJtlhxFkolot-Fj-8uDU,7982
|
|
57
57
|
xinference/model/embedding/__init__.py,sha256=1GmvQsbeeVUT-VRaRGetf8UT4RQgLWIzfp5kfX5jw-k,3567
|
|
58
|
-
xinference/model/embedding/core.py,sha256=
|
|
58
|
+
xinference/model/embedding/core.py,sha256=5LvIJMDJYguhXa_U0n1yx_B88QmHU_34bFqYgHximRk,18269
|
|
59
59
|
xinference/model/embedding/custom.py,sha256=757KncqhsOWVypHZFtuhBP_xy-UTNaFdy0BuZRfuIV8,3848
|
|
60
60
|
xinference/model/embedding/model_spec.json,sha256=jhM2MVaxhihFvShVs18xx0vuneBfAVDUCFyaJ9IgIh8,6889
|
|
61
61
|
xinference/model/embedding/model_spec_modelscope.json,sha256=FYMBk4zE__lvjU0tiT5aNW1QYd1cr2Gj39BShG2h2PU,6010
|
|
@@ -67,54 +67,57 @@ xinference/model/flexible/launchers/__init__.py,sha256=X8w_2hKuQ9H3f90XYK7H_AQU4
|
|
|
67
67
|
xinference/model/flexible/launchers/image_process_launcher.py,sha256=APbbHls0N9DpLFL6_qTexuc5o6bQAvdgJEAZWU4clyw,2510
|
|
68
68
|
xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRUGhulP4PRJ4fZEJ2D9cfv7lcC2qJBoDE,2012
|
|
69
69
|
xinference/model/image/__init__.py,sha256=80HBIbKh6lh-BgNaTo6k0TxxKjdG30bwHAdCiwVk6wk,3198
|
|
70
|
-
xinference/model/image/core.py,sha256=
|
|
70
|
+
xinference/model/image/core.py,sha256=ir1ns0qlUIlKnd0JS2cAJUppeEeczWYOnf6ecUCaLhM,8907
|
|
71
71
|
xinference/model/image/custom.py,sha256=5gjujQpJVTJ-pVB5LzBo4-bWKKOHzFlRaoRKJ_CuIUg,3769
|
|
72
|
-
xinference/model/image/model_spec.json,sha256=
|
|
73
|
-
xinference/model/image/model_spec_modelscope.json,sha256=
|
|
72
|
+
xinference/model/image/model_spec.json,sha256=JyXU-v4ysRT4yqwkmXgISY3uVWjeSiBLyH8fS7XO1_g,5368
|
|
73
|
+
xinference/model/image/model_spec_modelscope.json,sha256=r3_m9XZo1QZgmASg5navOPs0ivlft5wVPF1SpbAVNBg,4266
|
|
74
|
+
xinference/model/image/sdapi.py,sha256=XhSIfEQY8giC0KC04CoMBJea9dZSFO4Ci8fQlAlxk54,4685
|
|
74
75
|
xinference/model/image/utils.py,sha256=gxg8jJ2nYaDknzCcSC53WCy1slbB5aWU14AbJbfm6Z4,906
|
|
75
76
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
76
|
-
xinference/model/image/stable_diffusion/core.py,sha256=
|
|
77
|
-
xinference/model/llm/__init__.py,sha256=
|
|
77
|
+
xinference/model/image/stable_diffusion/core.py,sha256=nlEcmRPitKaQ3lHOOruFqM00oIxod4IljdP-P6rjGw4,18501
|
|
78
|
+
xinference/model/llm/__init__.py,sha256=5DDyvQuglJtIP6DCdvBZtEiN5qv7Rnp-ZNjObaCRDMQ,12432
|
|
78
79
|
xinference/model/llm/core.py,sha256=f4nKVPTAseivij6mbL2yXEKxrzllKm-_i2ttSqckTCg,8157
|
|
79
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
80
|
-
xinference/model/llm/llm_family.py,sha256=
|
|
81
|
-
xinference/model/llm/llm_family_csghub.json,sha256=
|
|
82
|
-
xinference/model/llm/llm_family_modelscope.json,sha256=
|
|
80
|
+
xinference/model/llm/llm_family.json,sha256=QgD2opPlv1uYg6_L-axjClRe07tRaaalF2qGhdJ8dbE,258448
|
|
81
|
+
xinference/model/llm/llm_family.py,sha256=eqeaHwLeS2TDB_ATf_h6YkH6OiyyF_4cSF_bOq3pTws,37432
|
|
82
|
+
xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
|
|
83
|
+
xinference/model/llm/llm_family_modelscope.json,sha256=u-5pOQayhf94MHT3duZ7PN1q-S2j7FYraOFGy_cLJBg,186741
|
|
83
84
|
xinference/model/llm/memory.py,sha256=NEIMw6wWaF9S_bnBYq-EyuDhVbUEEeceQhwE1iwsrhI,10207
|
|
84
|
-
xinference/model/llm/utils.py,sha256=
|
|
85
|
+
xinference/model/llm/utils.py,sha256=In1a9PwFF2_8suh9J4H1Yh4jyZDPbhI0MRZLIeez4dE,21401
|
|
85
86
|
xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
86
|
-
xinference/model/llm/llama_cpp/core.py,sha256=
|
|
87
|
+
xinference/model/llm/llama_cpp/core.py,sha256=vjuTapwbn-ZjUX-8WA0nFyicE4UGUSehU_csSetvcZw,10928
|
|
87
88
|
xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
|
-
xinference/model/llm/lmdeploy/core.py,sha256
|
|
89
|
+
xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc3ua8yPTI,19835
|
|
89
90
|
xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
90
|
-
xinference/model/llm/mlx/core.py,sha256=
|
|
91
|
+
xinference/model/llm/mlx/core.py,sha256=9mTUllTBQf5pnblATWNw6mKKjivQ5u8Xp5q5U4KDYEY,13661
|
|
91
92
|
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
92
|
-
xinference/model/llm/sglang/core.py,sha256=
|
|
93
|
+
xinference/model/llm/sglang/core.py,sha256=UaCdxm3VQvy3lffmXIPY1_wwMX8x0SVXQJliigydLQk,16608
|
|
93
94
|
xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
94
|
-
xinference/model/llm/transformers/chatglm.py,sha256=
|
|
95
|
-
xinference/model/llm/transformers/cogvlm2.py,sha256=
|
|
96
|
-
xinference/model/llm/transformers/cogvlm2_video.py,sha256=
|
|
95
|
+
xinference/model/llm/transformers/chatglm.py,sha256=pCJgoc0Ikny5BL85iHXl9M6zKgIzAHBsd81NAZ31yRI,17834
|
|
96
|
+
xinference/model/llm/transformers/cogvlm2.py,sha256=wqWM6AhVQssgkUOcVX2N7RU7kjnAu55r6ZlUjh9iJro,15942
|
|
97
|
+
xinference/model/llm/transformers/cogvlm2_video.py,sha256=dupPGQur8xGie5roA1ibpTIIZNoO-KMynvr7303pyl0,11809
|
|
97
98
|
xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
|
|
98
|
-
xinference/model/llm/transformers/core.py,sha256
|
|
99
|
-
xinference/model/llm/transformers/
|
|
100
|
-
xinference/model/llm/transformers/
|
|
101
|
-
xinference/model/llm/transformers/
|
|
102
|
-
xinference/model/llm/transformers/
|
|
103
|
-
xinference/model/llm/transformers/
|
|
104
|
-
xinference/model/llm/transformers/minicpmv25.py,sha256=
|
|
105
|
-
xinference/model/llm/transformers/minicpmv26.py,sha256=
|
|
106
|
-
xinference/model/llm/transformers/omnilmm.py,sha256=
|
|
107
|
-
xinference/model/llm/transformers/
|
|
99
|
+
xinference/model/llm/transformers/core.py,sha256=-YmBzM5WbK-B3YIv7rWPFewDEx5xFDWyPO8YqFr8Sv8,31012
|
|
100
|
+
xinference/model/llm/transformers/deepseek_v2.py,sha256=HSddUBm5sKpHTNtPbTao9r3Yif-_xRAJrAtfCyELnhw,12975
|
|
101
|
+
xinference/model/llm/transformers/deepseek_vl.py,sha256=eb-UH6g1Vr-jaZnGSkn_Ud4WYBzDuYR24CV_tAvo9iM,10397
|
|
102
|
+
xinference/model/llm/transformers/glm4v.py,sha256=Uz7y2A_cSDeVVfe4D31h9LGqtUJ51plckt6jmnm_z7c,13841
|
|
103
|
+
xinference/model/llm/transformers/intern_vl.py,sha256=3K0_2ng4zBgsnobzV7AfDEq7NzZu676JfNM54oE3AXQ,18222
|
|
104
|
+
xinference/model/llm/transformers/internlm2.py,sha256=nRrmbH9bJl_wLcCH4zSy0EeKeP_ht-b8bVvbG2pMgV0,7228
|
|
105
|
+
xinference/model/llm/transformers/minicpmv25.py,sha256=8fcmQo5VAst0vniV2-N6109Nq0sA56O2vWVxMvdZWxo,6766
|
|
106
|
+
xinference/model/llm/transformers/minicpmv26.py,sha256=QRO5gnxuFMiJDNZ-v3os1A_4bn4fzrDvYjAOhdPQ4Lw,13392
|
|
107
|
+
xinference/model/llm/transformers/omnilmm.py,sha256=MBsh-qaDnjtrtTRrAR7ArgHyupfpowwntuTuOj7xGkA,5124
|
|
108
|
+
xinference/model/llm/transformers/qwen2_audio.py,sha256=tkLL523jdn1rVDfHV9RfLldDIISuMiukTJYt-h-dJ4o,5987
|
|
109
|
+
xinference/model/llm/transformers/qwen2_vl.py,sha256=IMEdVJiHm3JccZg-vpSKCIElv8XtMrUPD3wT6yHel0A,8419
|
|
110
|
+
xinference/model/llm/transformers/qwen_vl.py,sha256=JfMuiEqYuRIlDv5cIiRbLCd4DJQRgwCFoxc0JTJTGgs,14028
|
|
108
111
|
xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
|
|
109
|
-
xinference/model/llm/transformers/utils.py,sha256=
|
|
110
|
-
xinference/model/llm/transformers/yi_vl.py,sha256=
|
|
112
|
+
xinference/model/llm/transformers/utils.py,sha256=qob4wDMN98LKzYdDcQe8rFVA5_mX4i5XeVgm3HSq9iI,28505
|
|
113
|
+
xinference/model/llm/transformers/yi_vl.py,sha256=w4EpUHpmT9P1u5yEv1Pm3Ico92nqZZv3fO4NEKXteK4,8913
|
|
111
114
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
112
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
115
|
+
xinference/model/llm/vllm/core.py,sha256=xZ_7a2xae1dicYo4bav7Z1KrY-bB3PMT7EonMx1YH6M,28171
|
|
113
116
|
xinference/model/rerank/__init__.py,sha256=wRpf1bOMfmAsuEKEGczMTB5fWEvuqltlJbIbRb-x8Ko,3483
|
|
114
|
-
xinference/model/rerank/core.py,sha256=
|
|
117
|
+
xinference/model/rerank/core.py,sha256=_6kqYc488sbj_yub8AkZnDi4Xcibc4Q_MunrdMkHrqo,13264
|
|
115
118
|
xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
|
|
116
|
-
xinference/model/rerank/model_spec.json,sha256=
|
|
117
|
-
xinference/model/rerank/model_spec_modelscope.json,sha256=
|
|
119
|
+
xinference/model/rerank/model_spec.json,sha256=XZNIiWj7AQsn_Ts7N-LKL4jd6BAW7EVG37Owhhwbit8,1773
|
|
120
|
+
xinference/model/rerank/model_spec_modelscope.json,sha256=BXkhPUdLOjo_ZT3o9suViT_Oh1_ev0JdLIUMG3rsoSc,1419
|
|
118
121
|
xinference/model/rerank/utils.py,sha256=MJAFL47G3r3zLVGXKoi0QLTgU3Xr4Ffv72Ipn--psew,713
|
|
119
122
|
xinference/model/video/__init__.py,sha256=mRhOhzMxzcPFdA5j4niAxH_j9dXLtT9HmchuICrdET8,2160
|
|
120
123
|
xinference/model/video/core.py,sha256=PMqyWhhBWO77VjpEvTC7EQrGmyLWxJ_-Mm1VRqb2dNY,6031
|
|
@@ -124,42 +127,44 @@ xinference/model/video/model_spec_modelscope.json,sha256=U8p6IqNLbY5Safxwpa6dCfn
|
|
|
124
127
|
xinference/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
128
|
xinference/thirdparty/cosyvoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
126
129
|
xinference/thirdparty/cosyvoice/bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
127
|
-
xinference/thirdparty/cosyvoice/bin/
|
|
130
|
+
xinference/thirdparty/cosyvoice/bin/export_jit.py,sha256=WWPad_PGBT_C0AJ4w_ki5EJxGr9gX5fmK0kUsnhgnGs,2343
|
|
131
|
+
xinference/thirdparty/cosyvoice/bin/export_trt.py,sha256=cjek1s4asmBUOMfNpi1gVMlkbn1sn2E3MXe_vDxyR-E,623
|
|
132
|
+
xinference/thirdparty/cosyvoice/bin/inference.py,sha256=nq5doMD1JCgwVgh1o35pp-8O9njOxezJvnjvWVsNMCA,5533
|
|
128
133
|
xinference/thirdparty/cosyvoice/bin/train.py,sha256=984UhhoGC5SO5fE3sL_k28Sndz9ElzUAO8FBqRYF9DM,5212
|
|
129
134
|
xinference/thirdparty/cosyvoice/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
130
|
-
xinference/thirdparty/cosyvoice/cli/cosyvoice.py,sha256=
|
|
135
|
+
xinference/thirdparty/cosyvoice/cli/cosyvoice.py,sha256=h9XEzKSqyg-5rj79D_H4hQRHNr05boGo82zjGntsr6s,5429
|
|
131
136
|
xinference/thirdparty/cosyvoice/cli/frontend.py,sha256=5ZRsZjVYSSEEC7iGQG62zFCzbhjygNPxKeR0Ougf86M,8997
|
|
132
|
-
xinference/thirdparty/cosyvoice/cli/model.py,sha256=
|
|
137
|
+
xinference/thirdparty/cosyvoice/cli/model.py,sha256=R4YAp0OIqzf9dPxZeQef4r-t7f44vKLI5Fblpcy4Dns,10178
|
|
133
138
|
xinference/thirdparty/cosyvoice/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
134
139
|
xinference/thirdparty/cosyvoice/dataset/dataset.py,sha256=o4y725HGw4wOQ6ZKMIXUiXPJJuNlVCuat5yLKrfw50A,5233
|
|
135
140
|
xinference/thirdparty/cosyvoice/dataset/processor.py,sha256=Dd0r4VxbcR2o7cgCtYVPd_VxEc1uNIxCB7euLn0FxiM,13008
|
|
136
141
|
xinference/thirdparty/cosyvoice/flow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
137
142
|
xinference/thirdparty/cosyvoice/flow/decoder.py,sha256=4RXtRZwEgTZ_21m6TcYtYzjBtOR5GyaSfZKBjVB1bhc,8878
|
|
138
|
-
xinference/thirdparty/cosyvoice/flow/flow.py,sha256=
|
|
143
|
+
xinference/thirdparty/cosyvoice/flow/flow.py,sha256=44ZtlRw4aBb8YFo2ejeOTUJ-BMyVVI2k0XFVjhtppwU,6065
|
|
139
144
|
xinference/thirdparty/cosyvoice/flow/flow_matching.py,sha256=TMhnw1sUSJeJ1zLc-PcD9GWRNTGju6lv_zY23Y95vgo,5882
|
|
140
|
-
xinference/thirdparty/cosyvoice/flow/length_regulator.py,sha256=
|
|
145
|
+
xinference/thirdparty/cosyvoice/flow/length_regulator.py,sha256=jjgY29-djOCv61-h0lth5a8mpWoL5nDo5BKgc_uU73w,2890
|
|
141
146
|
xinference/thirdparty/cosyvoice/hifigan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
142
147
|
xinference/thirdparty/cosyvoice/hifigan/f0_predictor.py,sha256=4Ter1WnuSRA7wytzQfEtu-3PuA-Qrg3ywR5Hs7fsV74,1976
|
|
143
|
-
xinference/thirdparty/cosyvoice/hifigan/generator.py,sha256=
|
|
148
|
+
xinference/thirdparty/cosyvoice/hifigan/generator.py,sha256=cEDILcx6BD7Ihpb-XG-xFGhjT43FsadBXX6JkIb6e3A,15010
|
|
144
149
|
xinference/thirdparty/cosyvoice/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
145
|
-
xinference/thirdparty/cosyvoice/llm/llm.py,sha256=
|
|
150
|
+
xinference/thirdparty/cosyvoice/llm/llm.py,sha256=PZD7gm6YTfwiHwt8h3OGiSkQ695drKfVUHciTKR4ucA,9253
|
|
146
151
|
xinference/thirdparty/cosyvoice/transformer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
147
152
|
xinference/thirdparty/cosyvoice/transformer/activation.py,sha256=pKlsrqn3sFERKG3l6nYL39-cTlNEj1NCCFfcBKUEQMI,3089
|
|
148
|
-
xinference/thirdparty/cosyvoice/transformer/attention.py,sha256=
|
|
153
|
+
xinference/thirdparty/cosyvoice/transformer/attention.py,sha256=QdJpstXjo5UsClOPRkgK_4Vwdn64joBFLzZ0Ns72KLE,14389
|
|
149
154
|
xinference/thirdparty/cosyvoice/transformer/convolution.py,sha256=619B8ySpciXHO5xDCvi7IxvXc4bvGEULsP0yn0aatOE,5230
|
|
150
|
-
xinference/thirdparty/cosyvoice/transformer/decoder.py,sha256=
|
|
155
|
+
xinference/thirdparty/cosyvoice/transformer/decoder.py,sha256=2wQscn4OZTrJJHM7H7FeaXkv_YDJ089iJIN0VV1Yocw,16580
|
|
151
156
|
xinference/thirdparty/cosyvoice/transformer/decoder_layer.py,sha256=uVZiq3LsawsPUMOhX77PFvrLeG0yO0rKHQY7nCHA1k4,4807
|
|
152
|
-
xinference/thirdparty/cosyvoice/transformer/embedding.py,sha256=
|
|
153
|
-
xinference/thirdparty/cosyvoice/transformer/encoder.py,sha256=
|
|
157
|
+
xinference/thirdparty/cosyvoice/transformer/embedding.py,sha256=LLSnAPvJBIUDeV7vRhyVBZuWXDRmJ73dlZug9aJfodw,11398
|
|
158
|
+
xinference/thirdparty/cosyvoice/transformer/encoder.py,sha256=J_nXSZcgNy--Z3TQkLif8GPH7PiPk6TXWye7GtspGKU,21434
|
|
154
159
|
xinference/thirdparty/cosyvoice/transformer/encoder_layer.py,sha256=8eMmGrfnPyXmXwrWLcxhX-mL8sj1eHaLXBhFnBkNDy8,9595
|
|
155
160
|
xinference/thirdparty/cosyvoice/transformer/label_smoothing_loss.py,sha256=24gEzxwg4a-_bDPeSDZYmxlH2IF5fQLVB8KoqNT0D90,3459
|
|
156
161
|
xinference/thirdparty/cosyvoice/transformer/positionwise_feed_forward.py,sha256=boA447zIyght3KUI-5udQL86uYvrq89clJNdAyMp0Pg,4219
|
|
157
162
|
xinference/thirdparty/cosyvoice/transformer/subsampling.py,sha256=MfwDR6hRq8EgXf1M9oCZwMQWWJw-maB7JQ6GMM7OGdA,12666
|
|
158
163
|
xinference/thirdparty/cosyvoice/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
159
164
|
xinference/thirdparty/cosyvoice/utils/class_utils.py,sha256=PnVIVrqHzyv9FA4mvpkHcvABQboGubVVELE_QVI40YA,2582
|
|
160
|
-
xinference/thirdparty/cosyvoice/utils/common.py,sha256=
|
|
165
|
+
xinference/thirdparty/cosyvoice/utils/common.py,sha256=xGxkyedwKLr08T0NXTP1PgdgKfgMfepDfHzuebJw5CM,5146
|
|
161
166
|
xinference/thirdparty/cosyvoice/utils/executor.py,sha256=3SpBSW9iJ4wSRHv-qLEd3G_tMEL01b6ZAZC48hyqeEI,5114
|
|
162
|
-
xinference/thirdparty/cosyvoice/utils/file_utils.py,sha256=
|
|
167
|
+
xinference/thirdparty/cosyvoice/utils/file_utils.py,sha256=5b-KWbUTxGD7bIguqSssTXGqHZfadnFbTaMPxCEdnxk,2021
|
|
163
168
|
xinference/thirdparty/cosyvoice/utils/frontend_utils.py,sha256=v5CBGTaebwT4e4TFf33PmwRtFx9bACylpU88ycBursU,4042
|
|
164
169
|
xinference/thirdparty/cosyvoice/utils/mask.py,sha256=kAauQRdlhQGrC0BjvYFpicLOlVKDp3V3ZCnLbbTMaHU,8351
|
|
165
170
|
xinference/thirdparty/cosyvoice/utils/scheduler.py,sha256=BYzf1Ugnbba26wnoSfv_yq9FZaAJHLTn1q6QjgvZJQY,24940
|
|
@@ -181,6 +186,17 @@ xinference/thirdparty/deepseek_vl/serve/app_modules/gradio_utils.py,sha256=qnwUB
|
|
|
181
186
|
xinference/thirdparty/deepseek_vl/serve/app_modules/overwrites.py,sha256=XWBmZ-4puSoOMFcygF91U8xRN2cV8cqbGNTSK4IXwJU,3214
|
|
182
187
|
xinference/thirdparty/deepseek_vl/serve/app_modules/presets.py,sha256=7qXSVm-UvZQYdLlfTMxVsm42LmklK7hbvNSvOLl-x-Y,3435
|
|
183
188
|
xinference/thirdparty/deepseek_vl/serve/app_modules/utils.py,sha256=OzrxNSM8oNLKYYCWAWEXpptrht0OVXoQdjSboUCjo1s,7492
|
|
189
|
+
xinference/thirdparty/deepseek_vl/serve/assets/Kelpy-Codos.js,sha256=TSVPz9Nt8UT1Ck6NeLuc6lKY_St-VIf0rg1WhOsywrY,3760
|
|
190
|
+
xinference/thirdparty/deepseek_vl/serve/assets/avatar.png,sha256=M5UhHvq3k7iaTledkL1gaw60NeJWau31S-xYXkNqjnE,62075
|
|
191
|
+
xinference/thirdparty/deepseek_vl/serve/assets/custom.css,sha256=QO8UtXA8bnyX2fyKb01oyqV98Yseyefe_dwA0lYWIlw,9195
|
|
192
|
+
xinference/thirdparty/deepseek_vl/serve/assets/custom.js,sha256=q4eMFbj5FErECrTQR5iGM-zma8ZFMNLXPAS7CLavrEE,1144
|
|
193
|
+
xinference/thirdparty/deepseek_vl/serve/assets/favicon.ico,sha256=KNq3G9QZD0HH3lEGFeka_LpSrXzmgm-_hrITIFvmK0U,15406
|
|
194
|
+
xinference/thirdparty/deepseek_vl/serve/examples/app.png,sha256=Avpx-wdhzPJoYKBHb3tm_1GEIeRiTpEyu2ZUYE64oLY,82836
|
|
195
|
+
xinference/thirdparty/deepseek_vl/serve/examples/chart.png,sha256=WBaRJTWF6di4-SXDX_KGIh1ld72FCPVKc__nqS5KZTQ,157103
|
|
196
|
+
xinference/thirdparty/deepseek_vl/serve/examples/mirror.png,sha256=aOxvSLp8qydR5XOY4Ex3c6guuiSspLOtQ-TzoCguWEY,271847
|
|
197
|
+
xinference/thirdparty/deepseek_vl/serve/examples/pipeline.png,sha256=arKg2cb0zaqyS_-ECjwJBqRV_tUcVdRy2HcfX0H2e2c,37834
|
|
198
|
+
xinference/thirdparty/deepseek_vl/serve/examples/puzzle.png,sha256=q6sgDl6qAIWRd9wR27O2VYBqZFEV3I29d_IPgAfOPpk,194014
|
|
199
|
+
xinference/thirdparty/deepseek_vl/serve/examples/rap.jpeg,sha256=AL_pk3nX1ChriPT-FokcDukkpU8RFqtC_q_vxwl4ScI,57320
|
|
184
200
|
xinference/thirdparty/deepseek_vl/utils/__init__.py,sha256=u8C--egJMT_DDm0JG3frXGSQNNv6cfIAumPhghzkxhk,1091
|
|
185
201
|
xinference/thirdparty/deepseek_vl/utils/conversation.py,sha256=7oITA8TsIuOfumVZ8hcoDpA6dm1jz7n8-VXPe_7-4YA,11702
|
|
186
202
|
xinference/thirdparty/deepseek_vl/utils/io.py,sha256=HQqLoONZF4nl1E9oMrm7_2LwU8ZSh1C9htm7vLN4YfI,2751
|
|
@@ -188,44 +204,48 @@ xinference/thirdparty/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeR
|
|
|
188
204
|
xinference/thirdparty/fish_speech/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
205
|
xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=Qh8G6Y7O1qUa2cjRdDBKDLP3ygyn1cFgdEBilkZsI7U,58
|
|
190
206
|
xinference/thirdparty/fish_speech/fish_speech/scheduler.py,sha256=xpstAfXlsdx-N_hDcJJYFKiLb_cW5mTdXACyuODrcIg,1101
|
|
191
|
-
xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=
|
|
207
|
+
xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=TQbqeYF5RPkShMNjb9dsqWTWhEyHFnfdFOR_gnbIfUo,4474
|
|
192
208
|
xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py,sha256=LYHvlvb9463UMJ3stVzBilVpLtdiLCteuzMIB5ypHS0,70
|
|
193
209
|
xinference/thirdparty/fish_speech/fish_speech/callbacks/grad_norm.py,sha256=pzuUxUnXWAa9U6XKcvQpnGoUZhMmFQKimSqYH-WajIQ,3436
|
|
194
210
|
xinference/thirdparty/fish_speech/fish_speech/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
211
|
+
xinference/thirdparty/fish_speech/fish_speech/configs/base.yaml,sha256=7_yXj9Y9SNhI7wiQeFvoLArtp9gqJCF-f43JGQ-TwCI,2544
|
|
212
|
+
xinference/thirdparty/fish_speech/fish_speech/configs/firefly_gan_vq.yaml,sha256=-SO0089ARGOAlhttQN1J0fSpoa81MABHg20sOYmAfCc,1002
|
|
213
|
+
xinference/thirdparty/fish_speech/fish_speech/configs/text2semantic_finetune.yaml,sha256=wBnbMXw9svb7VlluA0euzSPX39dbEWjnuoJ7E5hi2SQ,1987
|
|
195
214
|
xinference/thirdparty/fish_speech/fish_speech/configs/lora/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
215
|
+
xinference/thirdparty/fish_speech/fish_speech/configs/lora/r_8_alpha_16.yaml,sha256=a9QVkN2A64_0l8XUfwV1fgW5eZi9124L5pHdsN9ZgII,98
|
|
196
216
|
xinference/thirdparty/fish_speech/fish_speech/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
217
|
xinference/thirdparty/fish_speech/fish_speech/datasets/concat_repeat.py,sha256=y9pAty3Sa3gyfAERSaubmMNRdUzyAw4zzoDyXzuGGxQ,1498
|
|
198
218
|
xinference/thirdparty/fish_speech/fish_speech/datasets/semantic.py,sha256=FHpdQj3awN-21w3f96xL0Z6DvEnOpW7qES8_ZjdHBt8,16727
|
|
199
219
|
xinference/thirdparty/fish_speech/fish_speech/datasets/vqgan.py,sha256=NMOaBOYPvHuMPwyRx5ahJh0pkhPauEFVWMGFi2Vl7L8,4012
|
|
200
220
|
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
221
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text-data.proto,sha256=1ruMlbx5JfQ-_QAzzwPnBZ5zrdOPTRlEovVgpRwnn3w,392
|
|
201
222
|
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_pb2.py,sha256=GFnBeGCTFtWJTdNXQx0hzPpxagzleSyWxN3pE22-E2g,1758
|
|
202
223
|
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_stream.py,sha256=v9i3jbIC6KFTSLvSVso8-3mBDufSOwE7IAr4-5RXgQ0,781
|
|
224
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/README.md,sha256=pXQy_jPFXyTBQSni4JSFH1JtsoqOe7vOfWpRtOPGz6w,1483
|
|
203
225
|
xinference/thirdparty/fish_speech/fish_speech/i18n/__init__.py,sha256=u9r_HCtTmYcU64L62Gg9lLANvGybfb0-ETw8Ob-fnxY,43
|
|
204
226
|
xinference/thirdparty/fish_speech/fish_speech/i18n/core.py,sha256=8Ks8wGog73U-AZqlzGltfx61KALGTh7uCIXnQHDnDOw,1036
|
|
205
227
|
xinference/thirdparty/fish_speech/fish_speech/i18n/scan.py,sha256=1mdXKPeR0d3bTcFZWhX6ODWUJbbiOHO73MBDEJlTmUY,3751
|
|
206
228
|
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=
|
|
208
|
-
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json,sha256=
|
|
209
|
-
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json,sha256
|
|
210
|
-
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json,sha256=
|
|
211
|
-
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json,sha256=
|
|
229
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/en_US.json,sha256=871DQQsdVoBp08_CpvHQm4sELOdmPS8Ge0QHTk9_dIE,8041
|
|
230
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json,sha256=WDrAwpiuMnBCg1mtb3Dw_277twh3IuUG0RLQp-DSdXU,8943
|
|
231
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json,sha256=GyKcLvZ4bBuzVbQiuVfWX9soMnRDqIGmT96CEg6zmaw,9435
|
|
232
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json,sha256=mNI1TYkHwhC5ArecMTBLTW1Cf8iX0iuXoOZq8XYFqeE,9605
|
|
233
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json,sha256=sbFSUJTfthXi0-UAU0KRuVDLyo_Tuei55cBZysH0pj4,7705
|
|
212
234
|
xinference/thirdparty/fish_speech/fish_speech/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
235
|
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
214
236
|
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=
|
|
237
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=jrr76CCGHg-P-KrASW5_AAwMNuqgXDXKbnGTYFygtQc,25758
|
|
216
238
|
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=
|
|
218
|
-
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/lit_module.py,sha256=cxzIZ52_pNZE3Z_VOUiBn1MFuN9tjjl8haAN81oI25c,14238
|
|
239
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
219
240
|
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/utils.py,sha256=irmTsK36GlLccFI5CjWahKO7NG6LZQrd5FEh_7qy4Xs,2533
|
|
220
241
|
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/
|
|
222
|
-
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/
|
|
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
|
|
242
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py,sha256=XudPf4AYCcXrDl6Wcjmh_ersriPuvq1d595brtnM6qY,20038
|
|
243
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py,sha256=qOl-E-aWr9d-Nm4ikHt7EYkS-MbCNy4qyooS8VflEsY,3448
|
|
226
244
|
xinference/thirdparty/fish_speech/fish_speech/text/__init__.py,sha256=3lYfSw4Xb3Qh0p8FsjX4ToOJNsm7ZxN3XPh_xFKXoUQ,102
|
|
227
|
-
xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=
|
|
228
|
-
xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=
|
|
245
|
+
xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=KmsHnXdMZUF_3kdyZv2ymzEsOwIIszf1MeMomChlbfI,556
|
|
246
|
+
xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=wv-x9U3cEz7D4iGmzkf_x2YpkvTthuDHVfM6VQW_gQw,3827
|
|
247
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/.gitignore,sha256=04gWbPAivQzTV7w2eOgkk3xcMZLuti1pkLwy_mW7k6M,1274
|
|
248
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/README.md,sha256=9tZNujydXU0DlgpnsJTfMI880mgh41l6UvqqQQKbcPk,890
|
|
229
249
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
230
250
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_class.py,sha256=m4d9b6Mr30ChJ4NzWbWQwAG2PtnTjEAkMB5_wGtINAs,4390
|
|
231
251
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_constant.py,sha256=EBvR_-At1FbsbSmryn5ch41UND-ob3K-dLunpceM4LU,976
|
|
@@ -250,34 +270,37 @@ xinference/thirdparty/fish_speech/fish_speech/utils/spectrogram.py,sha256=R9dGOE
|
|
|
250
270
|
xinference/thirdparty/fish_speech/fish_speech/utils/utils.py,sha256=GaL7k1geF-D5temeOQI2Q8RzfC_Jc1bsQnLNvO-sV1c,3793
|
|
251
271
|
xinference/thirdparty/fish_speech/fish_speech/webui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
252
272
|
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=
|
|
273
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=nnLug37TcrIys4DMgeVRgQuvnLjB36b49aMBUt98ZKI,46885
|
|
274
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/css/style.css,sha256=CLXPzePjropDNCfg2jptIwJRMIWPuc5jfd2aLGadMD0,2617
|
|
275
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/html/footer.html,sha256=ofq4m93dF0Z_lXn2J6nLBwXwdugBOPIzjzFGBbr1C58,348
|
|
276
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/js/animate.js,sha256=AG2umxvH9ly6ZxJDxV4sfz1A9Q3_unA7LnkKv05X-i4,2690
|
|
254
277
|
xinference/thirdparty/fish_speech/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
255
|
-
xinference/thirdparty/fish_speech/tools/api.py,sha256=
|
|
256
|
-
xinference/thirdparty/fish_speech/tools/
|
|
257
|
-
xinference/thirdparty/fish_speech/tools/download_models.py,sha256=
|
|
278
|
+
xinference/thirdparty/fish_speech/tools/api.py,sha256=6fLty1CMybUgus2E8Ta1bbVe4tbqU01ydEXjo4rBHEs,12681
|
|
279
|
+
xinference/thirdparty/fish_speech/tools/commons.py,sha256=-9YuuVUfBemIuOBVvt465COuZuVqVo_Xrswwl4z2iOA,1348
|
|
280
|
+
xinference/thirdparty/fish_speech/tools/download_models.py,sha256=UOOV9SzseMUGFqOw85AeAaXg5LcW0jMvkoet1elvI44,1365
|
|
258
281
|
xinference/thirdparty/fish_speech/tools/extract_model.py,sha256=42b_U4rmqX3OUOIqWQQczsEktt79aQSOJ4E55B1bHl8,536
|
|
259
|
-
xinference/thirdparty/fish_speech/tools/file.py,sha256=
|
|
260
|
-
xinference/thirdparty/fish_speech/tools/
|
|
261
|
-
xinference/thirdparty/fish_speech/tools/
|
|
262
|
-
xinference/thirdparty/fish_speech/tools/
|
|
263
|
-
xinference/thirdparty/fish_speech/tools/
|
|
264
|
-
xinference/thirdparty/fish_speech/tools/webui.py,sha256=h32_3IidZbIFsbRlOIViMghaQ2QGzM5qkp6ugVM5-sM,18917
|
|
282
|
+
xinference/thirdparty/fish_speech/tools/file.py,sha256=ZSWIpGIOuGbQ5gWmfS9LZWLLidc9gZ9p95QzAZkJneI,3047
|
|
283
|
+
xinference/thirdparty/fish_speech/tools/msgpack_api.py,sha256=eKAfu6IKAMi35WvfrQhzpiFEKARsFpIvWUoWLa1hSk4,964
|
|
284
|
+
xinference/thirdparty/fish_speech/tools/post_api.py,sha256=PS3HB1FUm4CNQ8uxrp2q5xb0FrkkclhCutonbxQaj-s,6368
|
|
285
|
+
xinference/thirdparty/fish_speech/tools/smart_pad.py,sha256=O6fCgrSouBX6prkrj6a03DPI-5loiS_oKaidtIXxuFg,1626
|
|
286
|
+
xinference/thirdparty/fish_speech/tools/webui.py,sha256=hFtvzH487LrcWoma9MrMk1uNJAicg2-0ynYA2zyMqzw,14978
|
|
265
287
|
xinference/thirdparty/fish_speech/tools/whisper_asr.py,sha256=uG6NsSnH6oLEkCRM-Tb8o6L7OKDZ1eSVd8obEoq7jVc,4893
|
|
266
288
|
xinference/thirdparty/fish_speech/tools/llama/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
267
|
-
xinference/thirdparty/fish_speech/tools/llama/build_dataset.py,sha256=
|
|
289
|
+
xinference/thirdparty/fish_speech/tools/llama/build_dataset.py,sha256=rOVoiXPpKqwT2C2cDhTgw8TMNH5Tq0QzejPd4Y387zY,4898
|
|
268
290
|
xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py,sha256=vF2OVE4kj5qVaBBHGR1eTqcmLWvUeoO4OMj9eUkTXvw,4623
|
|
269
|
-
xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=
|
|
270
|
-
xinference/thirdparty/fish_speech/tools/llama/merge_lora.py,sha256=
|
|
271
|
-
xinference/thirdparty/fish_speech/tools/llama/quantize.py,sha256=
|
|
291
|
+
xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=kUTJpn3K0LgatspiCjOfx2t8pjp3sNM6FbsLugVGxHM,21766
|
|
292
|
+
xinference/thirdparty/fish_speech/tools/llama/merge_lora.py,sha256=VS-ZYzar8-MKj4PCzEoRjIin7GISVk6accZJXvrZHWQ,3273
|
|
293
|
+
xinference/thirdparty/fish_speech/tools/llama/quantize.py,sha256=meAgs8IXCDjUz6R8ihvFMLNqo7MDJnSDi0sE-DAUJA0,16602
|
|
272
294
|
xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py,sha256=MuFdqOsU2QHq8cSz7pa4PAsjZyrJrghCZQR2SrpplTQ,2025
|
|
295
|
+
xinference/thirdparty/fish_speech/tools/sensevoice/README.md,sha256=KD334P_t33hZcbxKFIOpQIrcuBMahpc1prBMht_s1Nw,2457
|
|
273
296
|
xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
297
|
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=
|
|
298
|
+
xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py,sha256=4Tau7ImBXLF-Atgnzb_-volKCb5nas56iBnLVlucL9k,10182
|
|
276
299
|
xinference/thirdparty/fish_speech/tools/sensevoice/vad_utils.py,sha256=QZhdJN6PiJUWui_8fdt_-BA32OKVfvjqV8roavLna20,2214
|
|
277
300
|
xinference/thirdparty/fish_speech/tools/vqgan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
278
301
|
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=
|
|
280
|
-
xinference/thirdparty/fish_speech/tools/vqgan/inference.py,sha256=
|
|
302
|
+
xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py,sha256=Y3SW4bNPQFDa4TOpL_bliTt4e_4N3G39lWLDIK78I7U,6762
|
|
303
|
+
xinference/thirdparty/fish_speech/tools/vqgan/inference.py,sha256=wdXfDFtAaxv0_ggZqqJo0-8qMU_KrDTDmEKMwe0aaLs,3790
|
|
281
304
|
xinference/thirdparty/internvl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
282
305
|
xinference/thirdparty/internvl/conversation.py,sha256=2wLSnfxyLItQaLd-N5xoybBPKyZadXkVntPuMV5iyGo,15040
|
|
283
306
|
xinference/thirdparty/llava/__init__.py,sha256=UlCNtyBVX645CB6S6LfyYkTfQVO18_a8e9SmR7cHExA,41
|
|
@@ -292,6 +315,7 @@ xinference/thirdparty/llava/model/clip_encoder/builder.py,sha256=D1d2_hW2V1kT4jn
|
|
|
292
315
|
xinference/thirdparty/llava/model/clip_encoder/clip_encoder.py,sha256=ieNXVeV1UFIxbcMufZewxofnSSP9t5dBhMFLfMJcFN4,2789
|
|
293
316
|
xinference/thirdparty/llava/model/multimodal_projector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
294
317
|
xinference/thirdparty/llava/model/multimodal_projector/builder.py,sha256=URP051uhGLWqC6ERsqjn2MiQDNYzOoQ6EJEcB-Z0RzM,1933
|
|
318
|
+
xinference/thirdparty/matcha/VERSION,sha256=f7mwzXAlOzRR8MEjLrm-_Gb1spjefQ7GevSwcvXLJTg,8
|
|
295
319
|
xinference/thirdparty/matcha/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
296
320
|
xinference/thirdparty/matcha/app.py,sha256=bBOG1VM5L8X64aF8rH4iddu45dje9lmkyr5ubAq_4-4,13992
|
|
297
321
|
xinference/thirdparty/matcha/cli.py,sha256=QfYJNwcmItevYGsbQAQc4zQSNsiRPwNu1rqyS9xH66U,15592
|
|
@@ -299,6 +323,8 @@ xinference/thirdparty/matcha/train.py,sha256=eKFZFkaSvmdfMNhOAcvp63kp-Wvj_9IE47m
|
|
|
299
323
|
xinference/thirdparty/matcha/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
300
324
|
xinference/thirdparty/matcha/data/text_mel_datamodule.py,sha256=aC9ULlp2re5fKBh6wTXMth7KFp3-ki3vOI9EwKfynhA,9206
|
|
301
325
|
xinference/thirdparty/matcha/data/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
326
|
+
xinference/thirdparty/matcha/hifigan/LICENSE,sha256=O9q6VLyqH7GrTBZ_mo5Fb4j5bGcYuAJpJek4Sx8u5tU,1068
|
|
327
|
+
xinference/thirdparty/matcha/hifigan/README.md,sha256=zTwOh2M5Rkayb6_Fjto--1yK8SEUSqHhflrAMl4ODYY,5570
|
|
302
328
|
xinference/thirdparty/matcha/hifigan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
303
329
|
xinference/thirdparty/matcha/hifigan/config.py,sha256=cxS_YTK_UoO2uma_Ue8QRFtNA6ldSEt1EL36u2-NgCc,779
|
|
304
330
|
xinference/thirdparty/matcha/hifigan/denoiser.py,sha256=Q2juI2a3QTqce6fuvqWQnShoV671kVW2JsQyoqwwvLI,2644
|
|
@@ -334,6 +360,7 @@ xinference/thirdparty/matcha/utils/utils.py,sha256=5TN-PISzsjI_CgnRX3PSPBVsFhRL8
|
|
|
334
360
|
xinference/thirdparty/matcha/utils/monotonic_align/__init__.py,sha256=_s_INV7vL_N9mhYtZADAk11CsSGP8kykn0fEyyM73ts,646
|
|
335
361
|
xinference/thirdparty/matcha/utils/monotonic_align/core.pyx,sha256=t2jJamslaDGkFZnWhdUQ0qs4T4gjntMOAXSPMtZaq0w,1236
|
|
336
362
|
xinference/thirdparty/matcha/utils/monotonic_align/setup.py,sha256=bf0d0cvGRaACC22qq0sqgZEBBhz4qzDlMqBxOyTKC2g,207
|
|
363
|
+
xinference/thirdparty/omnilmm/LICENSE,sha256=WYLj56GZNvkMgbPWkCNpWlTFbbaeXKVEvUTrzw82stk,11337
|
|
337
364
|
xinference/thirdparty/omnilmm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
338
365
|
xinference/thirdparty/omnilmm/chat.py,sha256=oi0I-yVkvvnW_Vqj-iQzKaPUbGJ__EBn1we9AHlaGn4,6784
|
|
339
366
|
xinference/thirdparty/omnilmm/constants.py,sha256=bq6C4oIANqwTtt5G7sjJUdRlLyTa-_urOHMJN7VBmU4,84
|
|
@@ -345,18 +372,36 @@ xinference/thirdparty/omnilmm/model/resampler.py,sha256=a4zxggEqFDU-T-vE-6iUZ3Pr
|
|
|
345
372
|
xinference/thirdparty/omnilmm/model/utils.py,sha256=u2ulK2vb-FgAoAPBPWEO8fb_owles1Uuh57LMrX2D-I,16467
|
|
346
373
|
xinference/thirdparty/omnilmm/train/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
347
374
|
xinference/thirdparty/omnilmm/train/train_utils.py,sha256=L4JtFWDKtdEcQYpGW-UV6GCswTqHkiskK3phM9J-xUM,5634
|
|
348
|
-
xinference/
|
|
349
|
-
xinference/
|
|
350
|
-
xinference/
|
|
375
|
+
xinference/thirdparty/whisper/__init__.py,sha256=NZaWcMHAfd_FFUed1OavzCHHIsKACyM1XsVR9Ngwgco,6901
|
|
376
|
+
xinference/thirdparty/whisper/__main__.py,sha256=xRnVhsOmtjn2TlnS1v1rWRpn7Nc5-XJ0kpEfxM5NVFo,35
|
|
377
|
+
xinference/thirdparty/whisper/audio.py,sha256=2TslvajXAWMHZPNI0wI9H2209OpeFwjVVu0rEdKwHfI,4932
|
|
378
|
+
xinference/thirdparty/whisper/decoding.py,sha256=lAhP7cWvdMq_jhiDqFVScABXCB8A6maa1JQ17LKQOds,32155
|
|
379
|
+
xinference/thirdparty/whisper/model.py,sha256=F__Sp7jNzihoVQu0FE65enypO7tWQIGSohiSuvxkSAo,10847
|
|
380
|
+
xinference/thirdparty/whisper/timing.py,sha256=yvIb5X42w0xLyHcATsxCLAMXMiJ0-_2Xs8xJlmy-u7I,12638
|
|
381
|
+
xinference/thirdparty/whisper/tokenizer.py,sha256=O0jjYafpW07ANWym1yu6Y1d4qhAmkVMTbue8NMrjC4U,12338
|
|
382
|
+
xinference/thirdparty/whisper/transcribe.py,sha256=DNamWcWAnOQbIbgpemGw4XVZHwikS6Es9JfRt12QyQ4,29302
|
|
383
|
+
xinference/thirdparty/whisper/triton_ops.py,sha256=FkyDF7qsWkFWFSBuSJ4SvHvetsQ7pPyhuyDGJvjNyVc,3474
|
|
384
|
+
xinference/thirdparty/whisper/utils.py,sha256=M2Bs2c_iEuqSstPnQweG-Wc7uvbdvVCxnY1ohC0Yyx4,11449
|
|
385
|
+
xinference/thirdparty/whisper/version.py,sha256=GQqOw79NGH9DxhOv1_eFdAo-iUle8T-0tqXnqoiX-nQ,25
|
|
386
|
+
xinference/thirdparty/whisper/assets/gpt2.tiktoken,sha256=MGzSfwPBpxTspxCOA9ZrfcBCq-jCWLRMGZp-2YON2TA,835554
|
|
387
|
+
xinference/thirdparty/whisper/assets/mel_filters.npz,sha256=dFCucHI6XvnTQePO5ijHywF382zkLES37SvzMl8PbUw,4271
|
|
388
|
+
xinference/thirdparty/whisper/assets/multilingual.tiktoken,sha256=s0s2DbtJPngeR5eUWG1mFwBnDWVWQAHyMCSXHR8voSY,816730
|
|
389
|
+
xinference/thirdparty/whisper/normalizers/__init__.py,sha256=8Y_Nzkyu5_LoDkwBqwRX06CAqHKilIlULG0jxLC7pXI,130
|
|
390
|
+
xinference/thirdparty/whisper/normalizers/basic.py,sha256=rVZ7Og4dA8zAw1_HRv1oMMNSkP5O12dOthzhV7o9OA0,1936
|
|
391
|
+
xinference/thirdparty/whisper/normalizers/english.json,sha256=Zgf5SL6YJNLhsvoiI82UwGxFr6TgXqDj1eHyvf_eJGU,56128
|
|
392
|
+
xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc3yhvWzWuMhQzRnp2dM6IQdA,20868
|
|
393
|
+
xinference/web/ui/package-lock.json,sha256=r6y_nAa8SfAETbx3ysAKcRf2SznsSAxpLwtArCJbCCI,760153
|
|
394
|
+
xinference/web/ui/package.json,sha256=fkEgsboguEVK9yuRrJjN7Alhyo38qV1Ih83qQFVr6SQ,2023
|
|
395
|
+
xinference/web/ui/build/asset-manifest.json,sha256=g4v2_BEgxseyKfzOc3HnIiYTFIpUMjdAFNVzSprteXY,453
|
|
351
396
|
xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
|
|
352
|
-
xinference/web/ui/build/index.html,sha256=
|
|
353
|
-
xinference/web/ui/build/static/css/main.
|
|
354
|
-
xinference/web/ui/build/static/css/main.
|
|
355
|
-
xinference/web/ui/build/static/js/main.
|
|
356
|
-
xinference/web/ui/build/static/js/main.
|
|
357
|
-
xinference/web/ui/build/static/js/main.
|
|
397
|
+
xinference/web/ui/build/index.html,sha256=VMpHzsTDgTVxVRVkU2f_PnNew3oBS7LQCSB5TJ4yrjY,650
|
|
398
|
+
xinference/web/ui/build/static/css/main.5061c4c3.css,sha256=P7rcts4xzIqV_ikvTokJEYzZ5R9w_3wigAhs7ai9hgU,4392
|
|
399
|
+
xinference/web/ui/build/static/css/main.5061c4c3.css.map,sha256=K2E6sUL58gZNSOo_9U-IMm9XCKQfnBlehW72IEYQQCw,8658
|
|
400
|
+
xinference/web/ui/build/static/js/main.754740c0.js,sha256=5BTmu3ieMQIEPYxARZgDR9dwEzkeUYB1bwGjMP9mqUs,1121849
|
|
401
|
+
xinference/web/ui/build/static/js/main.754740c0.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
|
|
402
|
+
xinference/web/ui/build/static/js/main.754740c0.js.map,sha256=CVPEXVH2kQnZaHD5PbCYPtfHMrnHob8X1ziytc3AjQw,4919966
|
|
358
403
|
xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
|
|
359
|
-
xinference/web/ui/node_modules/.package-lock.json,sha256=
|
|
404
|
+
xinference/web/ui/node_modules/.package-lock.json,sha256=_V6n9fLvF1laSHVMZb9Z6wwLvUphwXM7kuMW2TD5FX4,758073
|
|
360
405
|
xinference/web/ui/node_modules/.cache/babel-loader/00012b59e7dc64a18400bdddb660faa295258241c0b9cd15c78cdba63b858ed8.json,sha256=FhiSQ9MQv6bT7TkLBlXXskoaG2HCKhsuTXXlkDV-pM4,668
|
|
361
406
|
xinference/web/ui/node_modules/.cache/babel-loader/000791038e4133db461021f1018491323a006cca7a53e09c2ac35032bc36d8b6.json,sha256=bke3WZZjPsJqMKVeHZ7xOSiE8x3fy4fe9nzvylycWOE,1374
|
|
362
407
|
xinference/web/ui/node_modules/.cache/babel-loader/000b04fb1614a5dc3f850972c0b1e78aaa2fd8745590f01cce053cbb9e272a5f.json,sha256=_lNTM16wSHJj0KrTh3ZZ6C6_tLbRNL8uRchyx4lPE2s,1529
|
|
@@ -887,7 +932,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/0af4ed4bca091198332466dce20ec
|
|
|
887
932
|
xinference/web/ui/node_modules/.cache/babel-loader/0af76ce20a3e1586290fd96a51f63526f2c8ed20f74cd8de61c16654f9569eb9.json,sha256=LiAPN5-xeOy449akIEG8MdZCHTBsvskyL_OLZzoF0Xo,1583
|
|
888
933
|
xinference/web/ui/node_modules/.cache/babel-loader/0afcc720cb35a14f0b33c205fec3b11fd55cf3399235a1d06cd8cec677395264.json,sha256=Pq53_KvONK7fvnKKJVMMKIzM_5PinBDRpru31etgEyM,1193
|
|
889
934
|
xinference/web/ui/node_modules/.cache/babel-loader/0afd8b16ac2fcffb5ee738dc6a640efe2104bc4143c96091ad045fc97a49ca09.json,sha256=NN3q2usOfQl-G5G9OCxkjsWC7_lI8ywLjiDdYbZuzfQ,1615
|
|
890
|
-
xinference/web/ui/node_modules/.cache/babel-loader/0b11a5339468c13b2d31ac085e7effe4303259b2071abd46a0a8eb8529233a5e.json,sha256=S0PA-IvlNCBUtsRPKH-5SbuO4ERptKQNlMILCSwW2jA,1998
|
|
891
935
|
xinference/web/ui/node_modules/.cache/babel-loader/0b12be86c1a5e6fa9599fb77c8920e02458ffe49eecc8371d355d3989397632f.json,sha256=vPvii7k-WOe2ORNmC6tQnwE2VFOsAyY5GFoMuE1bWwQ,1875
|
|
892
936
|
xinference/web/ui/node_modules/.cache/babel-loader/0b28feb35c1940e36c28b18b293e875ca9e41a146ba87dd64c924bd740d6eecf.json,sha256=IZpKnG5j_QMW8fBuPidRMXmZdGbshhm9gVdWPHpeE_4,1167
|
|
893
937
|
xinference/web/ui/node_modules/.cache/babel-loader/0b2f532cc9009e86e32599b2beca958e35430434392f8a6c4780e7abb0d0bf6e.json,sha256=NAbdjDIHiMC8TeIpxHYugaZ0_sOkAoxYRk8D2nxbclk,6475
|
|
@@ -1164,6 +1208,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/10bb2ca3cd674b7163c255f86ae46
|
|
|
1164
1208
|
xinference/web/ui/node_modules/.cache/babel-loader/10bc4c19dbc541222ac2aa5526d6a48357e0e6392b662b8dd9d7102dd26354cb.json,sha256=Dnuq-bUzHwoiCs_cVSMbu9ySdRtSG-RdDhWim2ff-sU,15021
|
|
1165
1209
|
xinference/web/ui/node_modules/.cache/babel-loader/10bccf147040828299cbb62ebd6923c0140ba982a63c0140207bea31928afb98.json,sha256=l0Vzw6Zd0Z19CHj7x-VLwmSLSEE0HmN7yVxeLR5ONzU,2099
|
|
1166
1210
|
xinference/web/ui/node_modules/.cache/babel-loader/10c0d90df252c8d8a3bed6d66eac9552fdd281fe4e8f3f5b7f31c43070d641d8.json,sha256=4DCrINFVDkI7JCxjoU_eR09QibycSuS11oT10hdkyUU,1703
|
|
1211
|
+
xinference/web/ui/node_modules/.cache/babel-loader/10c69dc7a296779fcffedeff9393d832dfcb0013c36824adf623d3c518b801ff.json,sha256=pDy243dqTLxdktxvtZvgbr0B0ys2nuXRZokpYLkaluM,2253
|
|
1167
1212
|
xinference/web/ui/node_modules/.cache/babel-loader/10d4387e3d07de38b8043fb5b85dd96bde76ecc473bc10593bb257c3dcfd1e0a.json,sha256=P4iQBloL0JtgrtwHbP56XZ_Eka_LCvAnVA4n5ygnb24,1169
|
|
1168
1213
|
xinference/web/ui/node_modules/.cache/babel-loader/10dc7661741dfc88df5538bbf835870ae47b1a18f36c2f7b9650651e7304ce72.json,sha256=RL8wNkW7xFiUJDHqfOdwlzMzxEoOmvNuymO62p3PwBA,1892
|
|
1169
1214
|
xinference/web/ui/node_modules/.cache/babel-loader/10dcd9443f1f97c66fa2d1d8bc95c089a26b764158f5b53a145840e9a293a718.json,sha256=lvhWhZEcGvfRdKK6XsH8inobLEu_9-j8nqSTG_yLIlo,1838
|
|
@@ -1986,7 +2031,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/2134190110cdf71394821b79d74c9
|
|
|
1986
2031
|
xinference/web/ui/node_modules/.cache/babel-loader/2135271a3422b58bbbb73ea0522c4ad3e85a5d5759eb5a5276c6945210217ba5.json,sha256=ATXIRvW1Bhv11Qf94LRLZOlhmemxehaS3X7AESpQ16Q,3476
|
|
1987
2032
|
xinference/web/ui/node_modules/.cache/babel-loader/213599cbf80c03eb12b4253070a9ead5056d5e969db67deae77d29840132781d.json,sha256=aiJrmF4NNVwd0UnZy4mDk_JTYOON272_XJ5WInibiBU,1358
|
|
1988
2033
|
xinference/web/ui/node_modules/.cache/babel-loader/2139e4cd9ab639967af2de06782119c5289f9f929414ff5b7bdcfdee79f63821.json,sha256=Dw4pZWctb75WN-B3HjY9N2zBxYbg2TSt2NppOTJcsAY,1674
|
|
1989
|
-
xinference/web/ui/node_modules/.cache/babel-loader/213b5913e164773c2b0567455377765715f5f07225fbac77ad8e1e9dc9648a47.json,sha256=lR42yeGi2x99W893Ueph-olExsVWbQJFDUSdTaamYs4,38167
|
|
1990
2034
|
xinference/web/ui/node_modules/.cache/babel-loader/21415ee75cee791b86f63613e1f044be20f420a8d8e12447b555811c6b72230a.json,sha256=PZZVDlxodpkrKPvno5RLbfI1QdJP8T8jKzR0zIYho4A,1470
|
|
1991
2035
|
xinference/web/ui/node_modules/.cache/babel-loader/21443176cb70827bc4ad999f21e75f8336a3da1d46c98a67cd0a4a9318ebfac2.json,sha256=ZkL6mqNA7xbnOIDvM6RWjVGRRsExKM02py9WRy_zbHo,1594
|
|
1992
2036
|
xinference/web/ui/node_modules/.cache/babel-loader/214a4ca727fe07615a26a71a75e7cc65d4a96935083ab8e887e37a9a546912c7.json,sha256=arjz1T91PFV6GDdtyQDRIJvQerx03hP6fxhV_34BxJA,1300
|
|
@@ -4722,7 +4766,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/5c0c94a8c5ea216f513701ff66bb7
|
|
|
4722
4766
|
xinference/web/ui/node_modules/.cache/babel-loader/5c0fb1d13fcafcaec0933fd52e295a6ee59c67a5f5b5bfce9276693b16613c1e.json,sha256=KP_hG3aOfeEMKc13RwvxFedXKcwhrqy_neaa359gH6g,1074
|
|
4723
4767
|
xinference/web/ui/node_modules/.cache/babel-loader/5c2307007caf7113727f4d99aed80bfd4c88a7398598b3acc25753471cf03046.json,sha256=iAo5B4KaBge4vDxXgvw2ge5aiRsVJXut41j9rDjCvrk,1161
|
|
4724
4768
|
xinference/web/ui/node_modules/.cache/babel-loader/5c264df2d9ef4d1f7255f086ec2b82131348a08206f1c2bf85ea7380095668b3.json,sha256=iAZ-LuGid160MbDFZda46Iz1kneDvFeCSPtQAISkeek,17078
|
|
4725
|
-
xinference/web/ui/node_modules/.cache/babel-loader/5c26a23b5eacf5b752a08531577ae3840bb247745ef9a39583dc2d05ba93a82a.json,sha256=5IH9YntoMuqLSXENJrsTwezn9Rq_f40ssO8_tQawL1Y,98489
|
|
4726
4769
|
xinference/web/ui/node_modules/.cache/babel-loader/5c2e7b8a81f8cdf0245cad55e5f24161dc6d2d9d87958929efaee83dd644a168.json,sha256=qWL5C4IuWph15wKW1FEUPVQt0n_hMdJCi8Ygaq8RuqI,1267
|
|
4727
4770
|
xinference/web/ui/node_modules/.cache/babel-loader/5c46789931671a7a2a50792a769f5f5c8de4a3f29c0200dd44dbd5b3d5c138e5.json,sha256=ySjnyhdVM4wi1PVFKpad94Y3ls5FtSZAZClAmo6x_tA,1435
|
|
4728
4771
|
xinference/web/ui/node_modules/.cache/babel-loader/5c4736ce0f6849573877bc016e6a4f9a3b98cc8e6382a37c730dd23be8edd585.json,sha256=qDV60Gy_nJuLDkXMebGQ-cJkWM6idVnT-lhWpbfNpk8,1177
|
|
@@ -5319,6 +5362,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/68a54642bd6509a081364775600c1
|
|
|
5319
5362
|
xinference/web/ui/node_modules/.cache/babel-loader/68ac7bbbe5bfd57746b0e7a2425474a5932318eb594d9f82ca01641072132dce.json,sha256=i8qilyyqBQdQITKr0s-JzoxBxUC3veVQG-idYcxYoRg,1563
|
|
5320
5363
|
xinference/web/ui/node_modules/.cache/babel-loader/68b10b0f8d3801a3cee5e30b0cf812217904541746d52fc289b485eafedec263.json,sha256=hg9Nw3byqJOmfseskWXccnedp7Oq2rExDmZJmmU2ed8,1197
|
|
5321
5364
|
xinference/web/ui/node_modules/.cache/babel-loader/68b75a38655e5d78ebb9603d2710f8d47d71496118000fbb134c95b31188e4e7.json,sha256=g_SGCCOMZJTR4tLP7Tk47TaWTZY6GMCLXmwdQrkSoKE,3092
|
|
5365
|
+
xinference/web/ui/node_modules/.cache/babel-loader/68bede6d95bb5ef0b35bbb3ec5b8c937eaf6862c6cdbddb5ef222a7776aaf336.json,sha256=ciyFFTIqh0mUtRXbx_3WXfa64o2X6wDXBl0AURGbXwE,38373
|
|
5322
5366
|
xinference/web/ui/node_modules/.cache/babel-loader/68bf1a17f0a20977a34769785b286faa0d532328ec4a026cd6bd9274cc1342fc.json,sha256=Yd8sVkmcPtjbe44F_kswqLjPABupu-LNVCmPPcxXVrE,1290
|
|
5323
5367
|
xinference/web/ui/node_modules/.cache/babel-loader/68c0f04071e3e041aa7111308d8daf22c13e9d7997ab3ca54844dd1c4a3050bc.json,sha256=HZuQcSdr62dsb9-zpTiWrgy9dhr9Gluybv-_YkWM4xQ,981
|
|
5324
5368
|
xinference/web/ui/node_modules/.cache/babel-loader/68c5e9fbb63fa86be575623f325bfbf334f688df6efd555b82ef2c960c138cab.json,sha256=YNQPeiSfXbAAWuLEWqxT3EOfgRlzrH6bRw5Ab_2MUeI,1142
|
|
@@ -6022,6 +6066,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/77c7f0ca7038cf72e2bdcfa59d54c
|
|
|
6022
6066
|
xinference/web/ui/node_modules/.cache/babel-loader/77c857d7321eb7c9abd76c65969e9264aa57359178906039c323471a40dd37bc.json,sha256=GuEFmvPIpUixVrkQUzpcaSBNjvbQNwrHA2Nu9CsYhwo,1717
|
|
6023
6067
|
xinference/web/ui/node_modules/.cache/babel-loader/77c9b46084c699d598a19005df285fc5ff8966ab2448ed1edeed7b129f3a9f53.json,sha256=5S7J3ITp6gw-Hm-qWn80fbHOjWVy66a8iaq_z3eUEGk,2337
|
|
6024
6068
|
xinference/web/ui/node_modules/.cache/babel-loader/77d0ee70e78db503afcdeea5d871cacc8efb030c362c46002079abf7904236e4.json,sha256=smCvGlWAJ37Gaiosvou4CB_E0EbBLIfTrXlKFVPmKyk,1746
|
|
6069
|
+
xinference/web/ui/node_modules/.cache/babel-loader/77d50223f3e734d4485cca538cb098a8c3a7a0a1a9f01f58cdda3af42fe1adf5.json,sha256=FGpnxRq0H5-0zQd6vN8xZks62EVLfIuykjmhFjMXGUM,703199
|
|
6025
6070
|
xinference/web/ui/node_modules/.cache/babel-loader/77e849e9a3ab2abd01dfce5de997af4bda7f3b69c5d21b4f63f528114c2dc88e.json,sha256=uFfRi50jbzSR8v2FMaSiKkqPxLXDwni5E-V-_Fp0HJ0,2343
|
|
6026
6071
|
xinference/web/ui/node_modules/.cache/babel-loader/77fcab23c5c35e143f1c33213d29797f108ae588c93d72241b3e9a7eab33ccc6.json,sha256=NPjg0_5oTzlbX8uIJrKrRgsohLYMPuqRUCSl6M6XbEc,971
|
|
6027
6072
|
xinference/web/ui/node_modules/.cache/babel-loader/780bce27cadc69abd2145c26db57703529a7842e31da4e9de87e773192deb390.json,sha256=TCmEEDa5aQfnwJldnqbJUMdvCD8Vh4fk6O9EPimkHCU,1942
|
|
@@ -7591,7 +7636,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/976b00aea099053fa3def71d0c1ae
|
|
|
7591
7636
|
xinference/web/ui/node_modules/.cache/babel-loader/9778428b3001a4f5b3e1b879d5e7ad9da03f934aaa2e0514f8a7e2f289bb6233.json,sha256=hZBcAN8cI-Glida1s4vz3-OT4ZfpvXp2bGkSJExkIYo,1703
|
|
7592
7637
|
xinference/web/ui/node_modules/.cache/babel-loader/977c629e83c6cc2b921e834e3123c489c55587a146d5e024994cf73acb04d166.json,sha256=HiqCyAQxad3-yBoYsjWyspmP0Sbhoz8bNgQ_XasAV_k,1295
|
|
7593
7638
|
xinference/web/ui/node_modules/.cache/babel-loader/9787c77f71841a2b5dfcd43487a24584616e7dc6ac75eded5a2809abead1f347.json,sha256=kCTaPNyJ1Tr7b7aV2HLxXNcUnLhS9W72YA0aKCztvjY,1212
|
|
7594
|
-
xinference/web/ui/node_modules/.cache/babel-loader/978b57d1a04a701bc3fcfebc511f5f274eed6ed7eade67f6fb76c27d5fd9ecc8.json,sha256=XYQi3I5erkTr3p8K0djX77kUEo5gOcgcyXi5XG77aFw,14704
|
|
7595
7639
|
xinference/web/ui/node_modules/.cache/babel-loader/979af993386f6e8af8ea16be73ab8d4083aef8eda684e21ee1df263ad024981b.json,sha256=1VD8AalJEA7k_keCuqkCV4Z6shpxbCB2Cn5cUga-oqY,1126
|
|
7596
7640
|
xinference/web/ui/node_modules/.cache/babel-loader/979e397d9fba3a2136493926f6058e95f2b965fb9f5a3b415124b61019262187.json,sha256=6R9IcVK4xB-_MJmEXQ-64fiTrsn936A2Zl5Xe_GU3oI,3889
|
|
7597
7641
|
xinference/web/ui/node_modules/.cache/babel-loader/979e488ecb67250f6f322e1f2cfc17987c2d0a07bdd747d1dad9b674cf1c6519.json,sha256=7cqAJ2feqiIw5Irg9AmMkcDY0PLLuhBk-yjwglE3xos,1483
|
|
@@ -8253,6 +8297,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/a555289d29d89d4a3305399cda25c
|
|
|
8253
8297
|
xinference/web/ui/node_modules/.cache/babel-loader/a55ac753f37a5df5441013ab6870df43e355c66af25a36b6e5d4db0d05e264b1.json,sha256=pXDPnCDBpZ6VlUuzEebNQ_uGXwo1rTLgReeJ9h5vQ_8,2293
|
|
8254
8298
|
xinference/web/ui/node_modules/.cache/babel-loader/a5633d866ea3f6e91b7ef660810b7a80680cb0e1ab79276caadbf2fa58a59d70.json,sha256=cdQqs9J7F_K2DFCEOzDfdT3lNSdJ7VDCIH5XTU4AA4c,1476
|
|
8255
8299
|
xinference/web/ui/node_modules/.cache/babel-loader/a56d21207b16ff98e4934ce188ee2a60ed68c60df35b69d9af9c64a5f5ae87a0.json,sha256=mDtGchpAOH-CwIbME5K84plcTs0D_GTbSiiG5Ugs_R0,1080
|
|
8300
|
+
xinference/web/ui/node_modules/.cache/babel-loader/a56d5a642409a84988891089c98ca28ad0546432dfbae8aaa51bc5a280e1cdd2.json,sha256=fAJht6_62-9hjahDSzOMaaxs_b9H4Yrql9lLzp3lVEM,2151
|
|
8256
8301
|
xinference/web/ui/node_modules/.cache/babel-loader/a572a40cfaa528000c8ba9620f6ccf98dbfc43eefe45c5003f68ec7d5907327b.json,sha256=punKcPVfeScTQmNlefudyEBorv0XQZANFh0du-SO3-M,2012
|
|
8257
8302
|
xinference/web/ui/node_modules/.cache/babel-loader/a576d7d10efd46bff8ea246b707bf56da193ff14262bf97d81530043621ad7ab.json,sha256=3uUL2KQZSOpNF51EGCE85jbIMPEyCl-iDPBBk_5O_bc,2125
|
|
8258
8303
|
xinference/web/ui/node_modules/.cache/babel-loader/a578606a94fd0c61bc243695c736eea125452e43e0abf3d5a5fb7e0d6382eba6.json,sha256=8cLpDpfEumYughBamUuf6eIa4nNWgchKoJgGQNjsZbI,1256
|
|
@@ -10121,6 +10166,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/cd83e071e1cb5e9646c32d9385f53
|
|
|
10121
10166
|
xinference/web/ui/node_modules/.cache/babel-loader/cd84e9039c06a15af4d7b4ebaa1e3f4d3d2a83a61c10f0b8bb0661a31ebbc39f.json,sha256=PMjI48MQQhGMPAim9clJrUYWKhbmQB3mT5cqdVfD7Lo,2314
|
|
10122
10167
|
xinference/web/ui/node_modules/.cache/babel-loader/cd893276000870393c98d73fbef86714c16db912479724997e2471e4a222a30e.json,sha256=t4mNeCMWyhUkhAdwmGNsqunjPu2sX32xTHtviPTAvwI,1246
|
|
10123
10168
|
xinference/web/ui/node_modules/.cache/babel-loader/cd8e00c7b7a564c883ee6000a9a6582c9d7c2824ba9b0482b96762edde39bab2.json,sha256=UtoZHghxsjoqmoezSjVSVGL2ueQ4-RdzQXp6J8g_Ukc,1205
|
|
10169
|
+
xinference/web/ui/node_modules/.cache/babel-loader/cd90b08d177025dfe84209596fc51878f8a86bcaa6a240848a3d2e5fd4c7ff24.json,sha256=SLC0D_bDdnWyufwNbYt1S3Bbmyq0onTBOZ5OdA1zQq8,132271
|
|
10124
10170
|
xinference/web/ui/node_modules/.cache/babel-loader/cd9da5a3b86b7fc829d0601ac106983c66f396670c60f1f45b705f8e23810397.json,sha256=e48bBFLmNXVF-_Opx_OlPEjYepZ4lIMy3aldBBKKNnE,1476
|
|
10125
10171
|
xinference/web/ui/node_modules/.cache/babel-loader/cd9eb15dd6bdec95b59a8fe3721f5724fd2ac45bdc99c6ebd9ceab02005d6fa9.json,sha256=9-zyo3DzOBho6AXNbx_Wl-yFsVdTDqDfrjSgxU8oM2E,1042
|
|
10126
10172
|
xinference/web/ui/node_modules/.cache/babel-loader/cda311ac82acf0d88bd81d9968722d14b67e670b6f4b14063be2e6cc51dcd73e.json,sha256=hwpN0UregxUmIeEoXcRvdoYwfy_r4pf9WyL82RkrrHY,1371
|
|
@@ -10730,6 +10776,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/d9ec1b8e0b0c0a8dfa7c36b211d76
|
|
|
10730
10776
|
xinference/web/ui/node_modules/.cache/babel-loader/d9f05556f6a34b25444654fbfe4848b03c210df55f46436dd319dcdc8eaf2361.json,sha256=s4JKZPh91gk5D8k-VKCvHLAqL1UZ7XiGILQ4o2FOl7M,1330
|
|
10731
10777
|
xinference/web/ui/node_modules/.cache/babel-loader/d9f5224556e236ac29cea029655445c66d64b41cdb7e53cf9174c1fa5ff9a44d.json,sha256=yxGJ9coX7_92Q0U630DOxEPRWuwgAs812UyJPPBUMPQ,2025
|
|
10732
10778
|
xinference/web/ui/node_modules/.cache/babel-loader/d9fbcf20e6dce614fadb2511cee62eabe07123482ea8d3efc93ef457e3abde11.json,sha256=EAKNkp66K8cXcNE0EeSvFZV0_lQSOV6_q_5Lw1JBinM,1387
|
|
10779
|
+
xinference/web/ui/node_modules/.cache/babel-loader/d9ff696a3e3471f01b46c63d18af32e491eb5dc0e43cb30202c96871466df57f.json,sha256=DeKlAOi1A3FoQQaj4k_9yNdDyeAajIvncABG0YsZ-sc,2024
|
|
10733
10780
|
xinference/web/ui/node_modules/.cache/babel-loader/d9ffee132bf165b256ca6fd7ac4e0e9fbfa2308a42e27a6a97c6867d66ab5aa9.json,sha256=emfJFnyQ2EBEZm3utDVQd_meCbxUG-GSB2lbxhu-O7c,1219
|
|
10734
10781
|
xinference/web/ui/node_modules/.cache/babel-loader/da0094ac906f975df905429d43ded149a47732f63464ac23132e030283d71422.json,sha256=iZLRzqOPgf08_xqYSxtBKL3X6DuUREXCvZh8T61ZEAc,1603
|
|
10735
10782
|
xinference/web/ui/node_modules/.cache/babel-loader/da069f2efa1f5c065f5060573c58d408a0a392aa2aebfc853edac456890def23.json,sha256=2REZRZqgI6y1gQZA-Le8FYnQMkHDNOUd7w5vUQ-7dwc,1446
|
|
@@ -11245,6 +11292,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/e41fb0f646b017f61d83076f66e15
|
|
|
11245
11292
|
xinference/web/ui/node_modules/.cache/babel-loader/e42494915054a5dad23ba3b78b66088888c6b238a1b94ee189097228a1c0543a.json,sha256=7Y0AZQ6BjK9_ZRSLKx1b2bkyGPIsT64CwPyjUxOgl2I,2317
|
|
11246
11293
|
xinference/web/ui/node_modules/.cache/babel-loader/e427f1000001e7d6f6b6e5c07e7b74c0a538b03b09cbbcb4ebf5a8ee2d5d0bc5.json,sha256=wb6iZjtQRRJuhQ7KGdW-BsIqw2iM6yUp47vJdp6-upk,2157
|
|
11247
11294
|
xinference/web/ui/node_modules/.cache/babel-loader/e429d5a5014100a41c720a5324a139bcc1cf1a662a723ea7209d17719a480953.json,sha256=emqP8a3UO8tCaVZcqsItMi9u0dUqQeLpUNECJ1KvlH0,1879
|
|
11295
|
+
xinference/web/ui/node_modules/.cache/babel-loader/e42b72d4cc1ea412ebecbb8d040dc6c6bfee462c33903c2f1f3facb602ad742e.json,sha256=4RdDbeoTkIPgwxqprQ4QzACTSNuK8l_xiug-sdAeoSw,9831
|
|
11248
11296
|
xinference/web/ui/node_modules/.cache/babel-loader/e42cc78022decaa22d66b47d2e2970f777682872d52622cd0b239e06df3fd61c.json,sha256=5XJHafg1U5xiVCjr6iO5rEt7-H6FUVc2Sjjq3xlPYKQ,6379
|
|
11249
11297
|
xinference/web/ui/node_modules/.cache/babel-loader/e43d0d99318a292776677dbd344d482e969ef8a57428b6aa1ef555f940f2aa1f.json,sha256=hbKSPSXQLPGpUq0CF1TAkDvzUhoI7g5ZCDlw46emb_A,2174
|
|
11250
11298
|
xinference/web/ui/node_modules/.cache/babel-loader/e440da7abd7b46e4802e3e0251d6d5411eb4dce999cf08ec9cad1f7976614567.json,sha256=wL-lW1XVx1SQ1a5HDzSuaZXASZWdQqgTwh1pzIeneIw,1367
|
|
@@ -12057,6 +12105,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/f4f343b04d11666f98f14a31e2a1b
|
|
|
12057
12105
|
xinference/web/ui/node_modules/.cache/babel-loader/f4fc407c14fb0e71fec7f6993086752a43887f8a7bf7e7989846e60904b5e1c2.json,sha256=KoWp9emzLVKyh0AdeWCqgtAJctr1TxkTLoix6JNxfEA,1363
|
|
12058
12106
|
xinference/web/ui/node_modules/.cache/babel-loader/f4fdaad59db5ed92a1c678affaf34b036740b5345d0cc696ae81c8fe5c60949b.json,sha256=4pk4GFrSiEVlWRwOTUA1oyQvYxdMsbykunwN3y4Qok4,1394
|
|
12059
12107
|
xinference/web/ui/node_modules/.cache/babel-loader/f501fca5d4064783cb26d01e00f3b8c97e23781c59b9018a810f7cbdb8b203a4.json,sha256=cw5LNX7lTybhK8nAqz95Ju9h4YRBLulpA8zvrwJsK5g,1598
|
|
12108
|
+
xinference/web/ui/node_modules/.cache/babel-loader/f5039ddbeb815c51491a1989532006b96fc3ae49c6c60e3c097f875b4ae915ae.json,sha256=XfXnMNV-QdWUJboPH_CLcTEfwJCynkJwW6k6IwX0CA8,14626
|
|
12060
12109
|
xinference/web/ui/node_modules/.cache/babel-loader/f5166236bc3e182f8bfd009c91200dba9d7cf96c0002eb83fe4ffc17586dd531.json,sha256=ieblslAPgYaHbU-Yi_nRmNDm9xgdkmRa6ehWwiswOjA,1043
|
|
12061
12110
|
xinference/web/ui/node_modules/.cache/babel-loader/f519c4de4494e4cbfec0261d864c14d67d3dd97f937ad42f4e856c9ade0cd097.json,sha256=OVVaC1LtZacvN21gLcZmeeconK68h2bL3bDn78JGYK8,1829
|
|
12062
12111
|
xinference/web/ui/node_modules/.cache/babel-loader/f51a6ad07f134e87af4ca8cb2a95b8f21048ad48380d369f001ce87fd97886c6.json,sha256=SgcKRCCbTPp0TgoAbxPTIMyqp3Z6dJb33VeE5Ff2K6I,1254
|
|
@@ -13410,6 +13459,7 @@ xinference/web/ui/node_modules/@webassemblyjs/wasm-parser/package.json,sha256=lm
|
|
|
13410
13459
|
xinference/web/ui/node_modules/@webassemblyjs/wast-printer/package.json,sha256=4nRkIQ6oFwpcCrh-8OaQlTWlhzZLtM-M_wcnivrKrVw,730
|
|
13411
13460
|
xinference/web/ui/node_modules/@xtuc/ieee754/package.json,sha256=oeMKBfXDKGTXyOPieh9TKw5fPr79DT2iSCs2mis4im8,1178
|
|
13412
13461
|
xinference/web/ui/node_modules/@xtuc/long/package.json,sha256=fH9JzXzn_KeHyY_LnOOGgrxiSha1qEehrcUvcT2dvOY,846
|
|
13462
|
+
xinference/web/ui/node_modules/a-sync-waterfall/package.json,sha256=VjI90VUfsOZjNOQ6agFw6ygQ8kVRaS80ZBCho3vgYro,629
|
|
13413
13463
|
xinference/web/ui/node_modules/abab/package.json,sha256=TtCLzWMTEb4dZ_-1-z_cLX2VexmaQHiewxWc7hG7OpQ,989
|
|
13414
13464
|
xinference/web/ui/node_modules/accepts/package.json,sha256=5XFtXZOdsIxcKOxq6G7We-UyD5EIniZz_KHFuHbleqM,1157
|
|
13415
13465
|
xinference/web/ui/node_modules/acorn/package.json,sha256=8txHnHp0xuh9HNQim9PwqDnPIud23jSCcxOKwybmaWE,1059
|
|
@@ -14607,6 +14657,8 @@ xinference/web/ui/node_modules/normalize-url/package.json,sha256=DY2NIvCHKp0p98X
|
|
|
14607
14657
|
xinference/web/ui/node_modules/npm-run-path/package.json,sha256=ZFiauqOFXj76BkbpIKbbtYqaWgKMYMPYRA-naC18J-c,712
|
|
14608
14658
|
xinference/web/ui/node_modules/nth-check/package.json,sha256=Tm2PSjqBcMAxRl550wo_R8l-EVlE1tZW3QhwhrLaBPE,2455
|
|
14609
14659
|
xinference/web/ui/node_modules/nth-check/lib/esm/package.json,sha256=EjnU2IXcrUIgGiftkyT48Pdgt4cA2Nuc7TmlEc_-fq4,18
|
|
14660
|
+
xinference/web/ui/node_modules/nunjucks/package.json,sha256=QvRbFuEav2DeBPPtTy7YhWOsOBsc4cZULrBjJg93bKo,3138
|
|
14661
|
+
xinference/web/ui/node_modules/nunjucks/node_modules/commander/package.json,sha256=_IA4VbdYTqhkTN5BtGGe-vqpNacvywkXzlpTJRlVbwM,1132
|
|
14610
14662
|
xinference/web/ui/node_modules/nwsapi/package.json,sha256=qJboSOm_4sSr-VVMxz_SjWKT0ZxoRpTcuUmt6FCSe6k,877
|
|
14611
14663
|
xinference/web/ui/node_modules/object-assign/package.json,sha256=WZC7_6I1_Gdd69kl1Q9sP0iitFJtjJ91VcreyQKdDX8,764
|
|
14612
14664
|
xinference/web/ui/node_modules/object-hash/package.json,sha256=-Gs6ihgHj7v3HqHPRGgSnmCVZvhgudk_mfY9wlQ5Yus,1271
|
|
@@ -15454,9 +15506,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15454
15506
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15455
15507
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15456
15508
|
xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
|
|
15457
|
-
xinference-0.
|
|
15458
|
-
xinference-0.
|
|
15459
|
-
xinference-0.
|
|
15460
|
-
xinference-0.
|
|
15461
|
-
xinference-0.
|
|
15462
|
-
xinference-0.
|
|
15509
|
+
xinference-0.15.1.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
15510
|
+
xinference-0.15.1.dist-info/METADATA,sha256=F6z7VKA4flX1wim_S9UOpFbxkflK9kTvveB4qtvuoSE,19062
|
|
15511
|
+
xinference-0.15.1.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
15512
|
+
xinference-0.15.1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
15513
|
+
xinference-0.15.1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
15514
|
+
xinference-0.15.1.dist-info/RECORD,,
|