xinference 1.4.1__py3-none-any.whl → 1.5.0.post1__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 +50 -1
- xinference/client/restful/restful_client.py +82 -2
- xinference/constants.py +3 -0
- xinference/core/chat_interface.py +297 -83
- xinference/core/model.py +1 -0
- xinference/core/progress_tracker.py +16 -8
- xinference/core/supervisor.py +45 -1
- xinference/core/worker.py +262 -37
- xinference/deploy/cmdline.py +33 -1
- xinference/model/audio/core.py +11 -1
- xinference/model/audio/megatts.py +105 -0
- xinference/model/audio/model_spec.json +24 -1
- xinference/model/audio/model_spec_modelscope.json +26 -1
- xinference/model/core.py +14 -0
- xinference/model/embedding/core.py +6 -1
- xinference/model/flexible/core.py +6 -1
- xinference/model/image/core.py +6 -1
- xinference/model/image/model_spec.json +17 -1
- xinference/model/image/model_spec_modelscope.json +17 -1
- xinference/model/llm/__init__.py +0 -4
- xinference/model/llm/core.py +4 -0
- xinference/model/llm/llama_cpp/core.py +40 -16
- xinference/model/llm/llm_family.json +415 -84
- xinference/model/llm/llm_family.py +24 -1
- xinference/model/llm/llm_family_modelscope.json +449 -0
- xinference/model/llm/mlx/core.py +16 -2
- xinference/model/llm/transformers/__init__.py +14 -0
- xinference/model/llm/transformers/core.py +30 -6
- xinference/model/llm/transformers/gemma3.py +17 -2
- xinference/model/llm/transformers/intern_vl.py +28 -18
- xinference/model/llm/transformers/minicpmv26.py +21 -2
- xinference/model/llm/transformers/qwen-omni.py +308 -0
- xinference/model/llm/transformers/qwen2_audio.py +1 -1
- xinference/model/llm/transformers/qwen2_vl.py +20 -4
- xinference/model/llm/utils.py +11 -1
- xinference/model/llm/vllm/core.py +35 -0
- xinference/model/llm/vllm/distributed_executor.py +8 -2
- xinference/model/rerank/core.py +6 -1
- xinference/model/utils.py +118 -1
- xinference/model/video/core.py +6 -1
- xinference/thirdparty/megatts3/__init__.py +0 -0
- xinference/thirdparty/megatts3/tts/frontend_function.py +175 -0
- xinference/thirdparty/megatts3/tts/gradio_api.py +93 -0
- xinference/thirdparty/megatts3/tts/infer_cli.py +277 -0
- xinference/thirdparty/megatts3/tts/modules/aligner/whisper_small.py +318 -0
- xinference/thirdparty/megatts3/tts/modules/ar_dur/ar_dur_predictor.py +362 -0
- xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/layers.py +64 -0
- xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/nar_tts_modules.py +73 -0
- xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/rel_transformer.py +403 -0
- xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/rot_transformer.py +649 -0
- xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/seq_utils.py +342 -0
- xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/transformer.py +767 -0
- xinference/thirdparty/megatts3/tts/modules/llm_dit/cfm.py +309 -0
- xinference/thirdparty/megatts3/tts/modules/llm_dit/dit.py +180 -0
- xinference/thirdparty/megatts3/tts/modules/llm_dit/time_embedding.py +44 -0
- xinference/thirdparty/megatts3/tts/modules/llm_dit/transformer.py +230 -0
- xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/diag_gaussian.py +67 -0
- xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/hifigan_modules.py +283 -0
- xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/seanet_encoder.py +38 -0
- xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/wavvae_v3.py +60 -0
- xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/conv.py +154 -0
- xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/lstm.py +51 -0
- xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/seanet.py +126 -0
- xinference/thirdparty/megatts3/tts/utils/audio_utils/align.py +36 -0
- xinference/thirdparty/megatts3/tts/utils/audio_utils/io.py +95 -0
- xinference/thirdparty/megatts3/tts/utils/audio_utils/plot.py +90 -0
- xinference/thirdparty/megatts3/tts/utils/commons/ckpt_utils.py +171 -0
- xinference/thirdparty/megatts3/tts/utils/commons/hparams.py +215 -0
- xinference/thirdparty/megatts3/tts/utils/text_utils/dict.json +1 -0
- xinference/thirdparty/megatts3/tts/utils/text_utils/ph_tone_convert.py +94 -0
- xinference/thirdparty/megatts3/tts/utils/text_utils/split_text.py +90 -0
- xinference/thirdparty/megatts3/tts/utils/text_utils/text_encoder.py +280 -0
- xinference/types.py +10 -0
- xinference/utils.py +54 -0
- xinference/web/ui/build/asset-manifest.json +6 -6
- xinference/web/ui/build/index.html +1 -1
- xinference/web/ui/build/static/css/main.0f6523be.css +2 -0
- xinference/web/ui/build/static/css/main.0f6523be.css.map +1 -0
- xinference/web/ui/build/static/js/main.58bd483c.js +3 -0
- xinference/web/ui/build/static/js/main.58bd483c.js.map +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/3bff8cbe9141f937f4d98879a9771b0f48e0e4e0dbee8e647adbfe23859e7048.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/4500b1a622a031011f0a291701e306b87e08cbc749c50e285103536b85b6a914.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/51709f5d3e53bcf19e613662ef9b91fb9174942c5518987a248348dd4e1e0e02.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/69081049f0c7447544b7cfd73dd13d8846c02fe5febe4d81587e95c89a412d5b.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/b8551e9775a01b28ae674125c688febe763732ea969ae344512e64ea01bf632e.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/bf2b211b0d1b6465eff512d64c869d748f803c5651a7c24e48de6ea3484a7bfe.json +1 -0
- xinference/web/ui/src/locales/en.json +2 -1
- xinference/web/ui/src/locales/zh.json +2 -1
- {xinference-1.4.1.dist-info → xinference-1.5.0.post1.dist-info}/METADATA +129 -114
- {xinference-1.4.1.dist-info → xinference-1.5.0.post1.dist-info}/RECORD +96 -60
- {xinference-1.4.1.dist-info → xinference-1.5.0.post1.dist-info}/WHEEL +1 -1
- xinference/web/ui/build/static/css/main.b494ae7e.css +0 -2
- xinference/web/ui/build/static/css/main.b494ae7e.css.map +0 -1
- xinference/web/ui/build/static/js/main.5ca4eea1.js +0 -3
- xinference/web/ui/build/static/js/main.5ca4eea1.js.map +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/0f0967acaec5df1d45b80010949c258d64297ebbb0f44b8bb3afcbd45c6f0ec4.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/27bcada3ee8f89d21184b359f022fc965f350ffaca52c9814c29f1fc37121173.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/68249645124f37d01eef83b1d897e751f895bea919b6fb466f907c1f87cebc84.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/e547bbb18abb4a474b675a8d5782d25617566bea0af8caa9b836ce5649e2250a.json +0 -1
- /xinference/web/ui/build/static/js/{main.5ca4eea1.js.LICENSE.txt → main.58bd483c.js.LICENSE.txt} +0 -0
- {xinference-1.4.1.dist-info → xinference-1.5.0.post1.dist-info}/entry_points.txt +0 -0
- {xinference-1.4.1.dist-info → xinference-1.5.0.post1.dist-info/licenses}/LICENSE +0 -0
- {xinference-1.4.1.dist-info → xinference-1.5.0.post1.dist-info}/top_level.txt +0 -0
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
xinference/__init__.py,sha256=nmTTrYbIpj964ZF6ojtgOM7E85JBOj1EyQbmYjbj1jw,915
|
|
2
2
|
xinference/_compat.py,sha256=YF-lS6tX06zkFi2oFS0yq_LBn4hX_8u0Ft0vKxGALwA,4238
|
|
3
|
-
xinference/_version.py,sha256=
|
|
3
|
+
xinference/_version.py,sha256=kH-zuUjm8RFim21mUz4V4oSx0QxYz1Z5ZHgSqvbgrEE,503
|
|
4
4
|
xinference/conftest.py,sha256=ZB7li77s4_H4ZEQpDo2PX-b4zrs8-bIpvh59P_CaSoo,9691
|
|
5
|
-
xinference/constants.py,sha256=
|
|
5
|
+
xinference/constants.py,sha256=tKdiCDPK1ilx-2fg-w_wf8OqTmwzfYOsg8MtqzXxT6I,4125
|
|
6
6
|
xinference/device_utils.py,sha256=ELsqvnjvz9wYthTyQFzKSV4mZsaASz6hj_IsfMmfMWc,4447
|
|
7
7
|
xinference/fields.py,sha256=0UtBFaDNzn1n9MRjyTkNrolsIML-TpZfudWOejqjni8,5245
|
|
8
8
|
xinference/isolation.py,sha256=gTU1em5fxg1m-7hxieWBMZvVkXZX4GZYmeT7XxXsYrU,2699
|
|
9
|
-
xinference/types.py,sha256=
|
|
10
|
-
xinference/utils.py,sha256=
|
|
9
|
+
xinference/types.py,sha256=C2sWumkGaof_rDIE-_P7Jgaua-RpWV5TvgGy6OL6SPo,13533
|
|
10
|
+
xinference/utils.py,sha256=xMuOg3LZhTUf7inEhm-HmXCIoly0pHaWtMKMnnf8XGk,2273
|
|
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=tfplJVY9hhkN_ZP8PlEyGvPkFoOX1iNdnDGFOGWKh4c,94888
|
|
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,23 +18,23 @@ xinference/client/__init__.py,sha256=Gc4HOzAy_1cic5kXlso7hahYgw89CKvZSJDicEU461k
|
|
|
18
18
|
xinference/client/common.py,sha256=iciZRs5YjM2gYsXnwACPMaiBZp4_XpawWwfym0Iyu40,1617
|
|
19
19
|
xinference/client/handlers.py,sha256=HYmQjG0BPK5PKcWVEDJqQz5iLjS8yjOq5j-HP_CAi_k,630
|
|
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=PS-WIsE4dRzoxDtVTFd-YBYe-LRhv8PRHN_eX_fgqmg,56620
|
|
22
22
|
xinference/core/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
23
23
|
xinference/core/cache_tracker.py,sha256=3ubjYCU5aZToSp2GEuzedECVrg-PR4kThTefrFUkb9g,6971
|
|
24
|
-
xinference/core/chat_interface.py,sha256=
|
|
24
|
+
xinference/core/chat_interface.py,sha256=GbjCZgxv9t14r7-DK7G2tB5Xhuze8R4nLiB92D4mBjo,31174
|
|
25
25
|
xinference/core/event.py,sha256=42F38H2WOl6aPxp2oxX6WNxHRRxbnvYRmbt4Ar7NP4U,1640
|
|
26
26
|
xinference/core/image_interface.py,sha256=5Iuoiw3g2TvgOYi3gRIAGApve2nNzfMPduRrBHvd1NY,13755
|
|
27
27
|
xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
|
|
28
|
-
xinference/core/model.py,sha256=
|
|
29
|
-
xinference/core/progress_tracker.py,sha256=
|
|
28
|
+
xinference/core/model.py,sha256=Vu3JjebUFmNZjZQyGOTTZv5KF_Jj1c6c_yCRYFVIhQM,45165
|
|
29
|
+
xinference/core/progress_tracker.py,sha256=CNCc1ZVscvp-JJznPTYJDPuis7ya6ZothZUIalDcxDo,6798
|
|
30
30
|
xinference/core/resource.py,sha256=aTV89dmuKxw5JnwQglRkA2Wxu1EBLM5WjmLxITSXYgs,1808
|
|
31
31
|
xinference/core/scheduler.py,sha256=0rbbaVYQ4g2W8P3tbbHonmFjFkllmoPB3OtkVPr5crA,15650
|
|
32
32
|
xinference/core/status_guard.py,sha256=VLhyqpobdclfyzcROqf4bmGDiKpuHllto316X3Z6Hrc,2860
|
|
33
|
-
xinference/core/supervisor.py,sha256=
|
|
33
|
+
xinference/core/supervisor.py,sha256=NrJEPGZhQWBkGkUdnng4-A1A01qS7MU7qS5BaBs6gVs,71454
|
|
34
34
|
xinference/core/utils.py,sha256=TpUHNFcA4pEXq084Quz-ilIccuDMUAsdLrEJxj0Zn6I,10414
|
|
35
|
-
xinference/core/worker.py,sha256=
|
|
35
|
+
xinference/core/worker.py,sha256=2SLMDDFtSST2IZl8fOlitZ1toXoyrzHJO4hOkaSDzEc,61874
|
|
36
36
|
xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
37
|
-
xinference/deploy/cmdline.py,sha256=
|
|
37
|
+
xinference/deploy/cmdline.py,sha256=Zn43Hl2tdQ5ac-PSO2hVodZSZOkCH2aLdlHy4B5Ptaw,50466
|
|
38
38
|
xinference/deploy/local.py,sha256=sO3BcpEH9oCF87CxWVA4AXAYcfHGnrcop40ew5NOA2g,3979
|
|
39
39
|
xinference/deploy/supervisor.py,sha256=68rB2Ey5KFeF6zto9YGbw3P8QLZmF_KSh1NwH_pNP4w,2986
|
|
40
40
|
xinference/deploy/utils.py,sha256=jdL7i2WV6u_BZ8IiE1d3YktvCARcB3ntzMQ5rHGD5DM,6756
|
|
@@ -42,11 +42,11 @@ xinference/deploy/worker.py,sha256=VQ71ClWpeGsyFgDmcOes2ub1cil10cBjhFLHYeuVwC4,2
|
|
|
42
42
|
xinference/deploy/test/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
43
43
|
xinference/deploy/test/test_cmdline.py,sha256=ozgVyvaa_AxRDbApu4o3qzOfVfF1wflMNtsJbudUwb8,9801
|
|
44
44
|
xinference/model/__init__.py,sha256=bCEwvKjoazBW8QZ5C5Hpfd5v_VTbWpXvo8IB9d4Qs70,1127
|
|
45
|
-
xinference/model/core.py,sha256=
|
|
46
|
-
xinference/model/utils.py,sha256=
|
|
45
|
+
xinference/model/core.py,sha256=FKiT0D2-FGbxLtaf4C01Yrn8t3n6AYHXGY9WowycxZc,5057
|
|
46
|
+
xinference/model/utils.py,sha256=xsu1TIj2ATyA1h2okEl2rdtdjytFsFCDnwLgPdd_KjQ,14947
|
|
47
47
|
xinference/model/audio/__init__.py,sha256=KasWsaNPeij6sGpHKqXaUc_bxUw1yYbD7-fwxkcoAVE,3731
|
|
48
48
|
xinference/model/audio/chattts.py,sha256=ny3DZTCTt2MzdkLw994_QHZ_4qIEUZcNexNJkCejCyo,4998
|
|
49
|
-
xinference/model/audio/core.py,sha256=
|
|
49
|
+
xinference/model/audio/core.py,sha256=CSpzGdThG5Ic5qJgR9DOFD-T1QGU8HBNJITJSVPBDT0,8041
|
|
50
50
|
xinference/model/audio/cosyvoice.py,sha256=vw7OR2t7zNimQn3Q74iiL1-2en5o6gvdcZsDgkmYpy4,7796
|
|
51
51
|
xinference/model/audio/custom.py,sha256=8GXBRmTtR-GY03-E91nlRGTIuabCRzlt20ecU6Un6Y8,4985
|
|
52
52
|
xinference/model/audio/f5tts.py,sha256=RyfEYVvKhV7JygIv4F45C8wBr-u0mx9WpXj3gIOtL7o,6809
|
|
@@ -54,29 +54,30 @@ xinference/model/audio/f5tts_mlx.py,sha256=SbYIo1C3EfZ8L30P7OTx0Dx7KuXIIpQKf8uZq
|
|
|
54
54
|
xinference/model/audio/fish_speech.py,sha256=U1NtEhQFtzVYZ0vpx10EqBnqUz-hmx1ZTAzD9OSPskQ,6767
|
|
55
55
|
xinference/model/audio/funasr.py,sha256=65z7U7_F14CCP-jg6BpeY3_49FK7Y5OCRSzrhhsklCg,4075
|
|
56
56
|
xinference/model/audio/kokoro.py,sha256=7gqMqsW9NW3xm9zOXbqB4y_1UmMnI5JCub14K3iyLL4,3729
|
|
57
|
+
xinference/model/audio/megatts.py,sha256=fA2_vbEZ1ggIh2xSGacnyp72Kn2TyQGfjxFlO_w-oGw,3369
|
|
57
58
|
xinference/model/audio/melotts.py,sha256=lJdOsce2mMOTQIslv6xq1JTEO7vC6Q9ga2xjY-_E7uw,3493
|
|
58
|
-
xinference/model/audio/model_spec.json,sha256=
|
|
59
|
-
xinference/model/audio/model_spec_modelscope.json,sha256=
|
|
59
|
+
xinference/model/audio/model_spec.json,sha256=vYxBd1ZQ6eanRMEFcKn0bUXo_dyxxhXHiYKZejrk8Ao,11126
|
|
60
|
+
xinference/model/audio/model_spec_modelscope.json,sha256=gc5o9kMLmo5vEeP7A1DXwvMoOclS5I2M7S7QP8UyBr0,3706
|
|
60
61
|
xinference/model/audio/utils.py,sha256=fnnQfZlhH6DRw6beXPUIO28u6qu2GgCONrWDIsTCNkw,1591
|
|
61
62
|
xinference/model/audio/whisper.py,sha256=NePQOYy2CnVqi7g6uY9hq5tlUIxZ995FOIOPsPZCfJ8,9058
|
|
62
63
|
xinference/model/audio/whisper_mlx.py,sha256=zBuCd7GUlsN9FC_-J11gqIkOCicihfbqxoabiXTvH2Q,7237
|
|
63
64
|
xinference/model/embedding/__init__.py,sha256=1GmvQsbeeVUT-VRaRGetf8UT4RQgLWIzfp5kfX5jw-k,3567
|
|
64
|
-
xinference/model/embedding/core.py,sha256=
|
|
65
|
+
xinference/model/embedding/core.py,sha256=W4xQP3zCZLnWqSc__VM6xm8pUxFON49o-JXhAIZkzVY,32719
|
|
65
66
|
xinference/model/embedding/custom.py,sha256=757KncqhsOWVypHZFtuhBP_xy-UTNaFdy0BuZRfuIV8,3848
|
|
66
67
|
xinference/model/embedding/model_spec.json,sha256=EqoR3mubGwCRhAiG6airmS1i881MAxRcwG0FkTyODjs,7233
|
|
67
68
|
xinference/model/embedding/model_spec_modelscope.json,sha256=XGXKaB0sI-pDuboCW39AIugRuDFNvQE6hNhp67uoKsA,6414
|
|
68
69
|
xinference/model/embedding/utils.py,sha256=t_y-7TrYenJKzX3p8e8KWXyC66u7Kd7lMvSzEOolnZw,790
|
|
69
70
|
xinference/model/flexible/__init__.py,sha256=DUAfq9vaiXOfUJfP2WRfqDmGfMtKMqRE-wLETaJw4_w,1718
|
|
70
|
-
xinference/model/flexible/core.py,sha256=
|
|
71
|
+
xinference/model/flexible/core.py,sha256=gxeVvKgiSiD7NKLw4FtmyPtWtSx6puW_W0TLJa9H4GQ,7363
|
|
71
72
|
xinference/model/flexible/utils.py,sha256=_GlEarRHKPAxT7o6N39VOd9sB580zKzdSktqjbdrNig,1145
|
|
72
73
|
xinference/model/flexible/launchers/__init__.py,sha256=X8w_2hKuQ9H3f90XYK7H_AQU4J8lHQdEeUNBZcdqso8,704
|
|
73
74
|
xinference/model/flexible/launchers/image_process_launcher.py,sha256=APbbHls0N9DpLFL6_qTexuc5o6bQAvdgJEAZWU4clyw,2510
|
|
74
75
|
xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRUGhulP4PRJ4fZEJ2D9cfv7lcC2qJBoDE,2012
|
|
75
76
|
xinference/model/image/__init__.py,sha256=80HBIbKh6lh-BgNaTo6k0TxxKjdG30bwHAdCiwVk6wk,3198
|
|
76
|
-
xinference/model/image/core.py,sha256=
|
|
77
|
+
xinference/model/image/core.py,sha256=SYlUS-aTI3y5LvmWXivdEV5HbjY1Mpe-_kXge8E_4RE,13079
|
|
77
78
|
xinference/model/image/custom.py,sha256=5gjujQpJVTJ-pVB5LzBo4-bWKKOHzFlRaoRKJ_CuIUg,3769
|
|
78
|
-
xinference/model/image/model_spec.json,sha256=
|
|
79
|
-
xinference/model/image/model_spec_modelscope.json,sha256=
|
|
79
|
+
xinference/model/image/model_spec.json,sha256=BvH1A1G8lpa_NuXi8XPJSA5E4ZOdnN7f4vJm1acgSBU,9904
|
|
80
|
+
xinference/model/image/model_spec_modelscope.json,sha256=MGnnOve5DXD3BryYRpkrhb8DAOdTEmaQxb_j488J6tA,8785
|
|
80
81
|
xinference/model/image/sdapi.py,sha256=Xgdtnvw4Xwj1Nc0cBoDo_ogH6E2mFJqLvX0jSxxgdnA,5936
|
|
81
82
|
xinference/model/image/utils.py,sha256=sJCxC8iCS7r9sVY4edKz2DYaZ-ebq_t9HjL7fZMS8z8,2344
|
|
82
83
|
xinference/model/image/ocr/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
@@ -86,52 +87,53 @@ xinference/model/image/scheduler/flux.py,sha256=GHlpPfU5UxsiQWNyvNe9SaVZceNg_2Ci
|
|
|
86
87
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
87
88
|
xinference/model/image/stable_diffusion/core.py,sha256=V3BaASwx8q1YERb4jhhaYEDFiwh3BuPAz8pVZTuktAQ,24717
|
|
88
89
|
xinference/model/image/stable_diffusion/mlx.py,sha256=GZsozzGB04NfHAdU9MI6gwWE1t_A-s_Ddn_ic8DlkKQ,7476
|
|
89
|
-
xinference/model/llm/__init__.py,sha256=
|
|
90
|
-
xinference/model/llm/core.py,sha256=
|
|
91
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
92
|
-
xinference/model/llm/llm_family.py,sha256=
|
|
90
|
+
xinference/model/llm/__init__.py,sha256=zcxTHIT0Fn-KJOpfTH6PXIqGBvuQInyPmxf1Su5_uL8,14281
|
|
91
|
+
xinference/model/llm/core.py,sha256=nQ6j-VH9hVypDbrbv84tpZUp9IRM-gGYbCbTYvznEoQ,8740
|
|
92
|
+
xinference/model/llm/llm_family.json,sha256=z1BnVqqu-YUFwUqWwO6uhNL88M50vLsLCceL0Nue3XI,402947
|
|
93
|
+
xinference/model/llm/llm_family.py,sha256=WXSqCY14TM38HujFU7bhPPGDZ47JRgqPvmFr_bG42Tk,39894
|
|
93
94
|
xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
|
|
94
|
-
xinference/model/llm/llm_family_modelscope.json,sha256=
|
|
95
|
+
xinference/model/llm/llm_family_modelscope.json,sha256=_l9Is2WQY1iR9F-BJz6x4KnpNmQAZPptVhDJsa0gSnQ,336562
|
|
95
96
|
xinference/model/llm/llm_family_openmind_hub.json,sha256=jl9pfbe5DztoxgEwKBxDk1Wd7TziTiJ48_Ie_lJdYjA,67872
|
|
96
97
|
xinference/model/llm/memory.py,sha256=GLNmXBI-AtMbuaJfEf50fnhN4rdbOZjLyT6L_Vjqa5g,10206
|
|
97
98
|
xinference/model/llm/reasoning_parser.py,sha256=Vms1G8I_ujakATjMxBbnWt0e-Zuky86HBqu05T1KiCU,6386
|
|
98
|
-
xinference/model/llm/utils.py,sha256=
|
|
99
|
+
xinference/model/llm/utils.py,sha256=XCpb-HmfUScecBDMII6xe4ZCy12X9-oymc6uLXLrEqM,34132
|
|
99
100
|
xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
100
|
-
xinference/model/llm/llama_cpp/core.py,sha256=
|
|
101
|
+
xinference/model/llm/llama_cpp/core.py,sha256=GiFP47xCJc2saNoTJXcIGaG3jvN5gQzuvDz77fHNo5I,23596
|
|
101
102
|
xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
103
|
xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc3ua8yPTI,19835
|
|
103
104
|
xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
104
|
-
xinference/model/llm/mlx/core.py,sha256=
|
|
105
|
+
xinference/model/llm/mlx/core.py,sha256=D4dvRLRbHhdGe-sQ-x25APy11y-ZxQtLLsIZKB1qpyI,24144
|
|
105
106
|
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
106
107
|
xinference/model/llm/sglang/core.py,sha256=NuwUIz-u3F6LRcB_DIn173jRbzJG8L-0E8ROqxEQoPM,24152
|
|
107
|
-
xinference/model/llm/transformers/__init__.py,sha256=
|
|
108
|
+
xinference/model/llm/transformers/__init__.py,sha256=RZKVW6N_S6XlFEFN0Krf_QcGkTUAj-k3-FXKC7aKDu0,1103
|
|
108
109
|
xinference/model/llm/transformers/chatglm.py,sha256=pIBPhR4cpeOR6ok5dKPK1633M1RMHCzrxB2fpDRaCuY,22426
|
|
109
110
|
xinference/model/llm/transformers/cogagent.py,sha256=JbIiqVW-S9MA3d4CN2DlI7-WDB_nuCbX8JSypR5TmVU,10080
|
|
110
111
|
xinference/model/llm/transformers/cogvlm2.py,sha256=I5Ftm0VYjbTAv5ZARZCo32Ggpw58PJfHs5B_nX_BIlU,15972
|
|
111
112
|
xinference/model/llm/transformers/cogvlm2_video.py,sha256=ZGkpC4x2uEtjwoMrLSODmAUYTjOeSNYxZi9VpQrpnhU,11857
|
|
112
113
|
xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
|
|
113
|
-
xinference/model/llm/transformers/core.py,sha256=
|
|
114
|
+
xinference/model/llm/transformers/core.py,sha256=YAFCKo0n8YrPmHL2Bi8JI8MB3_0sDCFGd-mXnrVjOXg,29805
|
|
114
115
|
xinference/model/llm/transformers/deepseek_v2.py,sha256=-RKlI3mhja730md4evQ2vfIxBnZD5vWyrgmg_3eovms,4096
|
|
115
116
|
xinference/model/llm/transformers/deepseek_vl.py,sha256=efbuqo5hKPZOVdiWkl2DXPd0Ml9bIAatcJNFVOeZSjQ,10453
|
|
116
117
|
xinference/model/llm/transformers/deepseek_vl2.py,sha256=2rgHBH9P_N0pMe17SeC7Ga_OATNYhdnZ64-VLNpRfWI,10990
|
|
117
|
-
xinference/model/llm/transformers/gemma3.py,sha256=
|
|
118
|
+
xinference/model/llm/transformers/gemma3.py,sha256=qemxbr_QHNhcSfqrJbdSepbhtuBLDLsoyPPQPoD6JsA,6803
|
|
118
119
|
xinference/model/llm/transformers/glm4v.py,sha256=goph2HhpV8gUm2t8-T1P-jTF2r_kPeH6QNe64lmlm0g,13871
|
|
119
120
|
xinference/model/llm/transformers/glm_edge_v.py,sha256=sedHB4iRd37UC__1MeXs33NLMQQKFYBIFf3A71rMEZU,8159
|
|
120
|
-
xinference/model/llm/transformers/intern_vl.py,sha256=
|
|
121
|
+
xinference/model/llm/transformers/intern_vl.py,sha256=hPykgXAP9fkogjCA3DPEVqHTCDV_357YM8OZ76sq698,19216
|
|
121
122
|
xinference/model/llm/transformers/internlm2.py,sha256=3mjRgqU0RgCFF0F46ieVH0NO2JCKGsQkmkoVlWJrh8E,3221
|
|
122
123
|
xinference/model/llm/transformers/minicpmv25.py,sha256=mr80-OlSlK_opSuAO3cz_QlkqujLr6V-OsTP0ebwpE8,6814
|
|
123
|
-
xinference/model/llm/transformers/minicpmv26.py,sha256=
|
|
124
|
+
xinference/model/llm/transformers/minicpmv26.py,sha256=t9y5H83H2iu5RgVg4yAarwvyDjuvZJs80uE44ZoonTo,14130
|
|
124
125
|
xinference/model/llm/transformers/omnilmm.py,sha256=2ZLW979ETqDDKo9CaTNwi9uLBZ2d6itHAYqjUA4jdro,5172
|
|
125
126
|
xinference/model/llm/transformers/opt.py,sha256=dkZFNwtw_sUuVaz9He6LWfEojRGfOQFQ5atvC5OYPuY,2429
|
|
126
|
-
xinference/model/llm/transformers/
|
|
127
|
-
xinference/model/llm/transformers/
|
|
127
|
+
xinference/model/llm/transformers/qwen-omni.py,sha256=y-mS1ubwHXo5v2mCs3P7D9P_vLcskzJut_o_KD0cvI4,10252
|
|
128
|
+
xinference/model/llm/transformers/qwen2_audio.py,sha256=e0uU5HFPesb1sszDJcG0WRd-v9GfJF7AbK7w847oYbg,6278
|
|
129
|
+
xinference/model/llm/transformers/qwen2_vl.py,sha256=DbSQGhay0uRFAZgEDDLwa4fBYCKl04NBAmhVezQxJmY,9269
|
|
128
130
|
xinference/model/llm/transformers/qwen_vl.py,sha256=LG19qJW30bFiZOS-t9OM3JP6K1KCLj_Sv3nKSCLvyts,14058
|
|
129
131
|
xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
|
|
130
132
|
xinference/model/llm/transformers/utils.py,sha256=KETjuVR_RpF--fno0KxT068fD1v4REFhe-0wy_sCwRs,19584
|
|
131
133
|
xinference/model/llm/transformers/yi_vl.py,sha256=iCdRLw-wizbU-qXXc8CT4DhC0Pt-uYg0vFwXEhAZjQg,8961
|
|
132
134
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
133
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
134
|
-
xinference/model/llm/vllm/distributed_executor.py,sha256=
|
|
135
|
+
xinference/model/llm/vllm/core.py,sha256=OHUxo5iqXzYg0zaUbT4iI5Xl1xl0A8CSRqsPdIjTbXs,45985
|
|
136
|
+
xinference/model/llm/vllm/distributed_executor.py,sha256=r_dftypuuLGYVf2Z6YmU6oCB9e3vLTi-rCegfVQRP1I,11669
|
|
135
137
|
xinference/model/llm/vllm/utils.py,sha256=LKOmwfFRrlSecawxT-uE39tC2RQbf1UIiSH9Uz90X6w,1313
|
|
136
138
|
xinference/model/llm/vllm/xavier/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
|
|
137
139
|
xinference/model/llm/vllm/xavier/allocator.py,sha256=SJ2eCOxF6CWTBZIP39FRxeK6fxIE8pRshOPnSRc72d4,2691
|
|
@@ -147,13 +149,13 @@ xinference/model/llm/vllm/xavier/transfer.py,sha256=2IbaiAhRnJMwa9qsMa5bowngqfjx
|
|
|
147
149
|
xinference/model/llm/vllm/xavier/test/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
|
|
148
150
|
xinference/model/llm/vllm/xavier/test/test_xavier.py,sha256=E7MDGTeGJMaULoIKez6lt2Vhz0w6FJlPyAELUjE0Chw,4890
|
|
149
151
|
xinference/model/rerank/__init__.py,sha256=wRpf1bOMfmAsuEKEGczMTB5fWEvuqltlJbIbRb-x8Ko,3483
|
|
150
|
-
xinference/model/rerank/core.py,sha256=
|
|
152
|
+
xinference/model/rerank/core.py,sha256=tKNKx8df8l4BIu77I4YFhx9l7bkFkcXEFx6rppRmXSM,14849
|
|
151
153
|
xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
|
|
152
154
|
xinference/model/rerank/model_spec.json,sha256=xUuJgJ8Ad4l2v8gEHxAdF_xoaSkA8j8AX51LhrjGEA0,2005
|
|
153
155
|
xinference/model/rerank/model_spec_modelscope.json,sha256=pf5hX4g0HdVjk2-ibHTl_mXHgQSSPYMTBOIwvnwMMkk,1616
|
|
154
156
|
xinference/model/rerank/utils.py,sha256=MJAFL47G3r3zLVGXKoi0QLTgU3Xr4Ffv72Ipn--psew,713
|
|
155
157
|
xinference/model/video/__init__.py,sha256=mRhOhzMxzcPFdA5j4niAxH_j9dXLtT9HmchuICrdET8,2160
|
|
156
|
-
xinference/model/video/core.py,sha256=
|
|
158
|
+
xinference/model/video/core.py,sha256=uyWjVPEN_AUUgnjV68BQw4RhNjO1OSg-6MBaRGa1AJM,6205
|
|
157
159
|
xinference/model/video/diffusers.py,sha256=P6GCKY5TFvLaMKyVBACXPUB-IVNo8-9HCRwfnqHPfoY,6982
|
|
158
160
|
xinference/model/video/model_spec.json,sha256=ubTQsEfEVIzHz7O8XZOSgo-PtQRLz_qctv965ChI7gY,1218
|
|
159
161
|
xinference/model/video/model_spec_modelscope.json,sha256=sjKMD-qRQMZ2NWTL7NxrclSljIVtwPFmgRKjObJmYtY,1198
|
|
@@ -480,6 +482,38 @@ xinference/thirdparty/matcha/utils/utils.py,sha256=u5u7cDnY4SPv1-Citj6A-J34lfMvc
|
|
|
480
482
|
xinference/thirdparty/matcha/utils/monotonic_align/__init__.py,sha256=_s_INV7vL_N9mhYtZADAk11CsSGP8kykn0fEyyM73ts,646
|
|
481
483
|
xinference/thirdparty/matcha/utils/monotonic_align/core.pyx,sha256=t2jJamslaDGkFZnWhdUQ0qs4T4gjntMOAXSPMtZaq0w,1236
|
|
482
484
|
xinference/thirdparty/matcha/utils/monotonic_align/setup.py,sha256=bf0d0cvGRaACC22qq0sqgZEBBhz4qzDlMqBxOyTKC2g,207
|
|
485
|
+
xinference/thirdparty/megatts3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
486
|
+
xinference/thirdparty/megatts3/tts/frontend_function.py,sha256=eYKdKDrBDOOPqoQsy_4hIDhP-Ldd9xR_sFTY563W5g4,8022
|
|
487
|
+
xinference/thirdparty/megatts3/tts/gradio_api.py,sha256=He55bVYjIHas37L7a6dMX2a_0VDm3U-SLY9xAyVaFSE,3918
|
|
488
|
+
xinference/thirdparty/megatts3/tts/infer_cli.py,sha256=v60BZuPGBrGRLoLS15cVpxfo_q3ynd--IH_WKcZBolM,12755
|
|
489
|
+
xinference/thirdparty/megatts3/tts/modules/aligner/whisper_small.py,sha256=EmYDpROl8v_-Ti6dbFHOtVY5sYM-220Mwb2Fq27Spt8,11771
|
|
490
|
+
xinference/thirdparty/megatts3/tts/modules/ar_dur/ar_dur_predictor.py,sha256=dNEYfXCSceChzmLxfEfaTSHx3Cop6JUwlqilXN_EYs4,17289
|
|
491
|
+
xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/layers.py,sha256=0rZqEyqvp4MZ35ZM3b6__y9knRUqiFUQcseKtKpuQ8g,2000
|
|
492
|
+
xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/nar_tts_modules.py,sha256=WCkTwYtNZyhSVqAM16jRsu_Q3gV8ENMHAzOjmi94TwM,2766
|
|
493
|
+
xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/rel_transformer.py,sha256=RLFJzR7fZ1ri-a4efZSD2xRa4h0CIxW49FOPfkrSIpE,16002
|
|
494
|
+
xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/rot_transformer.py,sha256=2fkrUjFh_oeyGZK4Qm4CxNyvXrJnWZDskwFhP5BgQsc,27953
|
|
495
|
+
xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/seq_utils.py,sha256=0gBz-GB3pxHfLgpr-sOawdxfZ1H9JWvzODAk3i-q7jk,12667
|
|
496
|
+
xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/transformer.py,sha256=b-Jb2jvod2s9qnvZhiDtfbnmdCNdZfg0S5Kkz8BamQw,32062
|
|
497
|
+
xinference/thirdparty/megatts3/tts/modules/llm_dit/cfm.py,sha256=7HzxZoM7z9ZAlEopvlChTKhSek287UQnuBHITTZuhJ0,10404
|
|
498
|
+
xinference/thirdparty/megatts3/tts/modules/llm_dit/dit.py,sha256=Ir5OWHmVUbddd8trAM3a1PK6WQqbtKeMxG2N59MlgrU,8036
|
|
499
|
+
xinference/thirdparty/megatts3/tts/modules/llm_dit/time_embedding.py,sha256=umZziWxnzEJWEiUCxrJVqfIbQZjoIaZ8ICg4KP17N2Y,1616
|
|
500
|
+
xinference/thirdparty/megatts3/tts/modules/llm_dit/transformer.py,sha256=FFpq4acsgzgrjuWcb0xniaeg6D51gOh8JG6B7SQGQfQ,8361
|
|
501
|
+
xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/diag_gaussian.py,sha256=8S-Es4aAYcEwZQxP9iz7VQIDymZ0FDVBGi4fp7gBeS8,2538
|
|
502
|
+
xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/hifigan_modules.py,sha256=WnUKqcSJ1b6CU4ymtCM5LLn7CmYlkGYMUjo6o4mXKWM,10095
|
|
503
|
+
xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/seanet_encoder.py,sha256=5TnntfXcShEB8Z15f15H9c06NIQxbAcMYmkAX2IsZvI,1506
|
|
504
|
+
xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/wavvae_v3.py,sha256=VPWh2v81Wwv2o-nXYICsXiiXOexG84qfcDv_15JrhUc,2287
|
|
505
|
+
xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/conv.py,sha256=2ysyEaoVWFtEBnyiFy0PP214dgyN-yQvoSgYt3BaxhE,6498
|
|
506
|
+
xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/lstm.py,sha256=6ox45v6xWAiptBrzQ2FHyDIUpMjqbJZN2nrVC1epQkw,2133
|
|
507
|
+
xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/seanet.py,sha256=qsFEhxvjiB18roqG3M0dwxz_FldgzkdelNhiYHjiUzQ,5808
|
|
508
|
+
xinference/thirdparty/megatts3/tts/utils/audio_utils/align.py,sha256=zg5-xpNJK0JwaHp98kNgwfGbHxySkU-dciNZ3gq96UA,1294
|
|
509
|
+
xinference/thirdparty/megatts3/tts/utils/audio_utils/io.py,sha256=eG2yPhaEf9VtZRwaRUqpeNKz-IFcwclrZgpSI4zW4Y8,3277
|
|
510
|
+
xinference/thirdparty/megatts3/tts/utils/audio_utils/plot.py,sha256=7NOwwH4TueidcqanoT-mwSFrm5VJqAjlqfO1HHNrC-w,3334
|
|
511
|
+
xinference/thirdparty/megatts3/tts/utils/commons/ckpt_utils.py,sha256=lnr8904B4Q4iUJQmlzWswXaMf-rTCzqwaqm0jH3gwsU,7919
|
|
512
|
+
xinference/thirdparty/megatts3/tts/utils/commons/hparams.py,sha256=BQm-QhTsK309Ft4AZ8CqsSzyublOrEoLVfc_v2VY6wA,8277
|
|
513
|
+
xinference/thirdparty/megatts3/tts/utils/text_utils/dict.json,sha256=pkqdGJBUidMBB3c_hs2h7-cCn1bBR7WTlKRBopZG9UI,1746
|
|
514
|
+
xinference/thirdparty/megatts3/tts/utils/text_utils/ph_tone_convert.py,sha256=hyloxYCU7JXWi-08pEe7tjh2AhNIuj3QJM4bQYnK0Eg,3568
|
|
515
|
+
xinference/thirdparty/megatts3/tts/utils/text_utils/split_text.py,sha256=7YeMXh7fpxRn0mHZyKDyA58B7lu8OhQ4m9DE6Aw_dZk,4150
|
|
516
|
+
xinference/thirdparty/megatts3/tts/utils/text_utils/text_encoder.py,sha256=LCbZcZ5qATkRDgfL1SgxCpjqv-TGYXcQzjXQeJ9FLvM,9371
|
|
483
517
|
xinference/thirdparty/melo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
484
518
|
xinference/thirdparty/melo/api.py,sha256=lC93OiqQrOABEI2ZbmReSPM4xRNzPw9mZ8YHDgTfenA,5108
|
|
485
519
|
xinference/thirdparty/melo/app.py,sha256=vlR_k9cmTjZ6E71qKomAxrYK8xJ4lZr-nqekX1oFiIw,3167
|
|
@@ -598,14 +632,14 @@ xinference/thirdparty/whisper/normalizers/english.json,sha256=Zgf5SL6YJNLhsvoiI8
|
|
|
598
632
|
xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc3yhvWzWuMhQzRnp2dM6IQdA,20868
|
|
599
633
|
xinference/web/ui/package-lock.json,sha256=Q3gwsjjCFtDjVg5Yk7s4jfMAZ1wiyFfS_TJCw3ECB64,762407
|
|
600
634
|
xinference/web/ui/package.json,sha256=iitsROb4-TLzxbOftXJqUGpp38TuPhzfLKy5n9THQYg,2081
|
|
601
|
-
xinference/web/ui/build/asset-manifest.json,sha256=
|
|
635
|
+
xinference/web/ui/build/asset-manifest.json,sha256=DRIzL170KftMLAnHjPx0iUWwbDW7gjvqyJwST1pE1Fs,453
|
|
602
636
|
xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
|
|
603
|
-
xinference/web/ui/build/index.html,sha256=
|
|
604
|
-
xinference/web/ui/build/static/css/main.
|
|
605
|
-
xinference/web/ui/build/static/css/main.
|
|
606
|
-
xinference/web/ui/build/static/js/main.
|
|
607
|
-
xinference/web/ui/build/static/js/main.
|
|
608
|
-
xinference/web/ui/build/static/js/main.
|
|
637
|
+
xinference/web/ui/build/index.html,sha256=4YY7u797xddX6d0grtAwJDwEqVAGsgCJ7F38ynNEtkA,650
|
|
638
|
+
xinference/web/ui/build/static/css/main.0f6523be.css,sha256=vR2US4TjBZi1ltn1p5SXFaISOf7fs4Tu0UGD3GhTPY0,5191
|
|
639
|
+
xinference/web/ui/build/static/css/main.0f6523be.css.map,sha256=5K7_iKz10aejOxbQvgjum9MjfngiMPTvskAjZcu0FCg,9786
|
|
640
|
+
xinference/web/ui/build/static/js/main.58bd483c.js,sha256=EFbx8vZo4TqRXrjKkWHvW_dBDgZAslnk8DzjVQbCcWA,1238296
|
|
641
|
+
xinference/web/ui/build/static/js/main.58bd483c.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
|
|
642
|
+
xinference/web/ui/build/static/js/main.58bd483c.js.map,sha256=yUo3v2OVsuzFiCFotsP5ExsOMoyu28Gvm1sU4JeQIAg,5228013
|
|
609
643
|
xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
|
|
610
644
|
xinference/web/ui/node_modules/.package-lock.json,sha256=2kL1sQ4ZuDQilki9DnRFFM8CxT13fyGl3chLK6i3DQY,760261
|
|
611
645
|
xinference/web/ui/node_modules/.cache/babel-loader/00012b59e7dc64a18400bdddb660faa295258241c0b9cd15c78cdba63b858ed8.json,sha256=FhiSQ9MQv6bT7TkLBlXXskoaG2HCKhsuTXXlkDV-pM4,668
|
|
@@ -1322,7 +1356,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/0ef7d86422625e70d16fd2570a123
|
|
|
1322
1356
|
xinference/web/ui/node_modules/.cache/babel-loader/0ef84bbb6b567d753a060bcd921cb1368bb26264f8d8691c64c75a3296d4847c.json,sha256=h9Xa_pI3tkGkJ_FR5R2Pu1C2emk5AcpQ8WC8HXERBBE,7078
|
|
1323
1357
|
xinference/web/ui/node_modules/.cache/babel-loader/0efd7db36d8479197fe4d6fd406d90fe9841d6018ce2b1b0f53f25e7438a88f9.json,sha256=6fOUQui_YSFHFDeWqK8nxrcJ7Z1VyTSyijVj7yimtgM,1530
|
|
1324
1358
|
xinference/web/ui/node_modules/.cache/babel-loader/0f0411593a7e8b8bff7f9a4b09f708c6eaafae8d359b73017a63c901658901d3.json,sha256=fgXt_imBl5ngvobBRLkdi7cI6AyW_07onWYdiyYdVP4,1732
|
|
1325
|
-
xinference/web/ui/node_modules/.cache/babel-loader/0f0967acaec5df1d45b80010949c258d64297ebbb0f44b8bb3afcbd45c6f0ec4.json,sha256=EeIz18CSV1c55EXYhDG79cYzsz5c3X0V2sx8jZ9JWWs,221866
|
|
1326
1359
|
xinference/web/ui/node_modules/.cache/babel-loader/0f0a073112ecc16a2813d386f82fe951dc0ce5a10473ff1024aacb58bf001cf7.json,sha256=wz-iXkh0-WT0xa1w7ZuzY2oK6-4vS5W815CkMygUE_A,1259
|
|
1327
1360
|
xinference/web/ui/node_modules/.cache/babel-loader/0f0adb2283a8f469d097a7a0ebb754624fa52414c83b83696c41f2e6a737ceda.json,sha256=gXeQ-hi5JIvzEIv3ZLo6A1MbFoNrcG99AsNekqoK1-0,79726
|
|
1328
1361
|
xinference/web/ui/node_modules/.cache/babel-loader/0f1103819797fe986c40db633df5e68feb9e429753a497815b0babfa25bbbc5f.json,sha256=BLBzQuF_qHwWXayWpBeCIxJn28euUGFuIdLxxygQKcE,1320
|
|
@@ -2519,7 +2552,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/27a83888ea03e1435c5fcf2a839d1
|
|
|
2519
2552
|
xinference/web/ui/node_modules/.cache/babel-loader/27aa20fa4b391d94993781fc2db2bd02bc2c52d4339c896071c7f3700275ee3f.json,sha256=8NhJ04Czzpcn2MvpH0J6WEd1Qgpr-AMZ770UaVubGHA,3051
|
|
2520
2553
|
xinference/web/ui/node_modules/.cache/babel-loader/27b02f7ffda35ec0b46b600fb85774afecd7dfc35186c3d195757fa4d6a09f00.json,sha256=4n6oGFWb7IBoqg3Ii1fwLbFzTmBs-_6-iBRxq142mHQ,1003
|
|
2521
2554
|
xinference/web/ui/node_modules/.cache/babel-loader/27b46a093d1036bafa386ef1b1700c5268b4ec9d482f24d068d7eff153702d92.json,sha256=l8bwFKql-A_DSzno-Puito93IrMtMtDpsygPTcBPI6Y,1621
|
|
2522
|
-
xinference/web/ui/node_modules/.cache/babel-loader/27bcada3ee8f89d21184b359f022fc965f350ffaca52c9814c29f1fc37121173.json,sha256=3NIIN4IzdwQhblfCs0k612RAtT5W9BwU2dIyYpft1XA,3315
|
|
2523
2555
|
xinference/web/ui/node_modules/.cache/babel-loader/27bdbe25deab8cf08f7fab8f05f8f26cf84a98809527a37986a4ab73a57ba96a.json,sha256=y2U21Pm0iFWG5V2JUtfJVvdr2IOWz5fQQQ9Zv5g9VtE,6290
|
|
2524
2556
|
xinference/web/ui/node_modules/.cache/babel-loader/27bf4c92317b4d0010661acda0366e6a696c8718f313622643a90b48914c45c0.json,sha256=DNSdT4gcNkeUz0of5gwVy_WTfDB5jmPGtK5zKWGi_Ec,1690
|
|
2525
2557
|
xinference/web/ui/node_modules/.cache/babel-loader/27c4da78437bebfe0f597bbcf66125127a64b098178f52be822935c324599019.json,sha256=2WxCeBlS8jglUQJ-GhPGxjCY_0WKwF9Cu6ofEEcYzcg,11888
|
|
@@ -3450,6 +3482,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/3bf094be9ec8ef269ba9fbbeb4156
|
|
|
3450
3482
|
xinference/web/ui/node_modules/.cache/babel-loader/3bf6477a313934761f2d73a5cc3f620c95b5613cf84d04fd24810b9b9a619d44.json,sha256=Zk5xeD11dpo8m8Zt98kGw0-FO3W4c4u6IJ_QvCDgcWw,1109
|
|
3451
3483
|
xinference/web/ui/node_modules/.cache/babel-loader/3bfce08bceb34f35cc6d51a4d45552e283bc6c807f0df481c67081e84e25c6c2.json,sha256=7XKIVpq1KekEiFYOi8pe-N4kJoIwEAqfs_1WWTKMpLQ,1284
|
|
3452
3484
|
xinference/web/ui/node_modules/.cache/babel-loader/3bfce7d92ffd20c55e40fcaab31f3e97c9f5faf05b33fa853f8a6da0f0aec0e6.json,sha256=t46wgT8xnf6LlJu7wR7twMaEhqP4MAR4owUniQb4_uQ,1295
|
|
3485
|
+
xinference/web/ui/node_modules/.cache/babel-loader/3bff8cbe9141f937f4d98879a9771b0f48e0e4e0dbee8e647adbfe23859e7048.json,sha256=KFaFvkfsg0O260UM-gZ8avCO5BnPPkl2rOg7xwChmRc,3808
|
|
3453
3486
|
xinference/web/ui/node_modules/.cache/babel-loader/3c016ef9f988abb4cd182282ab50cb1550d18de3340663acf8ede20d3e9c40ae.json,sha256=aIOjsCcX7RhKqUpLdzEwO8dOtXP_wGRn-0ptlRFQQ68,2210
|
|
3454
3487
|
xinference/web/ui/node_modules/.cache/babel-loader/3c03656d62ad375df9a614748d1280dbac6f17d3a3475805ca643f271231144c.json,sha256=p4Mq1kleEM1zxdCxZjwDAuEWTjFbBZ1IdpXP1XiwCbc,3504
|
|
3455
3488
|
xinference/web/ui/node_modules/.cache/babel-loader/3c038d1f6067eaf60e2506ddf0a15f7cf6264a2dbb1c04772743f035f7a587e7.json,sha256=gDczpUbvpNyEVn-81ZDgcAhqedNRuIeSOYJi8cFRx4k,1786
|
|
@@ -3867,6 +3900,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/44ed7449232ca2cabb3b1b61caa74
|
|
|
3867
3900
|
xinference/web/ui/node_modules/.cache/babel-loader/44f11f4c25eef6b69483eb3d2d0e3af50b98063be3159f21dfe98e1487a3dcc1.json,sha256=HnyjXPHmCNckJVK8hawkBT658JfKuHqIrAH8lv4YMT8,1054
|
|
3868
3901
|
xinference/web/ui/node_modules/.cache/babel-loader/44fac2260696e2e33a288988ac0f4be1e68c022b39094fea9b1d0cacbbda4516.json,sha256=n9LQa-c-s0hpDlgfeGWVhMSdlC7IIar9ySLlLfv6v0o,2620
|
|
3869
3902
|
xinference/web/ui/node_modules/.cache/babel-loader/44fc785693e391a288c7d4f0aeef4f8d40569380116ff45dacc5c25c16da7856.json,sha256=NGCbLPddAUUTLzF57dbxoxOGUzRzzJrRpA2r63w71CY,2005
|
|
3903
|
+
xinference/web/ui/node_modules/.cache/babel-loader/4500b1a622a031011f0a291701e306b87e08cbc749c50e285103536b85b6a914.json,sha256=40lEG5Vc63Kh-7yX-exwDuw1EfDp45P7T-k1vV4am6Y,2967
|
|
3870
3904
|
xinference/web/ui/node_modules/.cache/babel-loader/45072ce7067696a1e96e4a556b9c1fe2c635389cdf812af3b5df562edd08a7ef.json,sha256=mHuaYmmVjHeQZYsYGayTQ-zEQ0DwjqtBUIL6MWAHvPQ,1715
|
|
3871
3905
|
xinference/web/ui/node_modules/.cache/babel-loader/45087920f61e6871ceecfac851c3464a1f6d02d6d81ac3bc6a5e5dd75b6e5295.json,sha256=OHdDR3-JXfnTP7V7QZl5zh4E3m61Qpl4voTD_7mo8hw,1677
|
|
3872
3906
|
xinference/web/ui/node_modules/.cache/babel-loader/45098a43f738b97eed008798a131e567dfa2d86c4da04a8786f58ae31ef1f5bb.json,sha256=Syux8T9EFEzWT6ze8NC8RceICQ5JWqyQFLQkwykuJcA,1255
|
|
@@ -4462,6 +4496,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/51548cdcd9dc83266096e58c17eaa
|
|
|
4462
4496
|
xinference/web/ui/node_modules/.cache/babel-loader/5164d5a1d6d84d1a2a85ce7ee6fa37412ab29ebd7a082e99c3fae1ff08a6361b.json,sha256=eGYgrVI9UGPObQe1llxLC4VFumD9Yis_ZsbC901r71I,7775
|
|
4463
4497
|
xinference/web/ui/node_modules/.cache/babel-loader/5168c8f4e90b1a3b4eaf8aa78f1f40a4cdc07a6e586eb74d2cec8ca3524565e4.json,sha256=1RV7ErzSwTMQNnOWN7jnLWe5UUHZTXRDcLjAMT-a32A,1049
|
|
4464
4498
|
xinference/web/ui/node_modules/.cache/babel-loader/516f82615733837f2f595a67a462f702d003ad1485d2cc382c3a240f97436210.json,sha256=6ZrQa7wWoO90QjahGTj6OC2KqnN1sIC-IZ_yY9qw5uU,3019
|
|
4499
|
+
xinference/web/ui/node_modules/.cache/babel-loader/51709f5d3e53bcf19e613662ef9b91fb9174942c5518987a248348dd4e1e0e02.json,sha256=h0jp0n9YJ8c9v1019ldHZiZPlHq9RuH8oRwK3u4SRoE,5888
|
|
4465
4500
|
xinference/web/ui/node_modules/.cache/babel-loader/51730f62e3d10c5c48addb53713c2a6feffb47287ab47323faf98c5c0b2a26a9.json,sha256=1KsuqowIOEv4_M81j310dO9OmTpjzJ_MZu70ROwddHE,1169
|
|
4466
4501
|
xinference/web/ui/node_modules/.cache/babel-loader/5176b521b7eeed18755621b7f8938d5e87f8c29819906d55ccea85a0e496e078.json,sha256=CpwN9HnN9DGwG94Eh-0D20BupBtGI2-vxn-yfc-8oB0,1024
|
|
4467
4502
|
xinference/web/ui/node_modules/.cache/babel-loader/51791bea0919b1d5e43cad813dffb96ea165888a89806e748504f2112cf1c393.json,sha256=qkKnZHhjpfq4SCluwWiuvq9dJWCFBLhyZf9E0N9TuuI,1344
|
|
@@ -5548,7 +5583,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/6810a817d49260ed87fc90f87afbc
|
|
|
5548
5583
|
xinference/web/ui/node_modules/.cache/babel-loader/68124974ff7d9d4f9163c3450315bcbc8fa3e8acdc3c192cc64beb62768b5124.json,sha256=hO4DYdU0HCangqcrQx8wrbDNggUjGSSF-22GQ7BUbO0,2543
|
|
5549
5584
|
xinference/web/ui/node_modules/.cache/babel-loader/681a35bbe33939b2dea8fa4d96ffb2da54ae0ce28ea49c60ae6812f9f0abf0ec.json,sha256=IWyOTtZNctIapCTQ5FONn6Q8zgQhuSIw6QJpgxZbx7A,2208
|
|
5550
5585
|
xinference/web/ui/node_modules/.cache/babel-loader/6821f62fbb26771dd8b4f37f18619c8da681dd7e3a83e8514c690086eb9bda85.json,sha256=0T4PP4PpTPnVQXFISJm9aNK4x2-o1mwa59gtW3rVjWw,1408
|
|
5551
|
-
xinference/web/ui/node_modules/.cache/babel-loader/68249645124f37d01eef83b1d897e751f895bea919b6fb466f907c1f87cebc84.json,sha256=yx_-guUh0EnwPo3tfG5kHAYZ_5v3Da-MeX25SAX7BWE,5741
|
|
5552
5586
|
xinference/web/ui/node_modules/.cache/babel-loader/682650b170bbba3d71e0391256c77d259153ecf3ddb4521f637d9fb686642f3f.json,sha256=mD1zUpxFa25t5lVHh9DkWt88997Ym53wzV0xGHE4zjA,1911
|
|
5553
5587
|
xinference/web/ui/node_modules/.cache/babel-loader/682699a7b6f5e55fb2cda8cda9ac069e55bc28b7c7948fe857ff4b083919563f.json,sha256=z0FLrTkxKAf_QbWxHQonhYQo_2V3JRgX1FMeJzJmZp0,1026
|
|
5554
5588
|
xinference/web/ui/node_modules/.cache/babel-loader/682ec00dce973690e604566e9d2df6bff29a0d9da2483ee3b413bc39ab7193ef.json,sha256=PsXr_RWp9CszBK0Zu0YbH6YX93rs8AntpwnenlN6Iak,1492
|
|
@@ -5589,6 +5623,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/68e3e2f7e4cee68b3f64a9c0fd7e8
|
|
|
5589
5623
|
xinference/web/ui/node_modules/.cache/babel-loader/68eab16920bb0e9ee7787a3733c8c1814d7098330fbd362ae4559d458955b503.json,sha256=P9-6dlELdsYWNQe1MmgV57-tQEDGYIqg0SUHAncTZOg,1392
|
|
5590
5624
|
xinference/web/ui/node_modules/.cache/babel-loader/68f9417749ee545ca7d6e021e30940ab3ab31a9a7e2394b98c08234b19e0920e.json,sha256=RjsMvAa9Gg1geUB3EaE5wLdvZgRdNDuvKK6QyOlF8xk,1431
|
|
5591
5625
|
xinference/web/ui/node_modules/.cache/babel-loader/69015563be0fb910c2d24a453000ab4ef27086b46f40a1ffc5bbe012544b44c6.json,sha256=RSv-ZPWe2d6fHJbuKtAgbichkPbKuu6ksc2e8kyf5iA,1115
|
|
5626
|
+
xinference/web/ui/node_modules/.cache/babel-loader/69081049f0c7447544b7cfd73dd13d8846c02fe5febe4d81587e95c89a412d5b.json,sha256=LcvJIEse3CRPRl2-tHIAYUvNsmLTjIURA6u3LG4xBE4,225899
|
|
5592
5627
|
xinference/web/ui/node_modules/.cache/babel-loader/690a8dfa23b4e82554d7e69dc164ed87605c764c37285b7b90a9f594462e84ec.json,sha256=M_cKXnRyM4A-NrxFDToq2Nwti5bxLcVlpayk2-b5I28,491
|
|
5593
5628
|
xinference/web/ui/node_modules/.cache/babel-loader/690d02d49d0647563db57ba809fe63e7ef1e398c27d60e61e2f95c81f53f89d9.json,sha256=YyDB_SMYZQ6Lm380HxnyMmWsda43FYivnCmyQ995M5I,2536
|
|
5594
5629
|
xinference/web/ui/node_modules/.cache/babel-loader/691182c58e7360de46bb9fb98c7f2f3dd74d35032530f4615f1dab7a88556bf7.json,sha256=zK8wZWPqyY25YPgeywNIOuMKcekFicqhzWDFrUhd7Og,1174
|
|
@@ -9399,6 +9434,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/b84024367e25497f2c8138ddf6d64
|
|
|
9399
9434
|
xinference/web/ui/node_modules/.cache/babel-loader/b841ca803b4502a792489ad73297aa9dfdba66f298cef7bfd9e6a79d038305f1.json,sha256=pEh1_6vqs2LCJabWPh9sMZcMLU0ixG0M-ZR9bLGKxbo,1254
|
|
9400
9435
|
xinference/web/ui/node_modules/.cache/babel-loader/b84428be4437d7b6f23e1091070b17beb2ed0a0de3857a51c60cc0db0d6dfa91.json,sha256=16xAjwm4Kwdu_FqprZJ4geHT_0ajmYo9CADaE_Cw2cs,1220
|
|
9401
9436
|
xinference/web/ui/node_modules/.cache/babel-loader/b847399de707e46b815e7e722a25eb18952fd32f313af7647538ed7f6dc7c478.json,sha256=6ydN_kCgCSVN0xI9dfPn2zmMDJDrUxLrC9_NNTQ0ZE0,1267
|
|
9437
|
+
xinference/web/ui/node_modules/.cache/babel-loader/b8551e9775a01b28ae674125c688febe763732ea969ae344512e64ea01bf632e.json,sha256=4bAslDBWxSafPjwysSC9LBxwhJZykmPNJgLRRP3AxQ4,1635
|
|
9402
9438
|
xinference/web/ui/node_modules/.cache/babel-loader/b859cbd02593af8ff23305b1138748f928d7980c62691e532ba3f91fe456fdbc.json,sha256=eG_US8_i_Ublpge9XAatIE9Uz0owaVHfR7lKJOnuUt0,1305
|
|
9403
9439
|
xinference/web/ui/node_modules/.cache/babel-loader/b85e80c2a2b0b0624751e55c27b6610db1af59806d1343808910ffe53062f326.json,sha256=JrwNv_5UtQqkqzVDxJktnh3xyP2dbOq9f4g8eCeJBmc,1940
|
|
9404
9440
|
xinference/web/ui/node_modules/.cache/babel-loader/b86ba0ee2ab72f064c2db342ac077166919452235b2a5a97d39ef34f9baacbb4.json,sha256=iWl6OmYs6jKbe9mZ4hZ-PVAsNcRxej3suKLMx0EzEgo,2042
|
|
@@ -9710,6 +9746,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/bf19c4ff840fe0c4c7824124a01e6
|
|
|
9710
9746
|
xinference/web/ui/node_modules/.cache/babel-loader/bf1e20372f498d0d4d5137a2835318a5c5495bbfc87988f35a3352fdd46378ad.json,sha256=5QhvQrbArGtlILzHu_1hzH4FfRNz_FmudqVAVomq1zs,1708
|
|
9711
9747
|
xinference/web/ui/node_modules/.cache/babel-loader/bf2364b803aef2fbf0217e303f20708d6ebd164a67f8e90ac0cea8bb7a7809f2.json,sha256=93dUe6J9sQwjEeR2HWiLD15MitZZ-ek4ugGIrQ5hMiA,18168
|
|
9712
9748
|
xinference/web/ui/node_modules/.cache/babel-loader/bf2a4c47a43db0a2b62bcd330de62f7bd01695fb88823867f1be1ef16edac280.json,sha256=63tvGwrCW4jZeEhP1of2n6ROZtnYVgJAwBmL2SIssps,1784
|
|
9749
|
+
xinference/web/ui/node_modules/.cache/babel-loader/bf2b211b0d1b6465eff512d64c869d748f803c5651a7c24e48de6ea3484a7bfe.json,sha256=eUG-Fy_L7Yy_CJl-LsxIPao_wNO3KGbiA4eYspw2ye4,16987
|
|
9713
9750
|
xinference/web/ui/node_modules/.cache/babel-loader/bf3cb252685c44ac9720344a88feaac1dbaaeb2a725df61f179ab10ec58bf826.json,sha256=sPR3xjL1SR1vPbUnyPRKGs64XPmxVqE94DLX2pdy-Ew,2264
|
|
9714
9751
|
xinference/web/ui/node_modules/.cache/babel-loader/bf3cb6f5708297dfe199a36bd3e901c8e1252f7706c25083b6062f9fd3c90fb2.json,sha256=x19gVaIxvdoSqfrnmmrM1ZV_df-O78R1MXGumHgc9Hk,1135
|
|
9715
9752
|
xinference/web/ui/node_modules/.cache/babel-loader/bf523005ae83519f132dd4b6ed9efa0e7ac0653dfbb353bcbdd93d08a453bc9b.json,sha256=I9PQo_C7xB7dEdmx0rRoXk9N5QIqcMwfVMRdNGrIEo8,1437
|
|
@@ -11591,7 +11628,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/e53ea8b3917a7f5c0f11b2d4af656
|
|
|
11591
11628
|
xinference/web/ui/node_modules/.cache/babel-loader/e53ec75454da3674c031f875120b28d1e3d162fd640eb9cfb434a6e14d7e20ce.json,sha256=RnNeAXlA4HFm7hNBr7dZSr3_ZSNF2x_xruidsXOvR6w,8766
|
|
11592
11629
|
xinference/web/ui/node_modules/.cache/babel-loader/e5441ac0aeb7268daa1df2666421c3ef614f33bc0fd22cfc48bc86f555215cd9.json,sha256=Eu9_ENpsQddTv4kv0teN_RTyX3qvKwHcr1hA0oC0z44,1430
|
|
11593
11630
|
xinference/web/ui/node_modules/.cache/babel-loader/e5457ddd47db04666f75d92639756906bb85cc2a1fd6c431db8b8d62afdd5dac.json,sha256=5OF-JKw05P1sWayUUlWLCDdzJ2LGSdi44qEFMGwYZHI,1630
|
|
11594
|
-
xinference/web/ui/node_modules/.cache/babel-loader/e547bbb18abb4a474b675a8d5782d25617566bea0af8caa9b836ce5649e2250a.json,sha256=qNhXsBSfJH97HDnkFRjvzkotVFgaYP7ktbPVRVrCNZ8,16658
|
|
11595
11631
|
xinference/web/ui/node_modules/.cache/babel-loader/e547c36245be846b6236fe7913dac54733aa0014a5e6df2d514959151ba8a85d.json,sha256=kpSyGoAxXd-fBAM0YbT4TeKQ1Z4sw2EQb_4fPx0BAtI,1278
|
|
11596
11632
|
xinference/web/ui/node_modules/.cache/babel-loader/e548cc7bd73f3ae78b278f15236842d3a012c5ad54e7f51a409faf806921008a.json,sha256=RqJcEeojiYVAEfh4mAjoTW8-mykYVvVE9Ig63E-bkyg,1252
|
|
11597
11633
|
xinference/web/ui/node_modules/.cache/babel-loader/e54b36582ce597d2c19ae63da5aa6ecbc9b821cc44a5e4c46964a273dfa64ff2.json,sha256=uoj9z61zdPfpcn8hj0rxxbKsrQW7pltZ7qwSzG0a-ro,1497
|
|
@@ -15748,11 +15784,11 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15748
15784
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15749
15785
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15750
15786
|
xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
|
|
15751
|
-
xinference/web/ui/src/locales/en.json,sha256=
|
|
15752
|
-
xinference/web/ui/src/locales/zh.json,sha256=
|
|
15753
|
-
xinference-1.
|
|
15754
|
-
xinference-1.
|
|
15755
|
-
xinference-1.
|
|
15756
|
-
xinference-1.
|
|
15757
|
-
xinference-1.
|
|
15758
|
-
xinference-1.
|
|
15787
|
+
xinference/web/ui/src/locales/en.json,sha256=yXLbaCDzurwn0YIYjGbThkG9n-G5BPDpf10hndO3gnc,8993
|
|
15788
|
+
xinference/web/ui/src/locales/zh.json,sha256=smH85pmHLN7Vo3uunNRCo29mJaIkt-xlYYPbXZjlPWQ,8727
|
|
15789
|
+
xinference-1.5.0.post1.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
15790
|
+
xinference-1.5.0.post1.dist-info/METADATA,sha256=ZZFJ0tbki6Ba1ZtjnsAOGpinC0y_ZzAJOkXowuM5YY0,24840
|
|
15791
|
+
xinference-1.5.0.post1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
15792
|
+
xinference-1.5.0.post1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
15793
|
+
xinference-1.5.0.post1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
15794
|
+
xinference-1.5.0.post1.dist-info/RECORD,,
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
.container{cursor:pointer;display:block}.container,.descriptionCard{border-radius:20px;height:300px;position:relative;width:300px}.descriptionCard{left:-1px;padding:20px;top:-1px}.cardTitle{display:flex;justify-content:space-between}.iconButtonBox{align-items:center;display:flex}.drawerCard{min-height:100%;padding:20px 80px 0;position:relative;width:60vw}.p{-webkit-line-clamp:4;-webkit-box-orient:vertical;display:-webkit-box;font-size:14px;overflow:hidden;padding:0 10px;text-overflow:ellipsis;word-break:break-word}.pasteText{color:#1976d2;cursor:pointer;font-size:18px!important;margin-inline:10px}.pasteText:hover{color:#1976d2b3}.copyToCommandLine{color:#1976d2;cursor:pointer;font-size:16px!important}.copyToCommandLine:hover{color:#1976d2b3}.formContainer{height:80%;overflow:scroll;padding:0 10px 160px}.buttonsContainer{align-items:center;bottom:50px;display:flex;justify-content:space-between;left:100px;position:absolute;right:100px}.buttonContainer{background-color:initial;border-width:0;width:45%}.buttonItem{border:1px solid #e5e7eb;border-radius:4px;cursor:pointer;padding:5px;width:100%}.buttonItem:hover{border-color:#888}.instructionText{color:#666;font-size:12px;font-style:italic;margin:30px 0;text-align:center}.iconRow{bottom:20px;justify-content:space-between;left:20px;position:absolute;right:20px}.iconItem,.iconRow{align-items:center;display:flex}.iconItem{flex-direction:column;margin:20px}.boldIconText{font-size:1.2em;font-weight:700}.muiIcon{font-size:1.5em}.smallText{font-size:.8em}.dialogBox{height:607px;margin:32px;overflow-x:scroll;width:1241px}.dialogTitle{display:flex;justify-content:space-between;padding:20px 20px 7px}.dialogTitle-model_name{font-size:18px;font-weight:700}.pathBox{cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:160px}.pathBox2{width:300px}.empty{color:#555;font-size:20px;left:50%;position:absolute;top:30%;-webkit-transform:translate(-50%);transform:translate(-50%)}.deleteDialog{align-items:center;display:flex}.warningIcon{color:#ed6c02;margin-right:10px}.jsonDialog{border-radius:8px;color:#000;display:flex;flex-direction:column;padding:10px 30px}.jsonDialog-title{align-items:center;display:flex;justify-content:space-between;margin:10px 0 20px}.title-name{font-size:16px;font-weight:700}.main-box{height:500px;width:700px}.but-box{display:flex;justify-content:end;margin-top:20px}.drawer{bottom:0;left:0;opacity:0;position:fixed;right:0;top:0;transition:visibility .3s ease,opacity .3s ease;visibility:hidden;z-index:1000}.drawer.open{opacity:1;visibility:visible}.drawer-overlay{background-color:rgba(0,0,0,.5);left:0;z-index:999}.drawer-content,.drawer-overlay{bottom:0;position:absolute;right:0;top:0}.drawer-content{background-color:#fff;box-shadow:-2px 0 10px rgba(0,0,0,.1);overflow-y:auto;-webkit-transform:translateX(100%);transform:translateX(100%);transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;z-index:1000}.drawer.open .drawer-content{-webkit-transform:translateX(0);transform:translateX(0)}.copyText{color:#666;cursor:pointer;font-size:14px!important}.copyText:hover{color:#1976d2}.formBox{max-height:80vh;max-width:50vw;min-width:50vw;overflow:auto;padding:40px 20px 0 0;position:relative;transition:all .4s ease-in-out}.broaden{max-width:100%;min-width:100%;padding-right:0}.show-json{align-items:center;display:flex;right:60px;top:90px}.icon,.show-json{position:absolute}.icon{cursor:pointer;margin-left:20px;right:-40px}.icon:hover{color:#1976d2}.arrow{font-size:24px!important}.jsonBox{min-height:80vh;position:relative;transition:all .4s ease-in-out;width:100%}.hide{overflow:hidden;-webkit-transform:translate(30vw);transform:translate(30vw);width:0}.checkboxWrapper{align-items:center;display:flex;flex-wrap:wrap;width:100%}.jsonBox-header{align-items:center;display:flex;justify-content:space-between}.jsonBox-title{font-weight:700;line-height:40px}.textarea{background-color:initial;border:1px solid #ddd;border-radius:5px;color:#666;height:calc(100% - 40px);padding:5px 10px;resize:none;width:100%}.addBtn{margin-left:20px!important}.item{border:1px solid #ddd;border-radius:10px;margin:10px 50px 0;overflow:hidden;padding:20px;position:relative}.item:hover .deleteBtn{-webkit-transform:translateX(-50px);transform:translateX(-50px)}.deleteBtn{background-color:#1976d2;border-radius:25px;height:50px;line-height:70px;position:absolute;right:20px;text-align:center;top:calc(50% - 25px);-webkit-transform:translateX(80px);transform:translateX(80px);transition:all .3s ease-in-out;width:50px}.deleteBtn:hover{box-shadow:0 0 10px #aaa;cursor:pointer}.deleteIcon{color:#fff;font-size:28px!important}.chat_template_box{align-items:start;display:flex;gap:10px}.chat_template_test{width:30%}.chat_template_test_mainBox{border:1px solid #ccc;border-radius:4px;height:137px;overflow:scroll;padding:10px}.chat_template_test_tip{color:rgba(0,0,0,.6);font-size:10px;margin:4px 14px 0}.test_res_box{border:1px solid #ddd;border-radius:4px;margin-top:5px;min-height:55px;padding:10px}.css-19qh8xo-MuiInputBase-input-MuiOutlinedInput-input.Mui-disabled{-webkit-text-fill-color:#000!important}
|
|
2
|
-
/*# sourceMappingURL=main.b494ae7e.css.map*/
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"static/css/main.b494ae7e.css","mappings":"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","sources":["scenes/launch_model/styles/modelCardStyle.css","components/copyComponent/style.css","scenes/register_model/styles/registerModelStyle.css"],"sourcesContent":[".container {\n display: block;\n position: relative;\n width: 300px;\n height: 300px;\n cursor: pointer;\n border-radius: 20px;\n}\n.descriptionCard {\n position: relative;\n top: -1px;\n left: -1px;\n width: 300px;\n height: 300px;\n padding: 20px;\n border-radius: 20px;\n}\n.cardTitle {\n display: flex;\n justify-content: space-between;\n}\n.iconButtonBox {\n display: flex;\n align-items: center;\n}\n.drawerCard {\n position: relative;\n padding: 20px 80px 0;\n min-height: 100%;\n width: 60vw;\n}\n.p {\n display: -webkit-box;\n -webkit-line-clamp: 4;\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n word-break: break-word;\n font-size: 14px;\n padding: 0px 10px;\n}\n.pasteText {\n font-size: 18px !important;\n color: #1976d2;\n cursor: pointer;\n margin-inline: 10px;\n}\n.pasteText:hover {\n color: #1976d2b3;\n}\n.copyToCommandLine {\n font-size: 16px !important;\n color: #1976d2;\n cursor: pointer;\n}\n.copyToCommandLine:hover {\n color: #1976d2b3;\n}\n.formContainer {\n height: 80%;\n overflow: scroll;\n padding: 0 10px;\n padding-bottom: 160px;\n}\n.buttonsContainer {\n position: absolute;\n bottom: 50px;\n left: 100px;\n right: 100px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n.buttonContainer {\n width: 45%;\n border-width: 0px;\n background-color: transparent;\n}\n.buttonItem {\n cursor: pointer;\n width: 100%;\n padding: 5px;\n border-radius: 4px;\n border: 1px solid #e5e7eb;\n border-width: 1px;\n border-color: #e5e7eb;\n}\n.buttonItem:hover {\n border-color: #888;\n}\n.instructionText {\n font-size: 12px;\n color: #666666;\n font-style: italic;\n margin: 30px 0;\n text-align: center;\n}\n.iconRow {\n position: absolute;\n bottom: 20px;\n left: 20px;\n right: 20px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n.iconItem {\n display: flex;\n flex-direction: column;\n align-items: center;\n margin: 20px;\n}\n.boldIconText {\n font-weight: bold;\n font-size: 1.2em;\n}\n.muiIcon {\n font-size: 1.5em;\n}\n.smallText {\n font-size: 0.8em;\n}\n.dialogBox {\n width: 1241px;\n height: 607px;\n margin: 32px;\n overflow-x: scroll;\n}\n.dialogTitle {\n display: flex;\n justify-content: space-between;\n padding: 20px 20px 7px;\n}\n.dialogTitle-model_name {\n font-size: 18px;\n font-weight: 700;\n}\n.pathBox {\n width: 160px;\n cursor: pointer;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.pathBox2 {\n width: 300px;\n}\n.empty {\n position: absolute;\n left: 50%;\n top: 30%;\n font-size: 20px;\n color: #555;\n transform: translate(-50%, 0);\n}\n.deleteDialog {\n display: flex;\n align-items: center;\n}\n.warningIcon {\n margin-right: 10px;\n color: rgb(237, 108, 2);\n}\n.jsonDialog {\n display: flex;\n flex-direction: column;\n padding: 10px 30px;\n color: #000;\n border-radius: 8px;\n}\n.jsonDialog-title {\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin: 10px 0 20px 0;\n}\n.title-name {\n font-size: 16px;\n font-weight: 700;\n}\n.main-box {\n width: 700px;\n height: 500px;\n}\n.but-box {\n display: flex;\n justify-content: end;\n margin-top: 20px;\n}\n.drawer {\n z-index: 1000;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n visibility: hidden;\n opacity: 0;\n transition: visibility 0.3s ease, opacity 0.3s ease;\n}\n.drawer.open {\n visibility: visible;\n opacity: 1;\n}\n.drawer-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background-color: rgba(0, 0, 0, 0.5);\n z-index: 999;\n}\n.drawer-content {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n background-color: white;\n z-index: 1000;\n box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);\n transition: transform 0.3s ease;\n transform: translateX(100%);\n overflow-y: auto;\n}\n.drawer.open .drawer-content {\n transform: translateX(0);\n}\n",".copyText {\n font-size: 14px !important;\n color: #666;\n cursor: pointer;\n}\n\n.copyText:hover {\n color: #1976d2;\n}\n",".formBox {\n position: relative;\n max-width: 50vw;\n min-width: 50vw;\n max-height: 80vh;\n overflow: auto;\n padding: 40px 20px 0 0;\n transition: all 0.4s ease-in-out;\n}\n\n.broaden {\n max-width: 100%;\n min-width: 100%;\n padding-right: 0;\n}\n\n.show-json {\n display: flex;\n align-items: center;\n position: absolute;\n top: 90px;\n right: 60px;\n}\n\n.icon {\n position: absolute;\n right: -40px;\n cursor: pointer;\n margin-left: 20px;\n}\n\n.icon:hover {\n color: #1976d2;\n}\n\n.arrow {\n font-size: 24px !important;\n}\n\n.jsonBox {\n position: relative;\n min-height: 80vh;\n width: 100%;\n transition: all 0.4s ease-in-out;\n}\n\n.hide {\n width: 0;\n transform: translate(30vw, 0);\n overflow: hidden;\n}\n\n.checkboxWrapper {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n width: 100%;\n}\n\n.jsonBox-header {\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.jsonBox-title {\n line-height: 40px;\n font-weight: 700;\n}\n\n.textarea {\n width: 100%;\n height: calc(100% - 40px);\n padding: 5px 10px;\n border: 1px solid #ddd;\n border-radius: 5px;\n resize: none;\n color: #666;\n background-color: transparent;\n}\n\n.addBtn {\n margin-left: 20px !important;\n}\n\n.item {\n position: relative;\n border: 1px solid #ddd;\n margin: 10px 50px 0;\n padding: 20px;\n border-radius: 10px;\n overflow: hidden;\n}\n\n.item:hover .deleteBtn {\n transform: translateX(-50px);\n}\n\n.deleteBtn {\n position: absolute;\n right: 20px;\n top: calc(50% - 25px);\n width: 50px;\n height: 50px;\n transform: translateX(80px);\n text-align: center;\n line-height: 70px;\n border-radius: 25px;\n background-color: #1976d2;\n transition: all 0.3s ease-in-out;\n}\n\n.deleteBtn:hover {\n cursor: pointer;\n box-shadow: 0 0 10px #aaa;\n}\n\n.deleteIcon {\n font-size: 28px !important;\n color: #fff;\n}\n\n.chat_template_box {\n display: flex;\n align-items: start;\n gap: 10px;\n}\n\n.chat_template_test {\n width: 30%;\n}\n\n.chat_template_test_mainBox {\n height: 137px;\n padding: 10px;\n border: 1px solid #ccc;\n border-radius: 4px;\n overflow: scroll;\n}\n\n.chat_template_test_tip {\n font-size: 10px;\n margin: 4px 14px 0;\n color: rgba(0, 0, 0, 0.6);\n}\n\n.test_res_box {\n border: 1px solid #ddd;\n min-height: 55px;\n padding: 10px;\n margin-top: 5px;\n border-radius: 4px;\n}\n\n.css-19qh8xo-MuiInputBase-input-MuiOutlinedInput-input.Mui-disabled {\n -webkit-text-fill-color: #000 !important;\n}\n"],"names":[],"sourceRoot":""}
|