xinference 0.15.0__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/_version.py +3 -3
- xinference/api/restful_api.py +204 -1
- xinference/client/restful/restful_client.py +4 -2
- xinference/core/image_interface.py +28 -0
- xinference/core/model.py +28 -0
- xinference/core/supervisor.py +6 -0
- 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/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 +148 -20
- xinference/model/llm/__init__.py +8 -0
- xinference/model/llm/llm_family.json +393 -0
- xinference/model/llm/llm_family.py +3 -1
- xinference/model/llm/llm_family_modelscope.json +408 -3
- xinference/model/llm/sglang/core.py +3 -0
- xinference/model/llm/transformers/chatglm.py +1 -1
- xinference/model/llm/transformers/core.py +6 -0
- xinference/model/llm/transformers/deepseek_v2.py +340 -0
- xinference/model/llm/transformers/qwen2_audio.py +168 -0
- xinference/model/llm/transformers/qwen2_vl.py +31 -5
- xinference/model/llm/utils.py +104 -84
- xinference/model/llm/vllm/core.py +8 -0
- xinference/thirdparty/fish_speech/fish_speech/configs/firefly_gan_vq.yaml +2 -3
- xinference/thirdparty/fish_speech/fish_speech/configs/text2semantic_finetune.yaml +1 -1
- 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/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/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/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/types.py +7 -4
- xinference/web/ui/build/asset-manifest.json +6 -6
- xinference/web/ui/build/index.html +1 -1
- xinference/web/ui/build/static/css/{main.632e9148.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.9cfafbd6.js → main.754740c0.js} +3 -3
- xinference/web/ui/build/static/js/main.754740c0.js.map +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/cd90b08d177025dfe84209596fc51878f8a86bcaa6a240848a3d2e5fd4c7ff24.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/e42b72d4cc1ea412ebecbb8d040dc6c6bfee462c33903c2f1f3facb602ad742e.json +1 -0
- {xinference-0.15.0.dist-info → xinference-0.15.1.dist-info}/METADATA +9 -3
- {xinference-0.15.0.dist-info → xinference-0.15.1.dist-info}/RECORD +72 -74
- 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.632e9148.css.map +0 -1
- xinference/web/ui/build/static/js/main.9cfafbd6.js.map +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/01d6d198156bacbd436c51435edbd4b2cacd47a79db929105eba30f74b67d48d.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/59eb25f514afcc4fefd1b309d192b2455f1e0aec68a9de598ca4b2333fe2c774.json +0 -1
- /xinference/web/ui/build/static/js/{main.9cfafbd6.js.LICENSE.txt → main.754740c0.js.LICENSE.txt} +0 -0
- {xinference-0.15.0.dist-info → xinference-0.15.1.dist-info}/LICENSE +0 -0
- {xinference-0.15.0.dist-info → xinference-0.15.1.dist-info}/WHEEL +0 -0
- {xinference-0.15.0.dist-info → xinference-0.15.1.dist-info}/entry_points.txt +0 -0
- {xinference-0.15.0.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
2
|
xinference/_compat.py,sha256=xFztCfyrq3O_4bssL_ygghYkfxicv_ZhiX2YDDWHf-k,3571
|
|
3
|
-
xinference/_version.py,sha256=
|
|
3
|
+
xinference/_version.py,sha256=wbdwr3kzesiwMZeRbtAdBTt5CkCnSrLiBm1cVWh10zY,498
|
|
4
4
|
xinference/conftest.py,sha256=56HYQjsAJcQrpZSmskniPqH9dLoW-i3Oud6NVTtc4io,9752
|
|
5
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,18 +18,18 @@ 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
23
|
xinference/core/cache_tracker.py,sha256=3ubjYCU5aZToSp2GEuzedECVrg-PR4kThTefrFUkb9g,6971
|
|
24
24
|
xinference/core/chat_interface.py,sha256=tM4hQPZ0UVcmE4_-auXWkq2z0rWmZBwwXNwbbl5zvGQ,20666
|
|
25
25
|
xinference/core/event.py,sha256=42F38H2WOl6aPxp2oxX6WNxHRRxbnvYRmbt4Ar7NP4U,1640
|
|
26
|
-
xinference/core/image_interface.py,sha256
|
|
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
30
|
xinference/core/scheduler.py,sha256=qONNFqAlnYDcmmzPO5jfU-r0aZ1Lhhpn1oSaA5CAGTE,15485
|
|
31
31
|
xinference/core/status_guard.py,sha256=4an1KjUOhCStgRQUw1VSzXcycXUtvhxwiMREKKcl1UI,2828
|
|
32
|
-
xinference/core/supervisor.py,sha256=
|
|
32
|
+
xinference/core/supervisor.py,sha256=bNMyGM-cqHwSqhYxHlR6oePEKqt9D4tcrBFMAb6-oV0,52510
|
|
33
33
|
xinference/core/utils.py,sha256=p3ptQMdzKu9WxdUJ2EdDTXvPDl53BGwiNuVWuhaE4EU,8536
|
|
34
34
|
xinference/core/worker.py,sha256=IvcagHkXpMKjTvZl9svXko5hRuKN3czhbi5phGv-6No,46264
|
|
35
35
|
xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
@@ -48,12 +48,12 @@ xinference/model/audio/chattts.py,sha256=rMH6-9M8boZdpUSgxaAge-LraE79nRs6mVc0nPL
|
|
|
48
48
|
xinference/model/audio/core.py,sha256=2QexrIh3hDoaNeWh5rOMas9q4zDCZTaazsLRdQ7D5Zw,6512
|
|
49
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
58
|
xinference/model/embedding/core.py,sha256=5LvIJMDJYguhXa_U0n1yx_B88QmHU_34bFqYgHximRk,18269
|
|
59
59
|
xinference/model/embedding/custom.py,sha256=757KncqhsOWVypHZFtuhBP_xy-UTNaFdy0BuZRfuIV8,3848
|
|
@@ -67,21 +67,22 @@ 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=
|
|
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
|
|
81
82
|
xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
|
|
82
|
-
xinference/model/llm/llm_family_modelscope.json,sha256
|
|
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
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
|
|
@@ -89,13 +90,14 @@ xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc
|
|
|
89
90
|
xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
90
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/chatglm.py,sha256=pCJgoc0Ikny5BL85iHXl9M6zKgIzAHBsd81NAZ31yRI,17834
|
|
95
96
|
xinference/model/llm/transformers/cogvlm2.py,sha256=wqWM6AhVQssgkUOcVX2N7RU7kjnAu55r6ZlUjh9iJro,15942
|
|
96
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/core.py,sha256=-YmBzM5WbK-B3YIv7rWPFewDEx5xFDWyPO8YqFr8Sv8,31012
|
|
100
|
+
xinference/model/llm/transformers/deepseek_v2.py,sha256=HSddUBm5sKpHTNtPbTao9r3Yif-_xRAJrAtfCyELnhw,12975
|
|
99
101
|
xinference/model/llm/transformers/deepseek_vl.py,sha256=eb-UH6g1Vr-jaZnGSkn_Ud4WYBzDuYR24CV_tAvo9iM,10397
|
|
100
102
|
xinference/model/llm/transformers/glm4v.py,sha256=Uz7y2A_cSDeVVfe4D31h9LGqtUJ51plckt6jmnm_z7c,13841
|
|
101
103
|
xinference/model/llm/transformers/intern_vl.py,sha256=3K0_2ng4zBgsnobzV7AfDEq7NzZu676JfNM54oE3AXQ,18222
|
|
@@ -103,13 +105,14 @@ xinference/model/llm/transformers/internlm2.py,sha256=nRrmbH9bJl_wLcCH4zSy0EeKeP
|
|
|
103
105
|
xinference/model/llm/transformers/minicpmv25.py,sha256=8fcmQo5VAst0vniV2-N6109Nq0sA56O2vWVxMvdZWxo,6766
|
|
104
106
|
xinference/model/llm/transformers/minicpmv26.py,sha256=QRO5gnxuFMiJDNZ-v3os1A_4bn4fzrDvYjAOhdPQ4Lw,13392
|
|
105
107
|
xinference/model/llm/transformers/omnilmm.py,sha256=MBsh-qaDnjtrtTRrAR7ArgHyupfpowwntuTuOj7xGkA,5124
|
|
106
|
-
xinference/model/llm/transformers/
|
|
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
|
|
107
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
112
|
xinference/model/llm/transformers/utils.py,sha256=qob4wDMN98LKzYdDcQe8rFVA5_mX4i5XeVgm3HSq9iI,28505
|
|
110
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
117
|
xinference/model/rerank/core.py,sha256=_6kqYc488sbj_yub8AkZnDi4Xcibc4Q_MunrdMkHrqo,13264
|
|
115
118
|
xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
|
|
@@ -201,13 +204,13 @@ xinference/thirdparty/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeR
|
|
|
201
204
|
xinference/thirdparty/fish_speech/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
202
205
|
xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=Qh8G6Y7O1qUa2cjRdDBKDLP3ygyn1cFgdEBilkZsI7U,58
|
|
203
206
|
xinference/thirdparty/fish_speech/fish_speech/scheduler.py,sha256=xpstAfXlsdx-N_hDcJJYFKiLb_cW5mTdXACyuODrcIg,1101
|
|
204
|
-
xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=
|
|
207
|
+
xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=TQbqeYF5RPkShMNjb9dsqWTWhEyHFnfdFOR_gnbIfUo,4474
|
|
205
208
|
xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py,sha256=LYHvlvb9463UMJ3stVzBilVpLtdiLCteuzMIB5ypHS0,70
|
|
206
209
|
xinference/thirdparty/fish_speech/fish_speech/callbacks/grad_norm.py,sha256=pzuUxUnXWAa9U6XKcvQpnGoUZhMmFQKimSqYH-WajIQ,3436
|
|
207
210
|
xinference/thirdparty/fish_speech/fish_speech/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
208
211
|
xinference/thirdparty/fish_speech/fish_speech/configs/base.yaml,sha256=7_yXj9Y9SNhI7wiQeFvoLArtp9gqJCF-f43JGQ-TwCI,2544
|
|
209
|
-
xinference/thirdparty/fish_speech/fish_speech/configs/firefly_gan_vq.yaml,sha256
|
|
210
|
-
xinference/thirdparty/fish_speech/fish_speech/configs/text2semantic_finetune.yaml,sha256=
|
|
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
|
|
211
214
|
xinference/thirdparty/fish_speech/fish_speech/configs/lora/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
212
215
|
xinference/thirdparty/fish_speech/fish_speech/configs/lora/r_8_alpha_16.yaml,sha256=a9QVkN2A64_0l8XUfwV1fgW5eZi9124L5pHdsN9ZgII,98
|
|
213
216
|
xinference/thirdparty/fish_speech/fish_speech/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -223,28 +226,24 @@ xinference/thirdparty/fish_speech/fish_speech/i18n/__init__.py,sha256=u9r_HCtTmY
|
|
|
223
226
|
xinference/thirdparty/fish_speech/fish_speech/i18n/core.py,sha256=8Ks8wGog73U-AZqlzGltfx61KALGTh7uCIXnQHDnDOw,1036
|
|
224
227
|
xinference/thirdparty/fish_speech/fish_speech/i18n/scan.py,sha256=1mdXKPeR0d3bTcFZWhX6ODWUJbbiOHO73MBDEJlTmUY,3751
|
|
225
228
|
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
226
|
-
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/en_US.json,sha256=
|
|
227
|
-
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json,sha256=
|
|
228
|
-
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json,sha256
|
|
229
|
-
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json,sha256=
|
|
230
|
-
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
|
|
231
234
|
xinference/thirdparty/fish_speech/fish_speech/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
232
235
|
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
233
236
|
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lit_module.py,sha256=Brrgxy6tHNAwclfu04XDNLKzzGU_FamBL5D8XWPj99A,6567
|
|
234
|
-
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
|
|
235
238
|
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lora.py,sha256=KHbtG1BGrFMtdoMtHXPWb3OTez8HtHEiuAaMEFOrNYI,2923
|
|
236
|
-
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py,sha256=
|
|
237
|
-
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
|
|
238
240
|
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/utils.py,sha256=irmTsK36GlLccFI5CjWahKO7NG6LZQrd5FEh_7qy4Xs,2533
|
|
239
241
|
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
240
|
-
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/
|
|
241
|
-
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/
|
|
242
|
-
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py,sha256=Lgp0ovnddj9ECcXmvAbXsga1OdxXCkaQFCFrHlC1YWk,4000
|
|
243
|
-
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/reference.py,sha256=1qozYaZ9b9LlUntbg2PHCquyyzG54KWKdPdyXVgWoQM,3613
|
|
244
|
-
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
|
|
245
244
|
xinference/thirdparty/fish_speech/fish_speech/text/__init__.py,sha256=3lYfSw4Xb3Qh0p8FsjX4ToOJNsm7ZxN3XPh_xFKXoUQ,102
|
|
246
|
-
xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=
|
|
247
|
-
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
|
|
248
247
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/.gitignore,sha256=04gWbPAivQzTV7w2eOgkk3xcMZLuti1pkLwy_mW7k6M,1274
|
|
249
248
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/README.md,sha256=9tZNujydXU0DlgpnsJTfMI880mgh41l6UvqqQQKbcPk,890
|
|
250
249
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -271,38 +270,37 @@ xinference/thirdparty/fish_speech/fish_speech/utils/spectrogram.py,sha256=R9dGOE
|
|
|
271
270
|
xinference/thirdparty/fish_speech/fish_speech/utils/utils.py,sha256=GaL7k1geF-D5temeOQI2Q8RzfC_Jc1bsQnLNvO-sV1c,3793
|
|
272
271
|
xinference/thirdparty/fish_speech/fish_speech/webui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
273
272
|
xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py,sha256=uIWcCXHyF7Oqo7uyq8li0fpVL6q-t-ITk2k3ma5WjU0,3972
|
|
274
|
-
xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=
|
|
273
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=nnLug37TcrIys4DMgeVRgQuvnLjB36b49aMBUt98ZKI,46885
|
|
275
274
|
xinference/thirdparty/fish_speech/fish_speech/webui/css/style.css,sha256=CLXPzePjropDNCfg2jptIwJRMIWPuc5jfd2aLGadMD0,2617
|
|
276
275
|
xinference/thirdparty/fish_speech/fish_speech/webui/html/footer.html,sha256=ofq4m93dF0Z_lXn2J6nLBwXwdugBOPIzjzFGBbr1C58,348
|
|
277
276
|
xinference/thirdparty/fish_speech/fish_speech/webui/js/animate.js,sha256=AG2umxvH9ly6ZxJDxV4sfz1A9Q3_unA7LnkKv05X-i4,2690
|
|
278
277
|
xinference/thirdparty/fish_speech/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
279
|
-
xinference/thirdparty/fish_speech/tools/api.py,sha256=
|
|
280
|
-
xinference/thirdparty/fish_speech/tools/
|
|
281
|
-
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
|
|
282
281
|
xinference/thirdparty/fish_speech/tools/extract_model.py,sha256=42b_U4rmqX3OUOIqWQQczsEktt79aQSOJ4E55B1bHl8,536
|
|
283
|
-
xinference/thirdparty/fish_speech/tools/file.py,sha256=
|
|
284
|
-
xinference/thirdparty/fish_speech/tools/
|
|
285
|
-
xinference/thirdparty/fish_speech/tools/
|
|
286
|
-
xinference/thirdparty/fish_speech/tools/
|
|
287
|
-
xinference/thirdparty/fish_speech/tools/
|
|
288
|
-
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
|
|
289
287
|
xinference/thirdparty/fish_speech/tools/whisper_asr.py,sha256=uG6NsSnH6oLEkCRM-Tb8o6L7OKDZ1eSVd8obEoq7jVc,4893
|
|
290
288
|
xinference/thirdparty/fish_speech/tools/llama/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
291
|
-
xinference/thirdparty/fish_speech/tools/llama/build_dataset.py,sha256=
|
|
289
|
+
xinference/thirdparty/fish_speech/tools/llama/build_dataset.py,sha256=rOVoiXPpKqwT2C2cDhTgw8TMNH5Tq0QzejPd4Y387zY,4898
|
|
292
290
|
xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py,sha256=vF2OVE4kj5qVaBBHGR1eTqcmLWvUeoO4OMj9eUkTXvw,4623
|
|
293
|
-
xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=
|
|
294
|
-
xinference/thirdparty/fish_speech/tools/llama/merge_lora.py,sha256=
|
|
295
|
-
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
|
|
296
294
|
xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py,sha256=MuFdqOsU2QHq8cSz7pa4PAsjZyrJrghCZQR2SrpplTQ,2025
|
|
297
295
|
xinference/thirdparty/fish_speech/tools/sensevoice/README.md,sha256=KD334P_t33hZcbxKFIOpQIrcuBMahpc1prBMht_s1Nw,2457
|
|
298
296
|
xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
299
297
|
xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py,sha256=abg8hFiVcWwhJYT_E8De-vYRUQOs1u0Zxxgz1nj1790,22739
|
|
300
|
-
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
|
|
301
299
|
xinference/thirdparty/fish_speech/tools/sensevoice/vad_utils.py,sha256=QZhdJN6PiJUWui_8fdt_-BA32OKVfvjqV8roavLna20,2214
|
|
302
300
|
xinference/thirdparty/fish_speech/tools/vqgan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
303
301
|
xinference/thirdparty/fish_speech/tools/vqgan/create_train_split.py,sha256=aWQeRSJ_KRPp72qtXoFvxJkkP6P-73VKIew2iIeETos,2996
|
|
304
|
-
xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py,sha256=
|
|
305
|
-
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
|
|
306
304
|
xinference/thirdparty/internvl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
307
305
|
xinference/thirdparty/internvl/conversation.py,sha256=2wLSnfxyLItQaLd-N5xoybBPKyZadXkVntPuMV5iyGo,15040
|
|
308
306
|
xinference/thirdparty/llava/__init__.py,sha256=UlCNtyBVX645CB6S6LfyYkTfQVO18_a8e9SmR7cHExA,41
|
|
@@ -394,14 +392,14 @@ xinference/thirdparty/whisper/normalizers/english.json,sha256=Zgf5SL6YJNLhsvoiI8
|
|
|
394
392
|
xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc3yhvWzWuMhQzRnp2dM6IQdA,20868
|
|
395
393
|
xinference/web/ui/package-lock.json,sha256=r6y_nAa8SfAETbx3ysAKcRf2SznsSAxpLwtArCJbCCI,760153
|
|
396
394
|
xinference/web/ui/package.json,sha256=fkEgsboguEVK9yuRrJjN7Alhyo38qV1Ih83qQFVr6SQ,2023
|
|
397
|
-
xinference/web/ui/build/asset-manifest.json,sha256=
|
|
395
|
+
xinference/web/ui/build/asset-manifest.json,sha256=g4v2_BEgxseyKfzOc3HnIiYTFIpUMjdAFNVzSprteXY,453
|
|
398
396
|
xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
|
|
399
|
-
xinference/web/ui/build/index.html,sha256=
|
|
400
|
-
xinference/web/ui/build/static/css/main.
|
|
401
|
-
xinference/web/ui/build/static/css/main.
|
|
402
|
-
xinference/web/ui/build/static/js/main.
|
|
403
|
-
xinference/web/ui/build/static/js/main.
|
|
404
|
-
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
|
|
405
403
|
xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
|
|
406
404
|
xinference/web/ui/node_modules/.package-lock.json,sha256=_V6n9fLvF1laSHVMZb9Z6wwLvUphwXM7kuMW2TD5FX4,758073
|
|
407
405
|
xinference/web/ui/node_modules/.cache/babel-loader/00012b59e7dc64a18400bdddb660faa295258241c0b9cd15c78cdba63b858ed8.json,sha256=FhiSQ9MQv6bT7TkLBlXXskoaG2HCKhsuTXXlkDV-pM4,668
|
|
@@ -495,7 +493,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/01d0efe16185a45201232a3b0195c
|
|
|
495
493
|
xinference/web/ui/node_modules/.cache/babel-loader/01d11d55e8123666553e77ed73e2be79eab730f930733ce9ae0b6f77d68a24bb.json,sha256=R7L_1xyL7FE-XCcW5a7nrR5rCwUpK4p5Iqk5JyIwA4Y,1214
|
|
496
494
|
xinference/web/ui/node_modules/.cache/babel-loader/01d29f559aca7ac4f0173fa2fc0109bb25075796bc55344b9ea67de7225bae45.json,sha256=tnzKkXfR7IZAWbG9F3yB4tzTZFDcLGXk9qm7UWJEq9k,1180
|
|
497
495
|
xinference/web/ui/node_modules/.cache/babel-loader/01d2f7c798017979f45345f233c15de936d699ca0503cba19e1d9a27d8bcbdc5.json,sha256=4jpn23HRCP-SDZ0FNwzkRWAZLefEvrjIGZGZnmJ4ABg,1358
|
|
498
|
-
xinference/web/ui/node_modules/.cache/babel-loader/01d6d198156bacbd436c51435edbd4b2cacd47a79db929105eba30f74b67d48d.json,sha256=nGGo547CKcOY8tu0NbOTESY629aVkJwG_XSBAZTUEtQ,110954
|
|
499
496
|
xinference/web/ui/node_modules/.cache/babel-loader/01dd081b12a8c7ea283dc0a1c441a06ecbcd46ecd8b906a835b79bd26d91d18f.json,sha256=m_OmC-ml3p88AiK-w8x_jxE-Mx4ZDydBKh8x8GoyBmM,4037
|
|
500
497
|
xinference/web/ui/node_modules/.cache/babel-loader/01e1206a2e529c33335aedf53a5cfc56961cb20236612fca7223b4d8cb46f9f5.json,sha256=eOcxatBPdGM9rAGyy9cyXZyAPQOsCoEa6Z9LgZBujN4,801
|
|
501
498
|
xinference/web/ui/node_modules/.cache/babel-loader/01e3beb0d20ce88796ce79b39c732ad1c2e79137981202ca317911211939978d.json,sha256=WYsuMdWmdLV3KkvWDiAgszXPAVHyNVSK8lSlr8xKs9M,1996
|
|
@@ -4670,7 +4667,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/59d7c51e2656b581ffd10c0affff6
|
|
|
4670
4667
|
xinference/web/ui/node_modules/.cache/babel-loader/59df1384033e89d592d1a265f981ffa7aabd25c4d7a1752c87d7c88ef13edc87.json,sha256=vLj2K33jtdS4ACUGUq_mh7N_obtlZ1WDWj7-jQCpv9I,1197
|
|
4671
4668
|
xinference/web/ui/node_modules/.cache/babel-loader/59e1297d4bf1a3f0bda54890e8877ae45b73be367eeb9e9a189a79d7be2db74c.json,sha256=PInf2mMMdWK6_sZy-kp7Tf1-4ZhmLvy3K-VCcUIHqYo,1128
|
|
4672
4669
|
xinference/web/ui/node_modules/.cache/babel-loader/59e458616e72c12bd2b88ab2f450de2bd8edf84103a8bb676c38bb1a9cc5f76e.json,sha256=hSYjCXJ1aurlIwrKKBLxErDu0wdIPllXJpPXVHaI4cQ,991
|
|
4673
|
-
xinference/web/ui/node_modules/.cache/babel-loader/59eb25f514afcc4fefd1b309d192b2455f1e0aec68a9de598ca4b2333fe2c774.json,sha256=Ys4zHFTXfrZlIESFRN_UcvfqCXFrENFP998g17C_Gh8,10600
|
|
4674
4670
|
xinference/web/ui/node_modules/.cache/babel-loader/59ed2ee09c899267f2de5626e98853dafd2c34e7b831036ea466ee6578b62ef1.json,sha256=01z-8ACah8bWyaqNUQFHHeFCeZRZbZ-mUThpq3vfW_w,1377
|
|
4675
4671
|
xinference/web/ui/node_modules/.cache/babel-loader/59f05b847f267d1c05e43c0a5b7155a9600762e7a2b027c07a40ec13d688deec.json,sha256=OrzkscNc1Y8t332YatE5-AYdtPhWRYRCtkN4eGmW-k8,1426
|
|
4676
4672
|
xinference/web/ui/node_modules/.cache/babel-loader/59f3a22c87ca60562679025a1aadc66e86d31c3900bdd993d00e85c888f3d1b0.json,sha256=gstd9Xg8d37hAplKFR-e57DYxxxzoHWpqW0k4vQ_KNI,1343
|
|
@@ -10170,6 +10166,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/cd83e071e1cb5e9646c32d9385f53
|
|
|
10170
10166
|
xinference/web/ui/node_modules/.cache/babel-loader/cd84e9039c06a15af4d7b4ebaa1e3f4d3d2a83a61c10f0b8bb0661a31ebbc39f.json,sha256=PMjI48MQQhGMPAim9clJrUYWKhbmQB3mT5cqdVfD7Lo,2314
|
|
10171
10167
|
xinference/web/ui/node_modules/.cache/babel-loader/cd893276000870393c98d73fbef86714c16db912479724997e2471e4a222a30e.json,sha256=t4mNeCMWyhUkhAdwmGNsqunjPu2sX32xTHtviPTAvwI,1246
|
|
10172
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
|
|
10173
10170
|
xinference/web/ui/node_modules/.cache/babel-loader/cd9da5a3b86b7fc829d0601ac106983c66f396670c60f1f45b705f8e23810397.json,sha256=e48bBFLmNXVF-_Opx_OlPEjYepZ4lIMy3aldBBKKNnE,1476
|
|
10174
10171
|
xinference/web/ui/node_modules/.cache/babel-loader/cd9eb15dd6bdec95b59a8fe3721f5724fd2ac45bdc99c6ebd9ceab02005d6fa9.json,sha256=9-zyo3DzOBho6AXNbx_Wl-yFsVdTDqDfrjSgxU8oM2E,1042
|
|
10175
10172
|
xinference/web/ui/node_modules/.cache/babel-loader/cda311ac82acf0d88bd81d9968722d14b67e670b6f4b14063be2e6cc51dcd73e.json,sha256=hwpN0UregxUmIeEoXcRvdoYwfy_r4pf9WyL82RkrrHY,1371
|
|
@@ -11295,6 +11292,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/e41fb0f646b017f61d83076f66e15
|
|
|
11295
11292
|
xinference/web/ui/node_modules/.cache/babel-loader/e42494915054a5dad23ba3b78b66088888c6b238a1b94ee189097228a1c0543a.json,sha256=7Y0AZQ6BjK9_ZRSLKx1b2bkyGPIsT64CwPyjUxOgl2I,2317
|
|
11296
11293
|
xinference/web/ui/node_modules/.cache/babel-loader/e427f1000001e7d6f6b6e5c07e7b74c0a538b03b09cbbcb4ebf5a8ee2d5d0bc5.json,sha256=wb6iZjtQRRJuhQ7KGdW-BsIqw2iM6yUp47vJdp6-upk,2157
|
|
11297
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
|
|
11298
11296
|
xinference/web/ui/node_modules/.cache/babel-loader/e42cc78022decaa22d66b47d2e2970f777682872d52622cd0b239e06df3fd61c.json,sha256=5XJHafg1U5xiVCjr6iO5rEt7-H6FUVc2Sjjq3xlPYKQ,6379
|
|
11299
11297
|
xinference/web/ui/node_modules/.cache/babel-loader/e43d0d99318a292776677dbd344d482e969ef8a57428b6aa1ef555f940f2aa1f.json,sha256=hbKSPSXQLPGpUq0CF1TAkDvzUhoI7g5ZCDlw46emb_A,2174
|
|
11300
11298
|
xinference/web/ui/node_modules/.cache/babel-loader/e440da7abd7b46e4802e3e0251d6d5411eb4dce999cf08ec9cad1f7976614567.json,sha256=wL-lW1XVx1SQ1a5HDzSuaZXASZWdQqgTwh1pzIeneIw,1367
|
|
@@ -15508,9 +15506,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15508
15506
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15509
15507
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15510
15508
|
xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
|
|
15511
|
-
xinference-0.15.
|
|
15512
|
-
xinference-0.15.
|
|
15513
|
-
xinference-0.15.
|
|
15514
|
-
xinference-0.15.
|
|
15515
|
-
xinference-0.15.
|
|
15516
|
-
xinference-0.15.
|
|
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,,
|