xinference 0.9.0__py3-none-any.whl → 0.9.2__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 +33 -0
- xinference/client/common.py +2 -0
- xinference/client/restful/restful_client.py +49 -17
- xinference/conftest.py +4 -1
- xinference/core/supervisor.py +11 -1
- xinference/core/worker.py +29 -9
- xinference/deploy/cmdline.py +73 -2
- xinference/deploy/utils.py +25 -1
- xinference/device_utils.py +0 -2
- xinference/model/core.py +13 -2
- xinference/model/image/core.py +16 -2
- xinference/model/image/stable_diffusion/core.py +25 -2
- xinference/model/llm/__init__.py +17 -0
- xinference/model/llm/core.py +18 -2
- xinference/model/llm/ggml/llamacpp.py +3 -19
- xinference/model/llm/llm_family.json +8 -3
- xinference/model/llm/llm_family.py +100 -29
- xinference/model/llm/llm_family_modelscope.json +57 -3
- xinference/model/llm/pytorch/baichuan.py +2 -0
- xinference/model/llm/pytorch/chatglm.py +2 -0
- xinference/model/llm/pytorch/core.py +23 -0
- xinference/model/llm/pytorch/falcon.py +4 -0
- xinference/model/llm/pytorch/internlm2.py +2 -0
- xinference/model/llm/pytorch/llama_2.py +4 -0
- xinference/model/llm/pytorch/qwen_vl.py +1 -0
- xinference/model/llm/pytorch/vicuna.py +2 -0
- xinference/model/llm/pytorch/yi_vl.py +1 -0
- xinference/types.py +5 -2
- xinference/web/ui/build/asset-manifest.json +3 -3
- xinference/web/ui/build/index.html +1 -1
- xinference/web/ui/build/static/js/{main.87d39ffb.js → main.78829790.js} +3 -3
- xinference/web/ui/build/static/js/main.78829790.js.map +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/18e5d5422e2464abf4a3e6d38164570e2e426e0a921e9a2628bbae81b18da353.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/98b7ef307f436affe13d75a4f265b27e828ccc2b10ffae6513abe2681bc11971.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/e8687f75d2adacd34852b71c41ca17203d6fb4c8999ea55325bb2939f9d9ea90.json +1 -0
- {xinference-0.9.0.dist-info → xinference-0.9.2.dist-info}/METADATA +7 -5
- {xinference-0.9.0.dist-info → xinference-0.9.2.dist-info}/RECORD +43 -43
- xinference/web/ui/build/static/js/main.87d39ffb.js.map +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/0738899eefad7f90261125823d87ea9f0d53667b1479a0c1f398aff14f2bbd2a.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/64accc515dc6cd584a2873796cd7da6f93de57f7e465eb5423cca9a2f3fe3eff.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/77d4d795f078408fa2dd49da26d1ba1543d51b63cc253e736f4bef2e6014e888.json +0 -1
- /xinference/web/ui/build/static/js/{main.87d39ffb.js.LICENSE.txt → main.78829790.js.LICENSE.txt} +0 -0
- {xinference-0.9.0.dist-info → xinference-0.9.2.dist-info}/LICENSE +0 -0
- {xinference-0.9.0.dist-info → xinference-0.9.2.dist-info}/WHEEL +0 -0
- {xinference-0.9.0.dist-info → xinference-0.9.2.dist-info}/entry_points.txt +0 -0
- {xinference-0.9.0.dist-info → xinference-0.9.2.dist-info}/top_level.txt +0 -0
|
@@ -1,26 +1,26 @@
|
|
|
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=
|
|
3
|
+
xinference/_version.py,sha256=S99LqZ3f3xPrdaWki6fzMuX0aYrTcLMYXLkg0yjn8-s,497
|
|
4
|
+
xinference/conftest.py,sha256=EzkH_9WpPR3qRGMQneI3w00KdhsEkPkl9YXsLgBJ1cg,9438
|
|
5
5
|
xinference/constants.py,sha256=81M8ATbulsB78fht4pp0H8q2dDU2qTqSmu1FAjRiOKk,2738
|
|
6
|
-
xinference/device_utils.py,sha256=
|
|
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
|
-
xinference/types.py,sha256=
|
|
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=eFCKCiL_PHZuFwNg6dePB-GyGRabH3tzkEfmg3evH_A,54793
|
|
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
|
|
16
16
|
xinference/api/oauth2/utils.py,sha256=SIiiUj6VuTEsj3bZ2TYUyhx3cGlLSX3ZNWDOgUwRtXc,1410
|
|
17
17
|
xinference/client/__init__.py,sha256=Gc4HOzAy_1cic5kXlso7hahYgw89CKvZSJDicEU461k,669
|
|
18
|
-
xinference/client/common.py,sha256=
|
|
18
|
+
xinference/client/common.py,sha256=iciZRs5YjM2gYsXnwACPMaiBZp4_XpawWwfym0Iyu40,1617
|
|
19
19
|
xinference/client/handlers.py,sha256=3gd9C7u4URbcVdR6Eyv8cpEZ175Ll4q_jGL07CnEIpg,648
|
|
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=LVYaRpFS517tLQAlAefh5AYilIOlGoXLaMQWMzvYJ6M,40973
|
|
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
|
|
@@ -29,14 +29,14 @@ xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,26
|
|
|
29
29
|
xinference/core/model.py,sha256=5zQ0MVAiLvohSgy92oOsZZ5kvCe8uPj92qc6SU_aVlA,17700
|
|
30
30
|
xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
|
|
31
31
|
xinference/core/status_guard.py,sha256=ScmTFb3NPTp-RzufdHFpBh5TZHPc2bu907JA8l0gywE,2804
|
|
32
|
-
xinference/core/supervisor.py,sha256=
|
|
32
|
+
xinference/core/supervisor.py,sha256=GoaYGvru7-cGfuDruH89KGmFpMHtOsVDlcqO5rmXZ6o,38392
|
|
33
33
|
xinference/core/utils.py,sha256=tUpUJUQv1zkE9i7fw1pAFfFdcB3PC6DvKJn4Bmmq75E,6008
|
|
34
|
-
xinference/core/worker.py,sha256=
|
|
34
|
+
xinference/core/worker.py,sha256=x24H_hzgp7Kae7dB2ZPaGbIXDs43iRcI5RYS0LRUpig,27542
|
|
35
35
|
xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
36
|
-
xinference/deploy/cmdline.py,sha256=
|
|
36
|
+
xinference/deploy/cmdline.py,sha256=j9wpP9gUSr0Ox2xg0gHgGHu1g2UJYKEWIRQK2YC_oaM,30664
|
|
37
37
|
xinference/deploy/local.py,sha256=hyT6fxjNS_BCH3mrlM6suvRW4OaIg59I1paBXhEnv2g,3951
|
|
38
38
|
xinference/deploy/supervisor.py,sha256=LyERwWG_gxgaTFJLo0Cw7scnT00s0dY7CvZx09VpZX4,2983
|
|
39
|
-
xinference/deploy/utils.py,sha256=
|
|
39
|
+
xinference/deploy/utils.py,sha256=_g4U6GJVzHnEHzF-KSMm-tffba2mtLNnxoEwnC8jmj8,5361
|
|
40
40
|
xinference/deploy/worker.py,sha256=Av3qU1b0tdxfkds3Mc2Qiqy9c_xSD0Tp3cToWoXqTpo,2966
|
|
41
41
|
xinference/deploy/test/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
42
42
|
xinference/deploy/test/test_cmdline.py,sha256=bEQ4-y2IG-ntOA6tP3_EP22WQelMAiJ9BQkuBmRzZAs,6736
|
|
@@ -44,7 +44,7 @@ xinference/locale/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms
|
|
|
44
44
|
xinference/locale/utils.py,sha256=w-G1DAJGw1UUQVVtq6khOZn7ZjobUmTw6qwHMm2eWIs,1312
|
|
45
45
|
xinference/locale/zh_CN.json,sha256=YA55G9s1p05Bt5RBoDo5SV12dd-CMJI0ABap6RpCp4M,1097
|
|
46
46
|
xinference/model/__init__.py,sha256=IRC3ojiqYkVLIK_xsIxYeKypEeeTTdrovnVzK_4L4eg,663
|
|
47
|
-
xinference/model/core.py,sha256=
|
|
47
|
+
xinference/model/core.py,sha256=631-_AnQ9_XlSgFULS_EYQ_r7P1ghh9FHP_z-Q_hj1s,3716
|
|
48
48
|
xinference/model/utils.py,sha256=iLm8Dq70yOlus7_tUkKXFX3ceD_RFSwo5RcM0RnLY_Q,14261
|
|
49
49
|
xinference/model/audio/__init__.py,sha256=fM_2G0I9wFHTMuRrr6bebCaLjfCCSZIThxHXEcBdGh4,967
|
|
50
50
|
xinference/model/audio/core.py,sha256=xBICFsBtqnx6mhkw-4XpcreiwhBOl5NLOIFYDgR8j3s,5051
|
|
@@ -58,40 +58,40 @@ xinference/model/embedding/model_spec.json,sha256=rrKFcgFjOIevuvE2AratcrJssvt1Hw
|
|
|
58
58
|
xinference/model/embedding/model_spec_modelscope.json,sha256=CTS4KgQYgeuojHnv01HHjo5Um_DKbh0Y5TKi4FYMWj8,5248
|
|
59
59
|
xinference/model/embedding/utils.py,sha256=t_y-7TrYenJKzX3p8e8KWXyC66u7Kd7lMvSzEOolnZw,790
|
|
60
60
|
xinference/model/image/__init__.py,sha256=QUIxm9OgY76UAVGlAdkzXNZ8-CbkGnfEwBkyW9TM-NQ,1586
|
|
61
|
-
xinference/model/image/core.py,sha256
|
|
61
|
+
xinference/model/image/core.py,sha256=-GZDyb5P8hWgR7fXg5gNKjpWldrPy84_uY5kmqpNR6s,7032
|
|
62
62
|
xinference/model/image/model_spec.json,sha256=VBo3jTq93UtwD9fB1oqrpIJVaZbyYNiougZuY81pt8g,2965
|
|
63
63
|
xinference/model/image/model_spec_modelscope.json,sha256=KMI-2YOJoLUtN93LZiqqETWTVjhGBpsxo87d6M8eJP8,2964
|
|
64
64
|
xinference/model/image/utils.py,sha256=gxg8jJ2nYaDknzCcSC53WCy1slbB5aWU14AbJbfm6Z4,906
|
|
65
65
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
66
|
-
xinference/model/image/stable_diffusion/core.py,sha256=
|
|
67
|
-
xinference/model/llm/__init__.py,sha256=
|
|
68
|
-
xinference/model/llm/core.py,sha256=
|
|
69
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
70
|
-
xinference/model/llm/llm_family.py,sha256=
|
|
71
|
-
xinference/model/llm/llm_family_modelscope.json,sha256
|
|
66
|
+
xinference/model/image/stable_diffusion/core.py,sha256=YStAtcO-HVR36brvy7DK-D-Z-LT1X4tfwrVrXcLXK5Y,6010
|
|
67
|
+
xinference/model/llm/__init__.py,sha256=j-e1XhrqQvizR4CU4AhURu29t4LA2qWP2hHNf7haj6Q,6417
|
|
68
|
+
xinference/model/llm/core.py,sha256=ubS7maXHr5tzTUey1D8ta49Ur1C5RMB-rnpAZNqZZ8c,9526
|
|
69
|
+
xinference/model/llm/llm_family.json,sha256=iU9tuXAuj29jviFSs6QRosbriPpdOz_BOZ-oCNaTaDU,94770
|
|
70
|
+
xinference/model/llm/llm_family.py,sha256=BoqfNX6DpIJylIOUYd1xpDybu1WyV94HMtdQRlRHVho,33447
|
|
71
|
+
xinference/model/llm/llm_family_modelscope.json,sha256=GsMTaJ1oKcl46fykDTUiuUITH4Z6du41WGci8SDZoU8,58801
|
|
72
72
|
xinference/model/llm/utils.py,sha256=Gh6CjrOnhQAZYrmRUvxLD_io3RLa-xyYQ5G34Lk7OQ0,25715
|
|
73
73
|
xinference/model/llm/ggml/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
74
74
|
xinference/model/llm/ggml/chatglm.py,sha256=Zrzw8K2EroI5v2JlwOAJ08tNFs871n86zRtBxuK97Z8,13044
|
|
75
75
|
xinference/model/llm/ggml/ctransformers.py,sha256=n8dTItZe97cF79NkmsVPirqpBcrZiGAQfd2GRpz9-3I,9917
|
|
76
76
|
xinference/model/llm/ggml/ctransformers_util.py,sha256=WozFJgJZlbuEDPQLhy31YmwGp-oJoUYsnd9HjuGraIE,5271
|
|
77
|
-
xinference/model/llm/ggml/llamacpp.py,sha256=
|
|
77
|
+
xinference/model/llm/ggml/llamacpp.py,sha256=AXOMhyYYdrrZFWREveMZ1xeIqag19KrX0Kcrj2pfNw4,11916
|
|
78
78
|
xinference/model/llm/ggml/tools/__init__.py,sha256=6a6P2VPKE06xKxJ-dTqp4TRO2IEDWvtcVP6gHutAR0M,624
|
|
79
79
|
xinference/model/llm/ggml/tools/convert_ggml_to_gguf.py,sha256=ULvaoAKGH-L6RuRLFOtAOVitKLVPdpd5QyXrLL14gG0,17959
|
|
80
80
|
xinference/model/llm/ggml/tools/gguf.py,sha256=Hv2haR-UN7NdB1N8YId32hFoEPd-JX6_aUNWRJhyJZc,30277
|
|
81
81
|
xinference/model/llm/pytorch/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
82
|
-
xinference/model/llm/pytorch/baichuan.py,sha256=
|
|
83
|
-
xinference/model/llm/pytorch/chatglm.py,sha256=
|
|
82
|
+
xinference/model/llm/pytorch/baichuan.py,sha256=gh49PNue47T4XUwE5bx_ErDwagb1dYVrhBFYXUsJDQ8,2795
|
|
83
|
+
xinference/model/llm/pytorch/chatglm.py,sha256=jjoYRcZmFht9hXKh8zp6JGlY-jPJTJ5nuUc1nJAFfPs,7099
|
|
84
84
|
xinference/model/llm/pytorch/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
|
|
85
|
-
xinference/model/llm/pytorch/core.py,sha256=
|
|
86
|
-
xinference/model/llm/pytorch/falcon.py,sha256=
|
|
87
|
-
xinference/model/llm/pytorch/internlm2.py,sha256=
|
|
88
|
-
xinference/model/llm/pytorch/llama_2.py,sha256=
|
|
89
|
-
xinference/model/llm/pytorch/qwen_vl.py,sha256=
|
|
85
|
+
xinference/model/llm/pytorch/core.py,sha256=bmLyP2GWk4mfq7LP6z8-ME5-AC3KikU2BbglqKPXNck,19228
|
|
86
|
+
xinference/model/llm/pytorch/falcon.py,sha256=Dp19-Sv4mbx1PAVMEp7biATqs4T1WdwcvZZhuVndmYQ,4482
|
|
87
|
+
xinference/model/llm/pytorch/internlm2.py,sha256=WvXehL7iSoL9OB_WE_3omcFBJkwnuUHfWYnS0wWPRvo,5661
|
|
88
|
+
xinference/model/llm/pytorch/llama_2.py,sha256=RiS6chAj-nh_E-GOZPV-Ze1zDevGmJkhWZMdF4Etoq4,3693
|
|
89
|
+
xinference/model/llm/pytorch/qwen_vl.py,sha256=jyE9em7sMTosYPLqW08aCuEc6c2zNKLJzIcFzowKjyk,5722
|
|
90
90
|
xinference/model/llm/pytorch/spec_decoding_utils.py,sha256=brSxcXkXlELprGK2cLjNTW-3h1Lk9GlgcOFYZo5NBAA,18781
|
|
91
91
|
xinference/model/llm/pytorch/spec_model.py,sha256=8E0jZuXp9MlNLCqgvOjNdUeYqJdMZqU78qIzGY9WhkM,6649
|
|
92
92
|
xinference/model/llm/pytorch/utils.py,sha256=frFvbT2Ka4YRsfnx6ma8IW_i8eqqRwSo5pCU0qnOJtQ,17288
|
|
93
|
-
xinference/model/llm/pytorch/vicuna.py,sha256=
|
|
94
|
-
xinference/model/llm/pytorch/yi_vl.py,sha256=
|
|
93
|
+
xinference/model/llm/pytorch/vicuna.py,sha256=PjLD-5BF4MVXkPs1_WncCCuziDKl5tiGXHf-zkrBz_c,2309
|
|
94
|
+
xinference/model/llm/pytorch/yi_vl.py,sha256=aJZQauLmyXEtnz57ZU-Z3pmi0dFdlR_UjnZu0QsC06c,9393
|
|
95
95
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
96
96
|
xinference/model/llm/vllm/core.py,sha256=MYI6BtPsm8frsAsBl8O9p4uKTzrNNCeexIb0UEx1roc,15220
|
|
97
97
|
xinference/model/rerank/__init__.py,sha256=BXIL1uu3ZpZHX9bODhW9lxKUXudZE7-OkXFmmM5rpMU,2817
|
|
@@ -115,12 +115,12 @@ xinference/thirdparty/llava/model/multimodal_projector/__init__.py,sha256=47DEQp
|
|
|
115
115
|
xinference/thirdparty/llava/model/multimodal_projector/builder.py,sha256=URP051uhGLWqC6ERsqjn2MiQDNYzOoQ6EJEcB-Z0RzM,1933
|
|
116
116
|
xinference/web/ui/package-lock.json,sha256=RohJDz4MQ4pn-aoNNNUQHJ0cJAStBFGxc_nI-jj1QvE,766322
|
|
117
117
|
xinference/web/ui/package.json,sha256=hHxujbFJK1cCtCmqkh9z9D8F5WtWYaEB9J1snBEgQZ4,1959
|
|
118
|
-
xinference/web/ui/build/asset-manifest.json,sha256=
|
|
118
|
+
xinference/web/ui/build/asset-manifest.json,sha256=fnHgKyt2q6GpqZOdW1jL-K6JG3Sd5zWRWQIwAeV1CzU,300
|
|
119
119
|
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.
|
|
120
|
+
xinference/web/ui/build/index.html,sha256=-ZrR4-NgxFCHpMNBv6q59IUg0PLOVr5YiR-64paKHT0,589
|
|
121
|
+
xinference/web/ui/build/static/js/main.78829790.js,sha256=-fiYljLedOzAJh-GeTrwwrte2YWCpa30Sb1GQdGZp8U,941641
|
|
122
|
+
xinference/web/ui/build/static/js/main.78829790.js.LICENSE.txt,sha256=8ziOYGb1jthAUKvOTShmsWJ1ZU9Dax-7OPCFl6cARsI,2185
|
|
123
|
+
xinference/web/ui/build/static/js/main.78829790.js.map,sha256=dCEyIEZDrcpXmv0GGrMNfQADAMQFdIxD7kUi47ItVVg,4209445
|
|
124
124
|
xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
|
|
125
125
|
xinference/web/ui/node_modules/.package-lock.json,sha256=BeeuWat6HitNdQxWXtz_VcIin_ZN1rqaSzBNbLMwnEo,764314
|
|
126
126
|
xinference/web/ui/node_modules/.cache/babel-loader/000791038e4133db461021f1018491323a006cca7a53e09c2ac35032bc36d8b6.json,sha256=lcvLWh7kYVCN6ZBwqKJYmnST8it8tv7i7gOzsbV5Gas,1358
|
|
@@ -471,7 +471,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/0729f5b14d4b947f87a7f9222344d
|
|
|
471
471
|
xinference/web/ui/node_modules/.cache/babel-loader/072d75f17ffd0923daa1c60cf27fe37d880e39bf011bd5ef3f518ea36f857019.json,sha256=v9HII1t3HKCnJ0nkTnHoFqE4tgBPkqf-Osql7pavYp8,1848
|
|
472
472
|
xinference/web/ui/node_modules/.cache/babel-loader/072dbe08fc977201380c1894313b328617a6817c6458313f8981ee5eedcbe3e9.json,sha256=jvEivGufFH5-44qsRBUOB_Bm1oQCMrwHdV_u3p6FUes,1020
|
|
473
473
|
xinference/web/ui/node_modules/.cache/babel-loader/073509dec461c060e7fccc1da4ddb7700a2de39b688a774c870169c03eb97215.json,sha256=vbpYZi0iYoOMYbvK_-4Lt6yrxz7sHQgFFhxoiYKqMSc,1348
|
|
474
|
-
xinference/web/ui/node_modules/.cache/babel-loader/0738899eefad7f90261125823d87ea9f0d53667b1479a0c1f398aff14f2bbd2a.json,sha256=nrr2f7eA1g_e454feIBZx1zj-V2bgXErzs8DAJliAhA,59354
|
|
475
474
|
xinference/web/ui/node_modules/.cache/babel-loader/07391101ec58160d69c23b74459b329060ea668a1592eaad42670ad901245847.json,sha256=RZL5Psh9bFfXfX2Cj19XcVHPBrVpwP1dS77QxeTSIEY,1189
|
|
476
475
|
xinference/web/ui/node_modules/.cache/babel-loader/073d9e72651168b125a3872e9554f8ebaf3c94caea063a65b9fad2a333a1e440.json,sha256=B7lWvdVAVsp76M9dkb0T30ocWLTDcTkzokCdNfhyiQA,1945
|
|
477
476
|
xinference/web/ui/node_modules/.cache/babel-loader/074006c85bf3dd5a6c90e656635f2e86fc49b91643f857e6cf82779341f27bd2.json,sha256=UxuI8O4y6VzO68lE2hE1YHwJUeeHK9ZyV6zBpTFiNeg,285
|
|
@@ -1324,6 +1323,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/18c21db77a46f69eaab95da8568a5
|
|
|
1324
1323
|
xinference/web/ui/node_modules/.cache/babel-loader/18c87ffc4ca71003116d9221ae2316cc8658d112063fe3fb46a6d5804365a190.json,sha256=CPSTCuRVNlnr2eEWYHHboZs6cD23AknfYOdIHlAWlY4,1622
|
|
1325
1324
|
xinference/web/ui/node_modules/.cache/babel-loader/18ccbf78600d0206162b2faeaaf559c9bb1ac9c572a3fd1b438a5e6c93dc7f57.json,sha256=uqXL28G8EapOvJ7ebN9EZ0xbjsxGYyCoupqORYUm7y4,1240
|
|
1326
1325
|
xinference/web/ui/node_modules/.cache/babel-loader/18e5af3971afda0e1c9ec66f33577b21dae0d3ffca828e5f52e3c4cd0fc7da20.json,sha256=2_-sN3yJ_V6efE1NiZYF6-3reoXu667idfK0W5ohyhI,2044
|
|
1326
|
+
xinference/web/ui/node_modules/.cache/babel-loader/18e5d5422e2464abf4a3e6d38164570e2e426e0a921e9a2628bbae81b18da353.json,sha256=6PmsHXI4eAlmEArNLeda6zViXBHXgTXyA6YF70Buenc,63287
|
|
1327
1327
|
xinference/web/ui/node_modules/.cache/babel-loader/18ee39d055f5331df7c9f00536a566ea793dbee8e5a084787d949cbae3fa45aa.json,sha256=NGLLvT7Hwp_A26Bw3X6AvPBmCUSlnQOTnkm_BQV8OTc,1214
|
|
1328
1328
|
xinference/web/ui/node_modules/.cache/babel-loader/18ee64a4e09cf8b49b4af9c3c2d456942b7008fb3959683a4c06f02359c00c1a.json,sha256=iP_ZAScWdtKRdbUCBzyyzZni1Ad0YgQRnVkGVtnksLQ,1504
|
|
1329
1329
|
xinference/web/ui/node_modules/.cache/babel-loader/18f35c8bce52b4671064eddaf4e1fb3a594cbce483cad516aa7cb3290c97a4c5.json,sha256=egSPQ0NvroUNwaeQGJYlyPmkxWW2kmtHtVudWZU3qRM,1179
|
|
@@ -4934,7 +4934,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/6496378cf407cf3ca4dfda3ac984c
|
|
|
4934
4934
|
xinference/web/ui/node_modules/.cache/babel-loader/649bb3216e56ff4c29952781547dab470c36b3b44c6bb4ab36c34a76180539e4.json,sha256=AdOC0EXSoPO7OIFryZTYGZ9cZz_iQ2H-OpszUkYbh50,1143
|
|
4935
4935
|
xinference/web/ui/node_modules/.cache/babel-loader/649c027056c0c19018333b36efd37b9ce29663a3481e676860a0994b488154c3.json,sha256=02lE9LdYWIktLq6izm2CA2dqwOtMY2rCv51ueJg6g2Q,1402
|
|
4936
4936
|
xinference/web/ui/node_modules/.cache/babel-loader/64a5abb11fa1df5110147845ad5fc73de39df8f1e86abccf2d5d234ef74a297c.json,sha256=wm5rr-txk0wjdZUFCXUJQEuOZZmshFQSCwvSLmSTHVU,1136
|
|
4937
|
-
xinference/web/ui/node_modules/.cache/babel-loader/64accc515dc6cd584a2873796cd7da6f93de57f7e465eb5423cca9a2f3fe3eff.json,sha256=Sdv0xdm8iavmSbBsQs7cih--KABictW3Q1YWWlhPWzk,61777
|
|
4938
4937
|
xinference/web/ui/node_modules/.cache/babel-loader/64adc71a23c816b3babbeb96e17ed2f00b6254e852c7f087d14f4d2caf6aeb87.json,sha256=lfX5QpYma4N4zBxk2ftgsa1d47P4wq3B8jD2eZpoCz4,957
|
|
4939
4938
|
xinference/web/ui/node_modules/.cache/babel-loader/64ae5880f923b7f0928d95c31d65df2404d75707088d00cb3be61ad2ff63a0dd.json,sha256=51sryOvzXzfeO_HbaAOBAOGt7rDMK08pOKrTe5bFBQ8,2749
|
|
4940
4939
|
xinference/web/ui/node_modules/.cache/babel-loader/64aedc84db607c79b5b7d51b44b42430eecfaddafd5c85f5c30cac1e3fb2f3f4.json,sha256=Qdxcex8da6szmvfNjep-gX29KHNEwdsJDFbIy20OdZg,2396
|
|
@@ -5826,7 +5825,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/77c7f0ca7038cf72e2bdcfa59d54c
|
|
|
5826
5825
|
xinference/web/ui/node_modules/.cache/babel-loader/77c857d7321eb7c9abd76c65969e9264aa57359178906039c323471a40dd37bc.json,sha256=Fl_RU2BxTFqIheL4TCRoi8h_0mStd_H0fGoJ6hL_ROE,1701
|
|
5827
5826
|
xinference/web/ui/node_modules/.cache/babel-loader/77c9b46084c699d598a19005df285fc5ff8966ab2448ed1edeed7b129f3a9f53.json,sha256=mkfALRzdkUtcqY798GY9FIOWvBcFSqhl8BP35Ld3Xb4,2321
|
|
5828
5827
|
xinference/web/ui/node_modules/.cache/babel-loader/77d0ee70e78db503afcdeea5d871cacc8efb030c362c46002079abf7904236e4.json,sha256=6khBUslV9s88IyE2NHAUD4govjZZVo8cPrjekA9jtDc,1730
|
|
5829
|
-
xinference/web/ui/node_modules/.cache/babel-loader/77d4d795f078408fa2dd49da26d1ba1543d51b63cc253e736f4bef2e6014e888.json,sha256=J-Mmv28CsoiFQP1ctm3KC-u5puhefx2CZQRhjWB3b8M,43250
|
|
5830
5828
|
xinference/web/ui/node_modules/.cache/babel-loader/77e849e9a3ab2abd01dfce5de997af4bda7f3b69c5d21b4f63f528114c2dc88e.json,sha256=CtzZsROWhdA1RyGoJI55XBgv_FZDO8KPUP3iAfzI3bc,2327
|
|
5831
5829
|
xinference/web/ui/node_modules/.cache/babel-loader/77fcab23c5c35e143f1c33213d29797f108ae588c93d72241b3e9a7eab33ccc6.json,sha256=byNBS1hnKuLKzQa_4sZAMfH8d9SjaUg-AYMuFvK2NzM,955
|
|
5832
5830
|
xinference/web/ui/node_modules/.cache/babel-loader/780bce27cadc69abd2145c26db57703529a7842e31da4e9de87e773192deb390.json,sha256=JA2Oo4HayVXDE0qqXAlhN9dBlHcfJTTT0-YTPnqXTjU,1926
|
|
@@ -7471,6 +7469,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/98a7e614a3f12e7192ab15e114ec9
|
|
|
7471
7469
|
xinference/web/ui/node_modules/.cache/babel-loader/98a89e941cb20730b264f0a2e9cb2e70667fb825c6fae049f1235423369fdb3a.json,sha256=-4YHTU93Zp7Cx0gJvLJD1-wNLk5bGFiXhkZwlpHaquk,1081
|
|
7472
7470
|
xinference/web/ui/node_modules/.cache/babel-loader/98ac4df0cb2d3243201dbcea2010f686c2c2fee5fef9aaa8b100bf04df44d60e.json,sha256=aeBeL1MK0uOigYUlTwqOAJYXNYfrQT4oeypKoVQUrG8,1599
|
|
7473
7471
|
xinference/web/ui/node_modules/.cache/babel-loader/98afeafdfc285a744d116fb5f189a16ad2b977adbd4fc0757f7ade1b29b8ad31.json,sha256=Cc5dYL6cuSHFbN-6TklkM_9gCbmrS8QMwMrqPek2hh0,2993
|
|
7472
|
+
xinference/web/ui/node_modules/.cache/babel-loader/98b7ef307f436affe13d75a4f265b27e828ccc2b10ffae6513abe2681bc11971.json,sha256=aqH6FmlV3dlEeB0Lxgw4IVLr9oGaUWiBnYeIflRsDeY,61845
|
|
7474
7473
|
xinference/web/ui/node_modules/.cache/babel-loader/98b912aded137b514350bc42652df996dd043a50ee6d4c135ce7611c95038833.json,sha256=CGcB3PyqnXFTFNil58iSqnzielKRrorpM_HcJVFIQW4,1313
|
|
7475
7474
|
xinference/web/ui/node_modules/.cache/babel-loader/98bdf735ffbb0845c6d4f137041cfc33789b94370aaef08c5383008950e705a5.json,sha256=iXl1Sy9Cd21kBWeYI6AlEWT8Kknzxg7GndGCXhF0lxQ,1373
|
|
7476
7475
|
xinference/web/ui/node_modules/.cache/babel-loader/98bed7e77fcdb9b7a42b0a8cb0b0c469330deeb7740b19a24f9894b5d2215551.json,sha256=PeyJqm8x-dorE3nVf21FIIL4xTvcqTkK5l8HVQdyLqY,618
|
|
@@ -11333,6 +11332,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/e855535354a209da3b12d7d44806e
|
|
|
11333
11332
|
xinference/web/ui/node_modules/.cache/babel-loader/e856c21452cd230233fcb41232e891b53314c2e8b2a93686eef48ff99515ab07.json,sha256=zTRNHaxV4qWF58AF3Je9aqd2ZFYC-jjTMuyC4HTDnoY,2254
|
|
11334
11333
|
xinference/web/ui/node_modules/.cache/babel-loader/e864cc61b8a91ef3d94b1a90b338218174bcf93229dd48837bf53e12133bcfe9.json,sha256=j_z13GAWDNa7yfkpXEbRH8SECroKOARjB4ErfmbRMvk,1086
|
|
11335
11334
|
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
11336
|
xinference/web/ui/node_modules/.cache/babel-loader/e86d52de068491a4acf73d16398e3e4a5791de56c05f0ecef134dec1c6a17b3b.json,sha256=onn1ZP0xA_oKTP8vwvmrpxWVMqD0eCyS8Ub5oeg6lKg,2090
|
|
11337
11337
|
xinference/web/ui/node_modules/.cache/babel-loader/e87034d02c960de7fda1a4580986b2e44776e22da2a6ca77fad3effd2e688013.json,sha256=9EjBs7fLeDMrsGUQvtGTu5Zj8h6HT_43dR4yufBmktM,1410
|
|
11338
11338
|
xinference/web/ui/node_modules/.cache/babel-loader/e8819da773befcb502e9690ed3844dd09c3b1b8776c955b1a57d9e0114f586cb.json,sha256=alsKj539uKUXoKboe9xDagWhl_TSdn1blNQdAp3jlec,1378
|
|
@@ -15373,9 +15373,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15373
15373
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15374
15374
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15375
15375
|
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.
|
|
15376
|
+
xinference-0.9.2.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
15377
|
+
xinference-0.9.2.dist-info/METADATA,sha256=7hhiKIp3tIsQwS8QwMx8QVvXx7uBziqCHBOxRR2C0jw,14124
|
|
15378
|
+
xinference-0.9.2.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
15379
|
+
xinference-0.9.2.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
15380
|
+
xinference-0.9.2.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
15381
|
+
xinference-0.9.2.dist-info/RECORD,,
|