xinference 0.9.2__py3-none-any.whl → 0.9.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of xinference might be problematic. Click here for more details.
- xinference/_version.py +3 -3
- xinference/api/restful_api.py +111 -13
- xinference/client/restful/restful_client.py +2 -1
- xinference/conftest.py +18 -15
- xinference/constants.py +2 -0
- xinference/core/image_interface.py +252 -0
- xinference/core/supervisor.py +3 -10
- xinference/deploy/cmdline.py +69 -4
- xinference/deploy/local.py +1 -1
- xinference/deploy/supervisor.py +1 -1
- xinference/model/image/__init__.py +13 -7
- xinference/model/image/core.py +17 -1
- xinference/model/llm/__init__.py +2 -0
- xinference/model/llm/ggml/llamacpp.py +1 -5
- xinference/model/llm/llm_family.json +98 -13
- xinference/model/llm/llm_family_modelscope.json +98 -7
- xinference/model/llm/pytorch/chatglm.py +2 -1
- xinference/model/llm/pytorch/internlm2.py +2 -1
- xinference/model/llm/sglang/__init__.py +13 -0
- xinference/model/llm/sglang/core.py +365 -0
- xinference/model/llm/utils.py +35 -12
- xinference/model/llm/vllm/core.py +17 -0
- xinference/web/ui/build/asset-manifest.json +3 -3
- xinference/web/ui/build/index.html +1 -1
- xinference/web/ui/build/static/js/{main.78829790.js → main.66b1c4fb.js} +3 -3
- xinference/web/ui/build/static/js/main.66b1c4fb.js.map +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/0bd70b1ecf307e2681318e864f4692305b6350c8683863007f4caf2f9ac33b6e.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/3e055de705e397e1d413d7f429589b1a98dd78ef378b97f0cdb462c5f2487d5e.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/60c4b98d8ea7479fb0c94cfd19c8128f17bd7e27a1e73e6dd9adf6e9d88d18eb.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/7e094845f611802b024b57439cbf911038169d06cdf6c34a72a7277f35aa71a4.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/b400cfc9db57fa6c70cd2bad055b73c5079fde0ed37974009d898083f6af8cd8.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/e1d9b2ae4e1248658704bc6bfc5d6160dcd1a9e771ea4ae8c1fed0aaddeedd29.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/fd4a8ae5d192331af1bedd1d2d70efcc569708ee6cc4cb479b225d059482aa81.json +1 -0
- {xinference-0.9.2.dist-info → xinference-0.9.4.dist-info}/METADATA +8 -5
- {xinference-0.9.2.dist-info → xinference-0.9.4.dist-info}/RECORD +40 -37
- {xinference-0.9.2.dist-info → xinference-0.9.4.dist-info}/WHEEL +1 -1
- xinference/web/ui/build/static/js/main.78829790.js.map +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/22858de5265f2d279fca9f2f54dfb147e4b2704200dfb5d2ad3ec9769417328f.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/30670751f55508ef3b861e13dd71b9e5a10d2561373357a12fc3831a0b77fd93.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/396f7ce6ae6900bfdb00e369ade8a05045dc1df025610057ff7436d9e58af81c.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/5282ee05e064b3a80bc991e9003ddef6a4958471d8f4fc65589dc64553365cdd.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/83beb31daa7169fb0057453d4f86411f1effd3e3f7af97472cbd22accbfc65bb.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/ddf597663270471b31251b2abb36e3fa093efe20489387d996f993d2c61be112.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/e8687f75d2adacd34852b71c41ca17203d6fb4c8999ea55325bb2939f9d9ea90.json +0 -1
- /xinference/web/ui/build/static/js/{main.78829790.js.LICENSE.txt → main.66b1c4fb.js.LICENSE.txt} +0 -0
- {xinference-0.9.2.dist-info → xinference-0.9.4.dist-info}/LICENSE +0 -0
- {xinference-0.9.2.dist-info → xinference-0.9.4.dist-info}/entry_points.txt +0 -0
- {xinference-0.9.2.dist-info → xinference-0.9.4.dist-info}/top_level.txt +0 -0
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
xinference/__init__.py,sha256=0LgIveLP6CXxoIaSrxhlFyOh0lOqPgJBVcBe0tkWJjc,987
|
|
2
2
|
xinference/_compat.py,sha256=SQAjZMGxtBIce45qtW7ob7RWzA0zhv2yB3AxT0rb0uU,1778
|
|
3
|
-
xinference/_version.py,sha256=
|
|
4
|
-
xinference/conftest.py,sha256=
|
|
5
|
-
xinference/constants.py,sha256=
|
|
3
|
+
xinference/_version.py,sha256=NA8Gd_eyeZ4pGEW181mxcRG1Ae6xSp0HasvpDwAg4iQ,497
|
|
4
|
+
xinference/conftest.py,sha256=soSjfLdFYvMleUaSL4cZKPtP1WdlAb7q3Sm2pX4aTog,9523
|
|
5
|
+
xinference/constants.py,sha256=Bu_fOJUGAvvqF_6FY5OzOHl7fQ1Nomek3LY17xr9oz4,2882
|
|
6
6
|
xinference/device_utils.py,sha256=WNKDD4Eni3Io3AehiyonsuoJaukT77Bc76Es7vNGvjc,2615
|
|
7
7
|
xinference/fields.py,sha256=BFAVowcvvwA4i1HHHeyD1J_p3p6Vi5hVmKY0CT21blM,5075
|
|
8
8
|
xinference/isolation.py,sha256=NstVRcO3dG4umHExICXAHlzVKwH8ch8MBwKwE-KFkE0,1826
|
|
9
9
|
xinference/types.py,sha256=_tbGgdMTlXs6oINWbEmCesyckDDa2tsPRH9yzM8fKSI,11812
|
|
10
10
|
xinference/utils.py,sha256=Z6PPDGmX4EW8OD3OfA2Wa37ZM9OdRTnR00ITMDTu4qE,716
|
|
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=FaD0PJxBWJSh_cpOIsjMfUfCP5XPuhtQu_I48xSvYfE,58762
|
|
13
13
|
xinference/api/oauth2/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
14
14
|
xinference/api/oauth2/auth_service.py,sha256=n88v85kkkM_4NYZBmbETM7OF7XuehWv9gyLRUmhVL1Q,4929
|
|
15
15
|
xinference/api/oauth2/types.py,sha256=ltAkjPBEJVSvYVhzwjaJpe2eUbnqkx2vofLuRbcGMg4,972
|
|
@@ -20,22 +20,23 @@ xinference/client/handlers.py,sha256=3gd9C7u4URbcVdR6Eyv8cpEZ175Ll4q_jGL07CnEIpg
|
|
|
20
20
|
xinference/client/oscar/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
21
21
|
xinference/client/oscar/actor_client.py,sha256=fWGbqCaJHp33CSgtznPosryTD88KWSjQLQebHkGvQCI,21545
|
|
22
22
|
xinference/client/restful/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
23
|
-
xinference/client/restful/restful_client.py,sha256=
|
|
23
|
+
xinference/client/restful/restful_client.py,sha256=5D4NW2uCDNV5YUk0EEc3OELW3mT4c6zOHpeEr2dJ4wQ,41044
|
|
24
24
|
xinference/core/__init__.py,sha256=Fe5tYCHDbYJ7PhxJhQ68VbfgKgOsAuslNPr4wPhFMJM,612
|
|
25
25
|
xinference/core/cache_tracker.py,sha256=rBF8MXWK3rP5Q69LuhpWb2ZeF_bqbC3zCTCKs8FlfZE,4261
|
|
26
26
|
xinference/core/chat_interface.py,sha256=CNqILarZfdMnZebuOaemK4FomouLqKAcd7lt24JF09Q,17073
|
|
27
27
|
xinference/core/event.py,sha256=MBEuTlXsy659pDsCNl3qZDNbVfY13-Z-CmZCRdabQpI,1632
|
|
28
|
+
xinference/core/image_interface.py,sha256=G2iK24auEN4MrLkPlu1CAA_gf-BQrGQTjazi_FYqIxE,8825
|
|
28
29
|
xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
|
|
29
30
|
xinference/core/model.py,sha256=5zQ0MVAiLvohSgy92oOsZZ5kvCe8uPj92qc6SU_aVlA,17700
|
|
30
31
|
xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
|
|
31
32
|
xinference/core/status_guard.py,sha256=ScmTFb3NPTp-RzufdHFpBh5TZHPc2bu907JA8l0gywE,2804
|
|
32
|
-
xinference/core/supervisor.py,sha256=
|
|
33
|
+
xinference/core/supervisor.py,sha256=IJfvX1zYUY3FxKR7mlKRf8u0JzH8a5sD5pEPxhd1QqM,38303
|
|
33
34
|
xinference/core/utils.py,sha256=tUpUJUQv1zkE9i7fw1pAFfFdcB3PC6DvKJn4Bmmq75E,6008
|
|
34
35
|
xinference/core/worker.py,sha256=x24H_hzgp7Kae7dB2ZPaGbIXDs43iRcI5RYS0LRUpig,27542
|
|
35
36
|
xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
36
|
-
xinference/deploy/cmdline.py,sha256=
|
|
37
|
-
xinference/deploy/local.py,sha256=
|
|
38
|
-
xinference/deploy/supervisor.py,sha256=
|
|
37
|
+
xinference/deploy/cmdline.py,sha256=MqKxVhqIVuxJVKNj99g32QfKTYHBFzY0nWCh9U9Zef0,32692
|
|
38
|
+
xinference/deploy/local.py,sha256=vlAvhcl8utP1DjW4MJpBgD4JLHQV-1Xebmdd8j9M8IM,3946
|
|
39
|
+
xinference/deploy/supervisor.py,sha256=fMHeEGigQ72PD9JEFmZ5Xudn25Uj4DhD2OVIlAu_YpA,2978
|
|
39
40
|
xinference/deploy/utils.py,sha256=_g4U6GJVzHnEHzF-KSMm-tffba2mtLNnxoEwnC8jmj8,5361
|
|
40
41
|
xinference/deploy/worker.py,sha256=Av3qU1b0tdxfkds3Mc2Qiqy9c_xSD0Tp3cToWoXqTpo,2966
|
|
41
42
|
xinference/deploy/test/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
@@ -57,34 +58,34 @@ xinference/model/embedding/custom.py,sha256=iE3-iWVzxarXdeTdw5e6rxv6HQRXVbPHp65w
|
|
|
57
58
|
xinference/model/embedding/model_spec.json,sha256=rrKFcgFjOIevuvE2AratcrJssvt1HwQfktNLge5yaug,5999
|
|
58
59
|
xinference/model/embedding/model_spec_modelscope.json,sha256=CTS4KgQYgeuojHnv01HHjo5Um_DKbh0Y5TKi4FYMWj8,5248
|
|
59
60
|
xinference/model/embedding/utils.py,sha256=t_y-7TrYenJKzX3p8e8KWXyC66u7Kd7lMvSzEOolnZw,790
|
|
60
|
-
xinference/model/image/__init__.py,sha256=
|
|
61
|
-
xinference/model/image/core.py,sha256
|
|
61
|
+
xinference/model/image/__init__.py,sha256=1jgy0H36_jRRRPUh-hC3zA0ETQgbcdzPhodd9L0DXoA,1697
|
|
62
|
+
xinference/model/image/core.py,sha256=hr8fHIumTk8y-EQ3fi4AIyMBzz75wOCkLPNyoQrWo10,7698
|
|
62
63
|
xinference/model/image/model_spec.json,sha256=VBo3jTq93UtwD9fB1oqrpIJVaZbyYNiougZuY81pt8g,2965
|
|
63
64
|
xinference/model/image/model_spec_modelscope.json,sha256=KMI-2YOJoLUtN93LZiqqETWTVjhGBpsxo87d6M8eJP8,2964
|
|
64
65
|
xinference/model/image/utils.py,sha256=gxg8jJ2nYaDknzCcSC53WCy1slbB5aWU14AbJbfm6Z4,906
|
|
65
66
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
66
67
|
xinference/model/image/stable_diffusion/core.py,sha256=YStAtcO-HVR36brvy7DK-D-Z-LT1X4tfwrVrXcLXK5Y,6010
|
|
67
|
-
xinference/model/llm/__init__.py,sha256=
|
|
68
|
+
xinference/model/llm/__init__.py,sha256=vA1nVY-lDVB4AXuWxsvoevvrU526c4AmSt2UTjTT2pQ,6530
|
|
68
69
|
xinference/model/llm/core.py,sha256=ubS7maXHr5tzTUey1D8ta49Ur1C5RMB-rnpAZNqZZ8c,9526
|
|
69
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
70
|
+
xinference/model/llm/llm_family.json,sha256=eGD_z3Z32a9TWh8qjCKyF6qpcjhu39ow5Kfx1zb_eyU,96692
|
|
70
71
|
xinference/model/llm/llm_family.py,sha256=BoqfNX6DpIJylIOUYd1xpDybu1WyV94HMtdQRlRHVho,33447
|
|
71
|
-
xinference/model/llm/llm_family_modelscope.json,sha256=
|
|
72
|
-
xinference/model/llm/utils.py,sha256=
|
|
72
|
+
xinference/model/llm/llm_family_modelscope.json,sha256=eGyEottnMKNwRsesOfF5tVof3jOGp4GxM6mu80uiQfg,60741
|
|
73
|
+
xinference/model/llm/utils.py,sha256=js5lml_Ar8TUjAX1YWfhlfAYsFgAhPC35KEiLZbVzOE,26893
|
|
73
74
|
xinference/model/llm/ggml/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
74
75
|
xinference/model/llm/ggml/chatglm.py,sha256=Zrzw8K2EroI5v2JlwOAJ08tNFs871n86zRtBxuK97Z8,13044
|
|
75
76
|
xinference/model/llm/ggml/ctransformers.py,sha256=n8dTItZe97cF79NkmsVPirqpBcrZiGAQfd2GRpz9-3I,9917
|
|
76
77
|
xinference/model/llm/ggml/ctransformers_util.py,sha256=WozFJgJZlbuEDPQLhy31YmwGp-oJoUYsnd9HjuGraIE,5271
|
|
77
|
-
xinference/model/llm/ggml/llamacpp.py,sha256=
|
|
78
|
+
xinference/model/llm/ggml/llamacpp.py,sha256=IGaKSCfexfmNZ9_pNIhpr8rWxntfVQNZd9djV53KMNI,11683
|
|
78
79
|
xinference/model/llm/ggml/tools/__init__.py,sha256=6a6P2VPKE06xKxJ-dTqp4TRO2IEDWvtcVP6gHutAR0M,624
|
|
79
80
|
xinference/model/llm/ggml/tools/convert_ggml_to_gguf.py,sha256=ULvaoAKGH-L6RuRLFOtAOVitKLVPdpd5QyXrLL14gG0,17959
|
|
80
81
|
xinference/model/llm/ggml/tools/gguf.py,sha256=Hv2haR-UN7NdB1N8YId32hFoEPd-JX6_aUNWRJhyJZc,30277
|
|
81
82
|
xinference/model/llm/pytorch/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
82
83
|
xinference/model/llm/pytorch/baichuan.py,sha256=gh49PNue47T4XUwE5bx_ErDwagb1dYVrhBFYXUsJDQ8,2795
|
|
83
|
-
xinference/model/llm/pytorch/chatglm.py,sha256=
|
|
84
|
+
xinference/model/llm/pytorch/chatglm.py,sha256=VF4-Kzw-THpedw0EEpnJoCJi4OgDmnlQbqKmVrwCxQI,7149
|
|
84
85
|
xinference/model/llm/pytorch/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
|
|
85
86
|
xinference/model/llm/pytorch/core.py,sha256=bmLyP2GWk4mfq7LP6z8-ME5-AC3KikU2BbglqKPXNck,19228
|
|
86
87
|
xinference/model/llm/pytorch/falcon.py,sha256=Dp19-Sv4mbx1PAVMEp7biATqs4T1WdwcvZZhuVndmYQ,4482
|
|
87
|
-
xinference/model/llm/pytorch/internlm2.py,sha256=
|
|
88
|
+
xinference/model/llm/pytorch/internlm2.py,sha256=fW-iQxo2CCyZ7dODJPb6w_NoyCfGZj6zCZ_CI1Su_os,5707
|
|
88
89
|
xinference/model/llm/pytorch/llama_2.py,sha256=RiS6chAj-nh_E-GOZPV-Ze1zDevGmJkhWZMdF4Etoq4,3693
|
|
89
90
|
xinference/model/llm/pytorch/qwen_vl.py,sha256=jyE9em7sMTosYPLqW08aCuEc6c2zNKLJzIcFzowKjyk,5722
|
|
90
91
|
xinference/model/llm/pytorch/spec_decoding_utils.py,sha256=brSxcXkXlELprGK2cLjNTW-3h1Lk9GlgcOFYZo5NBAA,18781
|
|
@@ -92,8 +93,10 @@ xinference/model/llm/pytorch/spec_model.py,sha256=8E0jZuXp9MlNLCqgvOjNdUeYqJdMZq
|
|
|
92
93
|
xinference/model/llm/pytorch/utils.py,sha256=frFvbT2Ka4YRsfnx6ma8IW_i8eqqRwSo5pCU0qnOJtQ,17288
|
|
93
94
|
xinference/model/llm/pytorch/vicuna.py,sha256=PjLD-5BF4MVXkPs1_WncCCuziDKl5tiGXHf-zkrBz_c,2309
|
|
94
95
|
xinference/model/llm/pytorch/yi_vl.py,sha256=aJZQauLmyXEtnz57ZU-Z3pmi0dFdlR_UjnZu0QsC06c,9393
|
|
96
|
+
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
97
|
+
xinference/model/llm/sglang/core.py,sha256=eqAczZfGJInC_jihXVeKiWQ79Llk3reHDBkdShQlH-0,12915
|
|
95
98
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
96
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
99
|
+
xinference/model/llm/vllm/core.py,sha256=f2hsH7UayhIan47QEif8XQvgD45u9ZMn5LzeWY42oag,15955
|
|
97
100
|
xinference/model/rerank/__init__.py,sha256=BXIL1uu3ZpZHX9bODhW9lxKUXudZE7-OkXFmmM5rpMU,2817
|
|
98
101
|
xinference/model/rerank/core.py,sha256=A9NqcEFRzahE8fcRgRUfY8pHUm5jYG5THxI2qSKTjFY,7771
|
|
99
102
|
xinference/model/rerank/custom.py,sha256=NKk7jA7p4xkuwS5WoOs2SY2wdnoAVpyCjBTvv317bBw,3917
|
|
@@ -115,12 +118,12 @@ xinference/thirdparty/llava/model/multimodal_projector/__init__.py,sha256=47DEQp
|
|
|
115
118
|
xinference/thirdparty/llava/model/multimodal_projector/builder.py,sha256=URP051uhGLWqC6ERsqjn2MiQDNYzOoQ6EJEcB-Z0RzM,1933
|
|
116
119
|
xinference/web/ui/package-lock.json,sha256=RohJDz4MQ4pn-aoNNNUQHJ0cJAStBFGxc_nI-jj1QvE,766322
|
|
117
120
|
xinference/web/ui/package.json,sha256=hHxujbFJK1cCtCmqkh9z9D8F5WtWYaEB9J1snBEgQZ4,1959
|
|
118
|
-
xinference/web/ui/build/asset-manifest.json,sha256=
|
|
121
|
+
xinference/web/ui/build/asset-manifest.json,sha256=8_PVExVVZUgbY7Bu5sED5DuoX4iCXPL5BwIR20DRu30,300
|
|
119
122
|
xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
|
|
120
|
-
xinference/web/ui/build/index.html,sha256
|
|
121
|
-
xinference/web/ui/build/static/js/main.
|
|
122
|
-
xinference/web/ui/build/static/js/main.
|
|
123
|
-
xinference/web/ui/build/static/js/main.
|
|
123
|
+
xinference/web/ui/build/index.html,sha256=eLqL8cIKnWqtFVxKAFjrKbJkADHQ9gfiwvdENm-aMPE,589
|
|
124
|
+
xinference/web/ui/build/static/js/main.66b1c4fb.js,sha256=9hiaUTGLf2YG3nhv9rEP_V9cT9UwR858PmVRiCV3qso,942238
|
|
125
|
+
xinference/web/ui/build/static/js/main.66b1c4fb.js.LICENSE.txt,sha256=8ziOYGb1jthAUKvOTShmsWJ1ZU9Dax-7OPCFl6cARsI,2185
|
|
126
|
+
xinference/web/ui/build/static/js/main.66b1c4fb.js.map,sha256=CEQHTTUEdEyOnaC_Vy6GE_pDRPPAHKKgCBtoZmems3U,4214001
|
|
124
127
|
xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
|
|
125
128
|
xinference/web/ui/node_modules/.package-lock.json,sha256=BeeuWat6HitNdQxWXtz_VcIin_ZN1rqaSzBNbLMwnEo,764314
|
|
126
129
|
xinference/web/ui/node_modules/.cache/babel-loader/000791038e4133db461021f1018491323a006cca7a53e09c2ac35032bc36d8b6.json,sha256=lcvLWh7kYVCN6ZBwqKJYmnST8it8tv7i7gOzsbV5Gas,1358
|
|
@@ -676,6 +679,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/0bc0a749f13d3bdb45ad71bbc1349
|
|
|
676
679
|
xinference/web/ui/node_modules/.cache/babel-loader/0bc2f9720cddc87419137db77526248f09f67944b3b43e68725ee5ad02443818.json,sha256=CWvSt0WmmvzoL2GtTpDDP0It4a0_BatoJc5BwUcTmFE,1483
|
|
677
680
|
xinference/web/ui/node_modules/.cache/babel-loader/0bc58ba8658959c56b4dbab3340bbb7c3beec62a4441170c2965059523bc75e3.json,sha256=iAgr6wSec1ca_GNHEFUvaJ198Xhz3Knq5Eo6xPuPSp4,2503
|
|
678
681
|
xinference/web/ui/node_modules/.cache/babel-loader/0bceb96da50b4ae702afe7b207918372a6d135ebe9f0ae29cfd45b9c91658b3e.json,sha256=QVt5D33q45_e9t3A1jj-CJJDimfywKhRU0GxIHYBTro,1803
|
|
682
|
+
xinference/web/ui/node_modules/.cache/babel-loader/0bd70b1ecf307e2681318e864f4692305b6350c8683863007f4caf2f9ac33b6e.json,sha256=LJiSCd2bkF-eV_gHqiGjfwyNbejIOgJsjjDuYv0LEaQ,10759
|
|
679
683
|
xinference/web/ui/node_modules/.cache/babel-loader/0bdaaae9c7c74e16e8d73b02fffe0f6b17f121f3a987ad548f64a0197d6389a3.json,sha256=F7bUHaSRNiHy2ItVfucHWjgxEdukB_WsnjR2O3D0gV0,1654
|
|
680
684
|
xinference/web/ui/node_modules/.cache/babel-loader/0be17b06c968e570ae1523f5d9125429d82fb82bf309db6f0ac5b338e54d5cc3.json,sha256=HbkP2C2_qZz2ZzcN3VVS3kwmxhw7EwhK0ziI-PlMt4w,998
|
|
681
685
|
xinference/web/ui/node_modules/.cache/babel-loader/0be6ff07e5e49484240cf552d7a422c55113dce80f6d1fc55d50ba46fbcb58b0.json,sha256=Oul7CWos9K_WXAUCvnzSSb7fnSGKgLwVYgcPTJhslEA,1213
|
|
@@ -1801,7 +1805,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/2240966e275e496f6814778c54b4a
|
|
|
1801
1805
|
xinference/web/ui/node_modules/.cache/babel-loader/22627bafe88380f7f033872da9cb75a95f694c21745abfa3f4e5719670a36643.json,sha256=3XcCv6_mZef4tj9FS5WKwyrPPj7wf_lKS7s-eCF1UW4,1770
|
|
1802
1806
|
xinference/web/ui/node_modules/.cache/babel-loader/2272bc5cbd940ec937f2594b916270b73690eb83aba599a8a674b7bf8ea1f89f.json,sha256=4Nk2YsByA2Cy7EB3FJk2GAqUvnIRHjYojYQaxgj8SSQ,1706
|
|
1803
1807
|
xinference/web/ui/node_modules/.cache/babel-loader/2281b34344b74ba1a9aff7be779b9238f0402e41315a7a0c7acb4b66b618fe5f.json,sha256=PFsR0ljqGWpS0IG8PEHurkqXF0--cGwFC_en4SbsaBM,1230
|
|
1804
|
-
xinference/web/ui/node_modules/.cache/babel-loader/22858de5265f2d279fca9f2f54dfb147e4b2704200dfb5d2ad3ec9769417328f.json,sha256=l2cm6mFw4H1lQYu3MJH3mwM9cbNTxt5ktZ5L1XIaCYc,13734
|
|
1805
1808
|
xinference/web/ui/node_modules/.cache/babel-loader/22873d21eab4b5a04b183cc3d2cbfafa431e0ce99649aeb900cffcfc33ecbca4.json,sha256=cR1SI2DIylSkliIWgmZcv4ht_zssja3H4jiaBVXDCAM,1865
|
|
1806
1809
|
xinference/web/ui/node_modules/.cache/babel-loader/228b3e1031546c17f72306ee3d78317b5253ada6ce99490fbf53aff472d1e2ab.json,sha256=jWKQxkSO00B6TSk8jMNTTONdEeolpEZFWkKyrLkeuW8,1455
|
|
1807
1810
|
xinference/web/ui/node_modules/.cache/babel-loader/228b78cd0950f1c967cb33b210b11497052a9998f0b1d1f31ecee0fd8b99fb40.json,sha256=PutyTkclSsGBPecoeJJEwhV1oV3AeIAqJdsw0laSeJc,380
|
|
@@ -2419,7 +2422,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/304b9c54c980980b934e5294858f2
|
|
|
2419
2422
|
xinference/web/ui/node_modules/.cache/babel-loader/304e419582c068cedd57828dd01dae5552ee7b37b837b756ac0fdc42d1302068.json,sha256=fDFl3B8bXYqKG1e1bV9F_fyuF_7TcYrL792Wr0_BKX4,709
|
|
2420
2423
|
xinference/web/ui/node_modules/.cache/babel-loader/3064fda4ad981114c55301175e508365ea375bdc3d7cd65b6d3633a77346ce6a.json,sha256=ZRp9SDwsVlUt2_vp2EtvVPXyzLl83gLsdu7s4blOVXA,1445
|
|
2421
2424
|
xinference/web/ui/node_modules/.cache/babel-loader/3066a6f09484ab1cf2a5e9d97e5c9b5c97f802b84062a4ca7069d6f8caddb276.json,sha256=4V3XRD3cv39m5KyDPYSs8Ba1AZwcUfEvI7XAkpYUKE0,1116
|
|
2422
|
-
xinference/web/ui/node_modules/.cache/babel-loader/30670751f55508ef3b861e13dd71b9e5a10d2561373357a12fc3831a0b77fd93.json,sha256=5eg48HbOxlD7i8VGYBNuAnIAZpz4St7ATY6vGJUbTiE,13689
|
|
2423
2425
|
xinference/web/ui/node_modules/.cache/babel-loader/3074279290682853c6dc0a51752640b28ea521ee5e8cde71d9058b9dd0140da5.json,sha256=qjBhQ95xxdWPoAKw6XjtkyTLpHRFM7P_bjHkzmEDyic,1253
|
|
2424
2426
|
xinference/web/ui/node_modules/.cache/babel-loader/30748a7631321f8bc15092c3f49538695ad21ba7124aee25f793afa4cbaefc2e.json,sha256=Ttu5D64TN0fjhyyrOQiaPF1K2nAFFOBW_HcQBShRtUU,1511
|
|
2425
2427
|
xinference/web/ui/node_modules/.cache/babel-loader/307931e39392c5da6ac9e2134a47f234fed316d737063ea9bba4717a2d6fba52.json,sha256=0Bug8m60ukMpaJvYTZzlk2jgV2Hie5A7s54xdEMzJf4,1661
|
|
@@ -2877,7 +2879,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/3957da121c86e45b6279624d3bf5a
|
|
|
2877
2879
|
xinference/web/ui/node_modules/.cache/babel-loader/3959423382d0ebd976061ab5637932797a7f5fb6eb895f495b45bf4311555e5a.json,sha256=tyFOl4HF--0Y-h-pSYWfY_uuAStcskAQFwORXwV-bYg,1137
|
|
2878
2880
|
xinference/web/ui/node_modules/.cache/babel-loader/395ebc7897cf4d3fdf0d80500911d1a1a9b59234d329d34d1bcce9525ab6076e.json,sha256=3Vav82S_igL9pMym-3qcD-m1UhrWN3_j6-yrtk78lYo,4883
|
|
2879
2881
|
xinference/web/ui/node_modules/.cache/babel-loader/396b189f788828b0f47ca628fd4f7a7b9b6cd3c2140ff33360328dde51fafd01.json,sha256=3Sr5pmbvmk_xiXbk43BCPm27RO_w1LJ-alHz8xd1gNY,2280
|
|
2880
|
-
xinference/web/ui/node_modules/.cache/babel-loader/396f7ce6ae6900bfdb00e369ade8a05045dc1df025610057ff7436d9e58af81c.json,sha256=UleIIVqCtEkrr5_WEH2ruBqCEw_VE4fEx2n5iz2SPug,28381
|
|
2881
2882
|
xinference/web/ui/node_modules/.cache/babel-loader/396fca877ff63c2b4a7f62c5e971cf3a3a9b248c82111394cf23d8e150aa7e0d.json,sha256=BqNM0mp50uzGZAxNHBOwnv_dQkhssUPKPgaDuodg0Ic,2114
|
|
2882
2883
|
xinference/web/ui/node_modules/.cache/babel-loader/39767a5944a7c7c20468865bf47e39addc9999b07f116fd57b79cf7d0d186947.json,sha256=MuaV7fZTRToSNFUJJgenkv5W3GHbVqSk8-_xLwAixFQ,1139
|
|
2883
2884
|
xinference/web/ui/node_modules/.cache/babel-loader/397b604de600602655746c9dd5e2a6d28f413ebe64f986172d2336c9335cc485.json,sha256=WBHDfrsTw74GLu9r8bwqa0fgejQ_EE1lPOVDN4Xu76w,975
|
|
@@ -3100,6 +3101,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/3ddf3f67b492ca46988f58011f7b2
|
|
|
3100
3101
|
xinference/web/ui/node_modules/.cache/babel-loader/3de1dbcfd476a0d0b34f70742619491f3b24322b9cc4d533130a807db72e1bc8.json,sha256=yXtjiy8uEA6K50VPiFFgsm0dWrvMpbPsFHePiiI391g,1041
|
|
3101
3102
|
xinference/web/ui/node_modules/.cache/babel-loader/3de704655e25d484dea6603e7f6cff92430cffb05247628599b4299041de3947.json,sha256=RnKV6qWWB4xD0NVFXYOjrfvAj98tAiUr8XqSZRKAi3c,1358
|
|
3102
3103
|
xinference/web/ui/node_modules/.cache/babel-loader/3df2c699db3b761bda483e1e095e8e7c4c1f8d8c9406d441dd009ae34b75b2e1.json,sha256=U499E9Qm4ERlWcFHkbNC2wRMWj20DgSZqbKdMOAqJXg,1634
|
|
3104
|
+
xinference/web/ui/node_modules/.cache/babel-loader/3e055de705e397e1d413d7f429589b1a98dd78ef378b97f0cdb462c5f2487d5e.json,sha256=Wrovy9FKpNYI_GhyZrJTY7jLlzT3FvHM5Veuc1QuwjQ,31361
|
|
3103
3105
|
xinference/web/ui/node_modules/.cache/babel-loader/3e0b94ba734d983770f96a9335b89b859976a86d972e362e560cb45032a81c42.json,sha256=0y8VyEIWOvNTkiJEBcPYTfkZNJfVgsdJ4T5cjjuZgLM,1290
|
|
3104
3106
|
xinference/web/ui/node_modules/.cache/babel-loader/3e3876a1c2bee4189e5f96bd093f1018d2dc6365606fdb383641f064b6085bfc.json,sha256=ACrHtBpgNZvsqp5ZpuSXqYsqbdftBLssHDaZZx5lrSg,1589
|
|
3105
3107
|
xinference/web/ui/node_modules/.cache/babel-loader/3e3e160743adac06132315803a80140129917422d25cd6bf58ec5c67d66f2431.json,sha256=dudsumLdvYNmnv4nvdY1GOz9dyU_0TDOEP9Z9RZpnSw,1361
|
|
@@ -4064,7 +4066,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/5279d79627d4cc2418e52a9dc93f3
|
|
|
4064
4066
|
xinference/web/ui/node_modules/.cache/babel-loader/527a3d0bd6f849bb8724b5296cc863a28209eb582b0064e0b4f49516bd521941.json,sha256=xNSe39JQQfp3VU4vjc57IBg4Z7BUZ0R4CtdNp8yXg-U,2190
|
|
4065
4067
|
xinference/web/ui/node_modules/.cache/babel-loader/527a5def765bcf3cfe32ebd9a00df4a0deafdb49db5354cce18e836f91fcf7cb.json,sha256=LP3bIzc-ARXzv4TJmAIBIp0naTnnqlFVYVBZ3pUm9_A,1251
|
|
4066
4068
|
xinference/web/ui/node_modules/.cache/babel-loader/52806860637b90919661fcc1b1aa1c91b75c99e1e9a2f1af8627dd35e14feb38.json,sha256=0VEds1pDxKPaKjQU-ZPBXOM0nj-FeTw7-9PDvQunfn8,1426
|
|
4067
|
-
xinference/web/ui/node_modules/.cache/babel-loader/5282ee05e064b3a80bc991e9003ddef6a4958471d8f4fc65589dc64553365cdd.json,sha256=PIoHp5NkTmrQcY__fs3rm4zYOICYATw0zHEpNy9S1rg,28324
|
|
4068
4069
|
xinference/web/ui/node_modules/.cache/babel-loader/529035351ffb44c1cec353a95253e99f4ac5a18956c272c87099f9998d8698a4.json,sha256=5r3g-8QWeCHtYr7Gws2klyXrr48O1_6IKMzVYhudmK8,1341
|
|
4069
4070
|
xinference/web/ui/node_modules/.cache/babel-loader/5290fc26ac7457024230548c262707a89da1634d1be7988831dbdfa11624ed5e.json,sha256=WbQaOCfg4InR_jy0Ii0N1DOeBrNttbKtCdX-x9NHRVo,2027
|
|
4070
4071
|
xinference/web/ui/node_modules/.cache/babel-loader/52925bd38c5beaa4ba2a12f493c178d3e02c9dab489d4271407c067bbca44c38.json,sha256=ZkPNVcyjOL8U42mHK8Bb0h1qLArirECkBW6bnxdTiuo,1821
|
|
@@ -4747,6 +4748,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/60a96960a01975be2f8e537bdab39
|
|
|
4747
4748
|
xinference/web/ui/node_modules/.cache/babel-loader/60b0c8ca83d81db146e49c5ce2ba10fc663b73fb285913f41d766ca9d901fab9.json,sha256=ni_DnwuOLQCJEepcH8hS8KQj88D9yKkIZUP0rCFNxQI,1421
|
|
4748
4749
|
xinference/web/ui/node_modules/.cache/babel-loader/60c12ba7037cf990dd2e5977c49332a58a7fcd9f64cf2215b4f04b95fe332bdb.json,sha256=4r7kyLNZuqA_HwGi3aHlLm1ENPO-mIPomEYbUJZodKA,1206
|
|
4749
4750
|
xinference/web/ui/node_modules/.cache/babel-loader/60c261bc9a425c9fe2010579140f7148b32f8ef4158a5abf8559cbe5fdbc7baa.json,sha256=Ws7bku1BweDVv_jW6r5dRiusjxtdVvZLf_NzO3GgKFU,1990
|
|
4751
|
+
xinference/web/ui/node_modules/.cache/babel-loader/60c4b98d8ea7479fb0c94cfd19c8128f17bd7e27a1e73e6dd9adf6e9d88d18eb.json,sha256=g2kikeJkU_-YLxe_pDJDZ4oi-sHXMMPiwFhT52LJBXw,28390
|
|
4750
4752
|
xinference/web/ui/node_modules/.cache/babel-loader/60c582ff2c0142684f28b97b7817a1cac81a096d329213f89f0b576ebbd5fdc5.json,sha256=OpE7seex6a1JlDLgj5N7uQHGVy90jFLzeDec9MyImx8,1680
|
|
4751
4753
|
xinference/web/ui/node_modules/.cache/babel-loader/60cbf076a9c253eca45fa420589e459e0ef37c5337b9fda34b79f5f972168070.json,sha256=fTeXxuuCVGy3KxWeYCnweiuMf4wYF6bT5HHjCqHEZbs,1978
|
|
4752
4754
|
xinference/web/ui/node_modules/.cache/babel-loader/60d2a609c9db5426a31b3b65f1f24b21a3716dc40ad44dd83170236b06fb6f5f.json,sha256=n7e6bdf3UJQ_TOhgpa3ILM2CuhjwkjTnBQX7yqOuW6Y,1444
|
|
@@ -6129,6 +6131,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/7dea90a12e5d611ccb120c62d48b7
|
|
|
6129
6131
|
xinference/web/ui/node_modules/.cache/babel-loader/7def05af31ef8170480bbf0385dee80bb6f25a6044d86380e7a91c6686a94a04.json,sha256=n-hmxhbAbfAR_NCyR_YcncpCH9MiYER1evkxsZ6Zr-s,707
|
|
6130
6132
|
xinference/web/ui/node_modules/.cache/babel-loader/7df2673d63cca4da35c15305c2191fd99d3971d96f4974f73af3cf455f70c87b.json,sha256=Za5WiFpZUYvUX4G6-56MsxFp7paqU8LfuIKgz7RaLO4,1186
|
|
6131
6133
|
xinference/web/ui/node_modules/.cache/babel-loader/7e07afa5afed38d08cbf8f59c0a4aa1bdaa251e1b75016ba8b81c4167470aa15.json,sha256=TDhb0gQwpqWfu2MQYrOVXyU74eNZmDCb92fOqLJc9yM,2130
|
|
6134
|
+
xinference/web/ui/node_modules/.cache/babel-loader/7e094845f611802b024b57439cbf911038169d06cdf6c34a72a7277f35aa71a4.json,sha256=Jwx9A_Fbzu7WbwgZttohDh0_AFECVccs3yz6wMANlvE,29837
|
|
6132
6135
|
xinference/web/ui/node_modules/.cache/babel-loader/7e0a4830dae84acbaa77d6a706e57173fed9fb0332535985b43e53c42e31ffb6.json,sha256=0wbwjQ5dKwbQFlsptpmOShaV56O85TLaDhVSI6zVu9k,1852
|
|
6133
6136
|
xinference/web/ui/node_modules/.cache/babel-loader/7e0e936ef09ed73995310b6c2afedeffa8e000fcb7eb1b5f7972e288f761ccc5.json,sha256=aTk6mg9xKIhM-CkUYX6kZF4PQikO4SGBUWfPlM-bdvg,1348
|
|
6134
6137
|
xinference/web/ui/node_modules/.cache/babel-loader/7e18710f3233c22495e90978ebc4ecf9327ef1c9030b3fc79ae2fb0c98d8f855.json,sha256=zQU_tsf5lWdlT3KC-Rgw3sR0F9LJtdsc2pNS5GHn4_U,1637
|
|
@@ -6410,7 +6413,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/83aaa3302b86f72fca29584397111
|
|
|
6410
6413
|
xinference/web/ui/node_modules/.cache/babel-loader/83ace53d538e1a0e20d930e3aad2f73994184821a48cae1a56d715f4c1f87bdb.json,sha256=9fJiypNn-9xtMXnUyo5V7mPkAm7B_akVdN1HkEsBFKI,1824
|
|
6411
6414
|
xinference/web/ui/node_modules/.cache/babel-loader/83b0204cbbbde40bb9ace231b5bb914c770acc0610ead9ea239f3a0994307f9d.json,sha256=2nBRkdcAwjMnc9zcHSKoSAligCETEUsm42iDvEfdslM,1597
|
|
6412
6415
|
xinference/web/ui/node_modules/.cache/babel-loader/83b149a1aebcbda6399fc78e33b37cbdbbc053b53f4cb5a762019852cfb35947.json,sha256=ANrWSkFtgPqwvEGjV362yUJ-kLvm6QLwWblMyGTCLKo,11886
|
|
6413
|
-
xinference/web/ui/node_modules/.cache/babel-loader/83beb31daa7169fb0057453d4f86411f1effd3e3f7af97472cbd22accbfc65bb.json,sha256=yDhmlhtwbmnzbtrQJbRiUinoYgQLZF20EnTrZWQNobY,13663
|
|
6414
6416
|
xinference/web/ui/node_modules/.cache/babel-loader/83bedc7ab799bfe5fc6abce4f29694d83c99f8d238db7fc43ba5174fb4a0db35.json,sha256=rUeVM8KuBLHinnAEKz1OugwGnotYfJzagcuv7TZ48BM,1073
|
|
6415
6417
|
xinference/web/ui/node_modules/.cache/babel-loader/83bf3b3e20787e69976ea0dea8cf817bcbe0a2ef5077672c0b34804f8f169600.json,sha256=jk7JRNnh3od_ghvcPHchBvTn_-eOYeo7gtbkB8AO8lQ,1208
|
|
6416
6418
|
xinference/web/ui/node_modules/.cache/babel-loader/83cb1998046869c96fcb4d76e7dcdc9035d6b69bff33234dfe259e0d22b7f912.json,sha256=i52C0T0zrgusRsZOUOBD_H3UMGEIXw2RjSlIZDe615I,1713
|
|
@@ -8770,6 +8772,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/b3eb0ff459bc91784bfbd8e2ba58e
|
|
|
8770
8772
|
xinference/web/ui/node_modules/.cache/babel-loader/b3f2d1ab3a562e5d407ba4c113fd1930020f2584051bc5446db4fd8434f42cc2.json,sha256=dNZ4hvhfiJOvcQW9-0CWVjJSKsx4ZJDIhXOkC4QOzPM,1351
|
|
8771
8773
|
xinference/web/ui/node_modules/.cache/babel-loader/b3f36e998068de745f40582fed796d2c134797062f469dff8f33f2cfe29149de.json,sha256=teF31N4aIDoFAXO02zRX0RHKzGLthPYpWFceMXVGDXY,2726
|
|
8772
8774
|
xinference/web/ui/node_modules/.cache/babel-loader/b3f4a1ddcd5b1ada072acc81965b4dd2a42feb62a19dbf1f3d280663a158e5e7.json,sha256=6a4wrt9jtuW49nTdb59Un2yqTyto9uW1qJFXBEWhXcI,1583
|
|
8775
|
+
xinference/web/ui/node_modules/.cache/babel-loader/b400cfc9db57fa6c70cd2bad055b73c5079fde0ed37974009d898083f6af8cd8.json,sha256=kahi3QDwMGUHh5Q0f8i-gxraIO6uPs8pVb-w14RM5o8,10744
|
|
8773
8776
|
xinference/web/ui/node_modules/.cache/babel-loader/b4094c0b683efdb6ce6b31a404d77dc3abefbf1982cecfaef7bca7b8b95e8562.json,sha256=kwGzGT_YoAThfKMKpPNmuzqBVN2FBbluD28RtFMZ1J0,2783
|
|
8774
8777
|
xinference/web/ui/node_modules/.cache/babel-loader/b40a2989c91b0f8c14905ffd52cb24707ccc14767190ff4809e87e64949cfe6f.json,sha256=VFDlbvoeMuxSHD2EttSYpJCNEeH2gN9d9ZE8UjOB1pc,1678
|
|
8775
8778
|
xinference/web/ui/node_modules/.cache/babel-loader/b40e708c3acfff64baffca6a1e2c35dc1fb8b3ceb14ea29ecff1dddb22ba8b9c.json,sha256=BjavnEoo0XSJ_0_S_hzOQbYhlb5Q_J20jbzx6VvNQhM,407
|
|
@@ -10798,7 +10801,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/dde89a113b7d0eeb8baa89430319c
|
|
|
10798
10801
|
xinference/web/ui/node_modules/.cache/babel-loader/ddea932054db6f56a82dee2f25ba4fa1b14d9c3dddbb39036dd510b27909cd15.json,sha256=pmzRJjCUs6kPHwVQwphdtEj-kAIiDesZItdJr8illk4,14087
|
|
10799
10802
|
xinference/web/ui/node_modules/.cache/babel-loader/ddf1e04d4ae2621099f7888fa9c6294060c0572053b193d41e57dab2392bba28.json,sha256=FZ6f67wz0oRZmlhsAgYKTj7mv3tl9Rvlh8zZnKgmyQ8,1535
|
|
10800
10803
|
xinference/web/ui/node_modules/.cache/babel-loader/ddf46e7e62ec7cb53d3c29eeb545ec4cf23cefe7b80c4cdef0843961f01fe22f.json,sha256=AwmRCTYBnOqOyQmSUQ7R7hHE_HKN7khv_wiMIbHu4JU,1186
|
|
10801
|
-
xinference/web/ui/node_modules/.cache/babel-loader/ddf597663270471b31251b2abb36e3fa093efe20489387d996f993d2c61be112.json,sha256=WlRwAP0IqneUDZPlWHBkdmKN4ehcZTRjbow7kSAwffw,31352
|
|
10802
10804
|
xinference/web/ui/node_modules/.cache/babel-loader/ddf64a208ce70390933304b2f7962533a460d19579aca0b318949a4744b4a249.json,sha256=enfSND-YQm9BQzWRPXDrpXhNuLQgHl45kbaRDzESNXM,1773
|
|
10803
10805
|
xinference/web/ui/node_modules/.cache/babel-loader/ddfc3818a5b49347922c62fa50e463d491a025e9d11aa60519e9af6349f48648.json,sha256=fU0qHVnTQvxFIqwJ_8sI6nqGZtdV2LVF_ZGznUaPkFY,1377
|
|
10804
10806
|
xinference/web/ui/node_modules/.cache/babel-loader/de00080e1f6523fd3461daf426efd39613d46bbfc1c45ba890d8aa3bf5e1fd35.json,sha256=I6VyohAHhzJBU7UkA_kLbR5R31S-ii5-c6ryAk3JyIo,1594
|
|
@@ -11001,6 +11003,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/e1cfe9f09272ac7638837cf4b0a3a
|
|
|
11001
11003
|
xinference/web/ui/node_modules/.cache/babel-loader/e1d1150bb03747a294b6c66b8ef04489f082ab6f456cec03457d2219a91c21ae.json,sha256=Wc4szwtSzgkjp8NNF9yl7a67T4AezIQTdOVFYsAOTqY,2610
|
|
11002
11004
|
xinference/web/ui/node_modules/.cache/babel-loader/e1d21bcc0c4eae4c8943fab9a2c718a8096c38f6cec204520df66028250982bd.json,sha256=SJdzkIp5pgGGZ0iEK_wV9_ZL80tlkQAQhUl57qyoVMM,1391
|
|
11003
11005
|
xinference/web/ui/node_modules/.cache/babel-loader/e1d7d87fbb51afccaf5e72117961675a6167a61a15f2e3c1a04bd42cb4bff9cc.json,sha256=HSD4ucjVCW6kprP3R9zXKlbbbv4CVzCOi_Ous9dDV8c,1221
|
|
11006
|
+
xinference/web/ui/node_modules/.cache/babel-loader/e1d9b2ae4e1248658704bc6bfc5d6160dcd1a9e771ea4ae8c1fed0aaddeedd29.json,sha256=YzD8A9-5nM-x1r0l-cvJawE5DKRKue_-z2LT559Mmsc,10720
|
|
11004
11007
|
xinference/web/ui/node_modules/.cache/babel-loader/e1dfa6193fac44aef35df7addadabcf3ad30283505acebacb2d0e4bbdc638ca1.json,sha256=SUVJ1s_En5GWPy1wnG-oE1bAhOOcoBySfELAFvb0AJk,1888
|
|
11005
11008
|
xinference/web/ui/node_modules/.cache/babel-loader/e1e02c632ee8724e290a440b5f79b98ade8cecdd9ab1f9f1c561522be415a05f.json,sha256=6Wa0eZNl1kspDL4TGn96Rs5ru-jJ75iI5XzY1XfyGg4,1164
|
|
11006
11009
|
xinference/web/ui/node_modules/.cache/babel-loader/e1e1053e7bb73fe856b0284e8ec6d11789ded4ea507f791acd61da1192e245ca.json,sha256=N7ATSWNWBI3T17VZQVMO5MBxaWDLOdOCBTSszMqp_AY,1369
|
|
@@ -11332,7 +11335,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/e855535354a209da3b12d7d44806e
|
|
|
11332
11335
|
xinference/web/ui/node_modules/.cache/babel-loader/e856c21452cd230233fcb41232e891b53314c2e8b2a93686eef48ff99515ab07.json,sha256=zTRNHaxV4qWF58AF3Je9aqd2ZFYC-jjTMuyC4HTDnoY,2254
|
|
11333
11336
|
xinference/web/ui/node_modules/.cache/babel-loader/e864cc61b8a91ef3d94b1a90b338218174bcf93229dd48837bf53e12133bcfe9.json,sha256=j_z13GAWDNa7yfkpXEbRH8SECroKOARjB4ErfmbRMvk,1086
|
|
11334
11337
|
xinference/web/ui/node_modules/.cache/babel-loader/e86556394650cbac1c36a85221a135171d4caaeb0a17854c758eb1c2044b8b25.json,sha256=a9s429C35W9vndT_q1oxirYV-fT7HpKSNGfaQ3tZ2UY,10494
|
|
11335
|
-
xinference/web/ui/node_modules/.cache/babel-loader/e8687f75d2adacd34852b71c41ca17203d6fb4c8999ea55325bb2939f9d9ea90.json,sha256=PGWAenDj_2_nSKsVuwLvpcpV-kI7CwK8IUXJR1WyfDo,43664
|
|
11336
11338
|
xinference/web/ui/node_modules/.cache/babel-loader/e86d52de068491a4acf73d16398e3e4a5791de56c05f0ecef134dec1c6a17b3b.json,sha256=onn1ZP0xA_oKTP8vwvmrpxWVMqD0eCyS8Ub5oeg6lKg,2090
|
|
11337
11339
|
xinference/web/ui/node_modules/.cache/babel-loader/e87034d02c960de7fda1a4580986b2e44776e22da2a6ca77fad3effd2e688013.json,sha256=9EjBs7fLeDMrsGUQvtGTu5Zj8h6HT_43dR4yufBmktM,1410
|
|
11338
11340
|
xinference/web/ui/node_modules/.cache/babel-loader/e8819da773befcb502e9690ed3844dd09c3b1b8776c955b1a57d9e0114f586cb.json,sha256=alsKj539uKUXoKboe9xDagWhl_TSdn1blNQdAp3jlec,1378
|
|
@@ -12346,6 +12348,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/fd2152357ab4a7f5bd1cc49585662
|
|
|
12346
12348
|
xinference/web/ui/node_modules/.cache/babel-loader/fd31591037470066e3b35f7f564eeee42686b0e0c18f4aced9e2b3f4484bbafd.json,sha256=Utm70FfuE6MeYGw-uEsoaj8KUbkf9h7WMTiNX0CeWWQ,451
|
|
12347
12349
|
xinference/web/ui/node_modules/.cache/babel-loader/fd3be8cbd836774b126d17a6f3b7e89bbf918045e1e9971f9dfa7fdcb18f2138.json,sha256=BDV5_UwpSVDIY05E90UU0-Tx7aGhPhKu0GYow55SUD8,1192
|
|
12348
12350
|
xinference/web/ui/node_modules/.cache/babel-loader/fd429dfa59d0a312f4aa76595b0468c7546fc46c799e79d0ddcf30fc0a8e61cf.json,sha256=celg3Ml6bEKozRcBQ8KdiZJZRxlKkFvsdxpaGS2y8F0,1034
|
|
12351
|
+
xinference/web/ui/node_modules/.cache/babel-loader/fd4a8ae5d192331af1bedd1d2d70efcc569708ee6cc4cb479b225d059482aa81.json,sha256=C0AaU268YWwfk3wbE8cCTMjaQbJPmJ7HAHmGLHOlvaM,55994
|
|
12349
12352
|
xinference/web/ui/node_modules/.cache/babel-loader/fd4e7d6f94c83ff5230f719e0cae2084191c85420321f6b5a09b36c291182177.json,sha256=WAdGlmzINEXYKah29UUsdPnFUyq853JM0_kviT3Z6xE,1018
|
|
12350
12353
|
xinference/web/ui/node_modules/.cache/babel-loader/fd4f16c1cb72325f1439c2718f9ba6caafb1f8c704168fdf42e7900c8476c9bd.json,sha256=fyvgIY-2dr-mFKTxAvSwJ4uRSAas8juYibQTlKSxWeE,1864
|
|
12351
12354
|
xinference/web/ui/node_modules/.cache/babel-loader/fd57e61395444052eaf8fd00e845539a063076e624dcda59276d98c1d601062f.json,sha256=Vgtq_QM8h9suIdJ-GNup05Ewy69okUNldOVB73rVfiY,1473
|
|
@@ -15373,9 +15376,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15373
15376
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15374
15377
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15375
15378
|
xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
|
|
15376
|
-
xinference-0.9.
|
|
15377
|
-
xinference-0.9.
|
|
15378
|
-
xinference-0.9.
|
|
15379
|
-
xinference-0.9.
|
|
15380
|
-
xinference-0.9.
|
|
15381
|
-
xinference-0.9.
|
|
15379
|
+
xinference-0.9.4.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
15380
|
+
xinference-0.9.4.dist-info/METADATA,sha256=n-FCXzg0OH6gsXeLERrjxAY47xVGBc3mJj5seynjvGw,14273
|
|
15381
|
+
xinference-0.9.4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
15382
|
+
xinference-0.9.4.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
15383
|
+
xinference-0.9.4.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
15384
|
+
xinference-0.9.4.dist-info/RECORD,,
|