xinference 0.10.2.post1__py3-none-any.whl → 0.11.0__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/oauth2/auth_service.py +1 -1
- xinference/api/restful_api.py +53 -61
- xinference/client/restful/restful_client.py +52 -57
- xinference/conftest.py +1 -1
- xinference/core/cache_tracker.py +1 -1
- xinference/core/event.py +1 -1
- xinference/core/model.py +15 -4
- xinference/core/status_guard.py +1 -1
- xinference/core/supervisor.py +58 -72
- xinference/core/worker.py +73 -102
- xinference/deploy/cmdline.py +175 -6
- xinference/deploy/test/test_cmdline.py +2 -0
- xinference/deploy/utils.py +1 -1
- xinference/device_utils.py +29 -3
- xinference/fields.py +5 -1
- xinference/model/audio/model_spec.json +8 -1
- xinference/model/audio/whisper.py +88 -12
- xinference/model/core.py +2 -2
- xinference/model/embedding/core.py +13 -0
- xinference/model/image/__init__.py +29 -0
- xinference/model/image/core.py +6 -0
- xinference/model/image/custom.py +109 -0
- xinference/model/llm/__init__.py +92 -32
- xinference/model/llm/core.py +57 -102
- xinference/model/llm/ggml/tools/convert_ggml_to_gguf.py +2 -2
- xinference/model/llm/llm_family.json +446 -2
- xinference/model/llm/llm_family.py +45 -41
- xinference/model/llm/llm_family_modelscope.json +208 -1
- xinference/model/llm/pytorch/deepseek_vl.py +89 -33
- xinference/model/llm/pytorch/qwen_vl.py +67 -12
- xinference/model/llm/pytorch/yi_vl.py +62 -45
- xinference/model/llm/utils.py +45 -15
- xinference/model/llm/vllm/core.py +21 -4
- xinference/model/rerank/core.py +48 -20
- xinference/thirdparty/omnilmm/chat.py +2 -1
- xinference/thirdparty/omnilmm/model/omnilmm.py +2 -1
- xinference/types.py +2 -0
- xinference/web/ui/build/asset-manifest.json +6 -3
- xinference/web/ui/build/index.html +1 -1
- xinference/web/ui/build/static/css/main.54bca460.css +2 -0
- xinference/web/ui/build/static/css/main.54bca460.css.map +1 -0
- xinference/web/ui/build/static/js/main.8e44da4b.js +3 -0
- xinference/web/ui/build/static/js/{main.26fdbfbe.js.LICENSE.txt → main.8e44da4b.js.LICENSE.txt} +7 -0
- xinference/web/ui/build/static/js/main.8e44da4b.js.map +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/0b11a5339468c13b2d31ac085e7effe4303259b2071abd46a0a8eb8529233a5e.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/29dda700ab913cf7f2cfabe450ddabfb283e96adfa3ec9d315b2fa6c63cd375c.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/2c63e940b945fd5817157e08a42b889b30d668ea4c91332f48ef2b1b9d26f520.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/4135fe8745434cbce6438d1ebfa47422e0c77d884db4edc75c8bf32ea1d50621.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/46b6dd1f6d1109cd0e2455a0ea0be3e9bda1097cd4ebec9c4040070372671cfc.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/4de0a71074f9cbe1e7862750dcdd08cbc1bae7d9d9849a78b1783ca670017b3c.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/53f6c0c0afb51265cd8fb940daeb65523501879ac2a8c03a1ead22b9793c5041.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/8ccbb839002bc5bc03e0a0e7612362bf92f6ae64f87e094f8682d6a6fe4619bb.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/97ed30d6e22cf76f0733651e2c18364689a01665d0b5fe811c1b7ca3eb713c82.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/9c0c70f1838913aaa792a0d2260f17f90fd177b95698ed46b7bc3050eb712c1c.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/9cfd33238ca43e5bf9fc7e442690e8cc6027c73553db36de87e3597ed524ee4b.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/ada71518a429f821a9b1dea38bc951447f03c8db509887e0980b893acac938f3.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/b6c9558d28b5972bb8b2691c5a76a2c8814a815eb3443126da9f49f7d6a0c118.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/bb0f721c084a4d85c09201c984f02ee8437d3b6c5c38a57cb4a101f653daef1b.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/ddaec68b88e5eff792df1e39a4b4b8b737bfc832293c015660c3c69334e3cf5c.json +1 -0
- xinference/web/ui/node_modules/.package-lock.json +33 -0
- xinference/web/ui/node_modules/clipboard/.babelrc.json +11 -0
- xinference/web/ui/node_modules/clipboard/.eslintrc.json +24 -0
- xinference/web/ui/node_modules/clipboard/.prettierrc.json +9 -0
- xinference/web/ui/node_modules/clipboard/bower.json +18 -0
- xinference/web/ui/node_modules/clipboard/composer.json +25 -0
- xinference/web/ui/node_modules/clipboard/package.json +63 -0
- xinference/web/ui/node_modules/delegate/package.json +31 -0
- xinference/web/ui/node_modules/good-listener/bower.json +11 -0
- xinference/web/ui/node_modules/good-listener/package.json +35 -0
- xinference/web/ui/node_modules/select/bower.json +13 -0
- xinference/web/ui/node_modules/select/package.json +29 -0
- xinference/web/ui/node_modules/tiny-emitter/package.json +53 -0
- xinference/web/ui/package-lock.json +34 -0
- xinference/web/ui/package.json +1 -0
- {xinference-0.10.2.post1.dist-info → xinference-0.11.0.dist-info}/METADATA +14 -13
- {xinference-0.10.2.post1.dist-info → xinference-0.11.0.dist-info}/RECORD +81 -60
- xinference/client/oscar/__init__.py +0 -13
- xinference/client/oscar/actor_client.py +0 -611
- xinference/model/llm/pytorch/spec_decoding_utils.py +0 -531
- xinference/model/llm/pytorch/spec_model.py +0 -186
- xinference/web/ui/build/static/js/main.26fdbfbe.js +0 -3
- xinference/web/ui/build/static/js/main.26fdbfbe.js.map +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/63a4c48f0326d071c7772c46598215c006ae41fd3d4ff3577fe717de66ad6e89.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/de0299226173b0662b573f49e3992220f6611947073bd66ac079728a8bc8837d.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/e9b52d171223bb59fb918316297a051cdfd42dd453e8260fd918e90bc0a4ebdf.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/f4d5d1a41892a754c1ee0237450d804b20612d1b657945b59e564161ea47aa7a.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/fad4cd70de36ef6e6d5f8fd74a10ded58d964a8a91ef7681693fbb8376552da7.json +0 -1
- {xinference-0.10.2.post1.dist-info → xinference-0.11.0.dist-info}/LICENSE +0 -0
- {xinference-0.10.2.post1.dist-info → xinference-0.11.0.dist-info}/WHEEL +0 -0
- {xinference-0.10.2.post1.dist-info → xinference-0.11.0.dist-info}/entry_points.txt +0 -0
- {xinference-0.10.2.post1.dist-info → xinference-0.11.0.dist-info}/top_level.txt +0 -0
|
@@ -1,105 +1,102 @@
|
|
|
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=b-1lrEGQLqYt2k34C4OiQjEiNsV-Rp-3tQ8atQOiU2c,498
|
|
4
|
+
xinference/conftest.py,sha256=Qus4KWCeaKS7c5UgNCTpPNucD2bjV8P7u1_qRosgGno,9743
|
|
5
5
|
xinference/constants.py,sha256=Bu_fOJUGAvvqF_6FY5OzOHl7fQ1Nomek3LY17xr9oz4,2882
|
|
6
|
-
xinference/device_utils.py,sha256=
|
|
7
|
-
xinference/fields.py,sha256=
|
|
6
|
+
xinference/device_utils.py,sha256=zswJiws3VyTIaNO8z-MOcsJH_UiPoePPiKK5zoNrjTA,3285
|
|
7
|
+
xinference/fields.py,sha256=OygpX-Egdc7An0gquIynZHh9n4g3L1ZhGVz00Hued3w,5208
|
|
8
8
|
xinference/isolation.py,sha256=NstVRcO3dG4umHExICXAHlzVKwH8ch8MBwKwE-KFkE0,1826
|
|
9
|
-
xinference/types.py,sha256=
|
|
9
|
+
xinference/types.py,sha256=uBaDblt1ZBCL_XVwZwJwfEUKtPikMdoWiUi-P59LnaI,13197
|
|
10
10
|
xinference/utils.py,sha256=VSOJMFd9H7kce98OtJZbcDjjpfzRpHAFs8WU0xXPBM8,717
|
|
11
11
|
xinference/api/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
12
|
-
xinference/api/restful_api.py,sha256=
|
|
12
|
+
xinference/api/restful_api.py,sha256=8x0bQDE17GwQ631vDSjAgEemFZ85l93qPc4t_qUD_kc,59403
|
|
13
13
|
xinference/api/oauth2/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
14
|
-
xinference/api/oauth2/auth_service.py,sha256=
|
|
14
|
+
xinference/api/oauth2/auth_service.py,sha256=74JzB42fbbmBu4Q1dW3A9Fp_N7167KgRGB42Z0NHjAM,6119
|
|
15
15
|
xinference/api/oauth2/types.py,sha256=K923sv_XySIUtM2Eozl9IG082IJcDOS5SFLrPZ5ELBg,996
|
|
16
16
|
xinference/api/oauth2/utils.py,sha256=SIiiUj6VuTEsj3bZ2TYUyhx3cGlLSX3ZNWDOgUwRtXc,1410
|
|
17
17
|
xinference/client/__init__.py,sha256=Gc4HOzAy_1cic5kXlso7hahYgw89CKvZSJDicEU461k,669
|
|
18
18
|
xinference/client/common.py,sha256=iciZRs5YjM2gYsXnwACPMaiBZp4_XpawWwfym0Iyu40,1617
|
|
19
19
|
xinference/client/handlers.py,sha256=3gd9C7u4URbcVdR6Eyv8cpEZ175Ll4q_jGL07CnEIpg,648
|
|
20
|
-
xinference/client/oscar/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
21
|
-
xinference/client/oscar/actor_client.py,sha256=CAI8_UGsCIX94aKv9H1QoVinIxQ2Zm7gcMWXEaUQShw,21593
|
|
22
20
|
xinference/client/restful/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
23
|
-
xinference/client/restful/restful_client.py,sha256=
|
|
21
|
+
xinference/client/restful/restful_client.py,sha256=qM0lPYhyUG7vK1OzBAmkfC3CGf6GimnPhe0kFPedzDE,42798
|
|
24
22
|
xinference/core/__init__.py,sha256=Fe5tYCHDbYJ7PhxJhQ68VbfgKgOsAuslNPr4wPhFMJM,612
|
|
25
|
-
xinference/core/cache_tracker.py,sha256=
|
|
23
|
+
xinference/core/cache_tracker.py,sha256=41utiulASohGLlBqMMSmrAiH7ieGXgahEyyT9xOVh6w,4277
|
|
26
24
|
xinference/core/chat_interface.py,sha256=CNqILarZfdMnZebuOaemK4FomouLqKAcd7lt24JF09Q,17073
|
|
27
|
-
xinference/core/event.py,sha256=
|
|
25
|
+
xinference/core/event.py,sha256=dTXv-zg-sAqlY1rFLvyor9D8WEXZvnUH7NigegpziO8,1648
|
|
28
26
|
xinference/core/image_interface.py,sha256=G2iK24auEN4MrLkPlu1CAA_gf-BQrGQTjazi_FYqIxE,8825
|
|
29
27
|
xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
|
|
30
|
-
xinference/core/model.py,sha256=
|
|
28
|
+
xinference/core/model.py,sha256=w_f2yVc9b4CmxHXA0hmurXX9mK27SuxKIlIAWXBvc8s,18121
|
|
31
29
|
xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
|
|
32
|
-
xinference/core/status_guard.py,sha256=
|
|
33
|
-
xinference/core/supervisor.py,sha256
|
|
30
|
+
xinference/core/status_guard.py,sha256=fF5hisvfn6es9DV6Z6RRD6V_S_uLcb8lHM6PArGgb04,2820
|
|
31
|
+
xinference/core/supervisor.py,sha256=-NaMfDEQMfb0Xlj-_67aOunoxrmIEKM9pqbQ6YCoiiw,40663
|
|
34
32
|
xinference/core/utils.py,sha256=tUpUJUQv1zkE9i7fw1pAFfFdcB3PC6DvKJn4Bmmq75E,6008
|
|
35
|
-
xinference/core/worker.py,sha256=
|
|
33
|
+
xinference/core/worker.py,sha256=kx1ukLOdFM7kyD-E2EtGkmUe7ln7h-IffjinyKOdaLc,32629
|
|
36
34
|
xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
37
|
-
xinference/deploy/cmdline.py,sha256=
|
|
35
|
+
xinference/deploy/cmdline.py,sha256=pd4j9lf376B_v1jdJY5E3TVcK51CslC4w2UV8u8H-T4,41042
|
|
38
36
|
xinference/deploy/local.py,sha256=vlAvhcl8utP1DjW4MJpBgD4JLHQV-1Xebmdd8j9M8IM,3946
|
|
39
37
|
xinference/deploy/supervisor.py,sha256=fMHeEGigQ72PD9JEFmZ5Xudn25Uj4DhD2OVIlAu_YpA,2978
|
|
40
|
-
xinference/deploy/utils.py,sha256=
|
|
38
|
+
xinference/deploy/utils.py,sha256=PYdxLRARG-oZoQZtC-1t2Xve6ehjfuEITwAuDglDMIA,5377
|
|
41
39
|
xinference/deploy/worker.py,sha256=Av3qU1b0tdxfkds3Mc2Qiqy9c_xSD0Tp3cToWoXqTpo,2966
|
|
42
40
|
xinference/deploy/test/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
43
|
-
xinference/deploy/test/test_cmdline.py,sha256=
|
|
41
|
+
xinference/deploy/test/test_cmdline.py,sha256=SMQwrzcxSHDjEldrv9dmC2e_4_ofT14TJLjWMTsho4M,6804
|
|
44
42
|
xinference/locale/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
45
43
|
xinference/locale/utils.py,sha256=w-G1DAJGw1UUQVVtq6khOZn7ZjobUmTw6qwHMm2eWIs,1312
|
|
46
44
|
xinference/locale/zh_CN.json,sha256=YA55G9s1p05Bt5RBoDo5SV12dd-CMJI0ABap6RpCp4M,1097
|
|
47
45
|
xinference/model/__init__.py,sha256=IRC3ojiqYkVLIK_xsIxYeKypEeeTTdrovnVzK_4L4eg,663
|
|
48
|
-
xinference/model/core.py,sha256=
|
|
46
|
+
xinference/model/core.py,sha256=nENyctnKtEBMakd_BpTbgCtLUeci3ak7QIwEk-pq4IM,3546
|
|
49
47
|
xinference/model/utils.py,sha256=qqCaje-dJvSarVzeGgmwKnq85e82JCLPVq2yCfAFZlo,14586
|
|
50
48
|
xinference/model/audio/__init__.py,sha256=0EVzX6b4pcOO63NAcNpYWTVYVa7w7yG5cPpGxOY9MXw,2347
|
|
51
49
|
xinference/model/audio/core.py,sha256=ypbIvbueTFKeulYt7aJX7FfU4y3Hn3DzxkhhjKO6Dxw,4373
|
|
52
50
|
xinference/model/audio/custom.py,sha256=Li6VpTmpZ17YXk_bwN2-tUKRAJwNcW-O4OwrJefzC2o,4966
|
|
53
|
-
xinference/model/audio/model_spec.json,sha256=
|
|
51
|
+
xinference/model/audio/model_spec.json,sha256=dQUgG7HT9Ge4-0TBie7GcyXbPHz4lH_2HttVTm560Dg,2595
|
|
54
52
|
xinference/model/audio/utils.py,sha256=pwo5cHh8nvhyBa9f-17QaVpXMSjmbpGbPYKwBBtEhGM,717
|
|
55
|
-
xinference/model/audio/whisper.py,sha256=
|
|
53
|
+
xinference/model/audio/whisper.py,sha256=NjtaSAJcj_IpJX3drT9NPWNrprVbeLlsDq4uH8AZE8M,7772
|
|
56
54
|
xinference/model/embedding/__init__.py,sha256=0FLzOZyOuMctxFvhobkLXRUepwHck6RPbtjCct1eMI8,2854
|
|
57
|
-
xinference/model/embedding/core.py,sha256=
|
|
55
|
+
xinference/model/embedding/core.py,sha256=VJ1b7zUwkm5VtmtQx3-bYpJuETiKb4345dYP6P4oRM4,13023
|
|
58
56
|
xinference/model/embedding/custom.py,sha256=iE3-iWVzxarXdeTdw5e6rxv6HQRXVbPHp65wwhT2IL8,3919
|
|
59
57
|
xinference/model/embedding/model_spec.json,sha256=hpM2_FhH6gSqmrgu2MMu4u94XMEw6r9A6aKUQObsCK0,6652
|
|
60
58
|
xinference/model/embedding/model_spec_modelscope.json,sha256=No71OUu5OoALs6amJ0UiRU6JH9DkYRQvdvSgCf3IIHs,5814
|
|
61
59
|
xinference/model/embedding/utils.py,sha256=t_y-7TrYenJKzX3p8e8KWXyC66u7Kd7lMvSzEOolnZw,790
|
|
62
|
-
xinference/model/image/__init__.py,sha256=
|
|
63
|
-
xinference/model/image/core.py,sha256=
|
|
60
|
+
xinference/model/image/__init__.py,sha256=lDtP961bpu6h5TK57kJ531Zoch2xU5DM-Eco_YQne-Y,2780
|
|
61
|
+
xinference/model/image/core.py,sha256=tc1gPfKuuIPjD2gNstYtfa03nqARH2z3yMVTdmlLXzU,8221
|
|
62
|
+
xinference/model/image/custom.py,sha256=qtnYWCeZ1VOFFWKRVj_2Ae1Z2I_EoovGIAtju7hUbqg,3839
|
|
64
63
|
xinference/model/image/model_spec.json,sha256=VBo3jTq93UtwD9fB1oqrpIJVaZbyYNiougZuY81pt8g,2965
|
|
65
64
|
xinference/model/image/model_spec_modelscope.json,sha256=KMI-2YOJoLUtN93LZiqqETWTVjhGBpsxo87d6M8eJP8,2964
|
|
66
65
|
xinference/model/image/utils.py,sha256=gxg8jJ2nYaDknzCcSC53WCy1slbB5aWU14AbJbfm6Z4,906
|
|
67
66
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
68
67
|
xinference/model/image/stable_diffusion/core.py,sha256=ib_ZeSg7hzynmRqSnhjtrVuhoLOgZPrR1ZH2LjBmH2E,6063
|
|
69
|
-
xinference/model/llm/__init__.py,sha256=
|
|
70
|
-
xinference/model/llm/core.py,sha256=
|
|
71
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
72
|
-
xinference/model/llm/llm_family.py,sha256=
|
|
73
|
-
xinference/model/llm/llm_family_modelscope.json,sha256=
|
|
74
|
-
xinference/model/llm/utils.py,sha256=
|
|
68
|
+
xinference/model/llm/__init__.py,sha256=Za1yBXmoKlvBPmqQhBV8b9xyIjRjRwfp-Hgb-ttUrck,9790
|
|
69
|
+
xinference/model/llm/core.py,sha256=CZJrbW3HaV8vJj5mxSnBD8ssABALG_xyXyPS0hHVBPY,7982
|
|
70
|
+
xinference/model/llm/llm_family.json,sha256=migaiKsCuOk87Az0BoMmhF2c5j-wspPG6WBtWKE7vgY,135156
|
|
71
|
+
xinference/model/llm/llm_family.py,sha256=IGaVV1hbJfdnalBCKHtYYxb_whJUYgMgt6HBdFcdOcQ,34918
|
|
72
|
+
xinference/model/llm/llm_family_modelscope.json,sha256=fnn9zK5_BG71XWL--Ju_hq_0UXhMcDukRYO3U8VL5jA,82636
|
|
73
|
+
xinference/model/llm/utils.py,sha256=60CwcRMtRGZ52mni7yUXxH_ibj6kMvc8HtRb-MlQeLE,30422
|
|
75
74
|
xinference/model/llm/ggml/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
76
75
|
xinference/model/llm/ggml/chatglm.py,sha256=Zrzw8K2EroI5v2JlwOAJ08tNFs871n86zRtBxuK97Z8,13044
|
|
77
76
|
xinference/model/llm/ggml/llamacpp.py,sha256=HLjcMOOrMoriaTx39jDOufyfY5lXdO84cCWZORjCc8U,11426
|
|
78
77
|
xinference/model/llm/ggml/tools/__init__.py,sha256=6a6P2VPKE06xKxJ-dTqp4TRO2IEDWvtcVP6gHutAR0M,624
|
|
79
|
-
xinference/model/llm/ggml/tools/convert_ggml_to_gguf.py,sha256=
|
|
78
|
+
xinference/model/llm/ggml/tools/convert_ggml_to_gguf.py,sha256=92To8eoVQBkDZD52_aWBNda2K1Ob6YaHlcfS-8_aOuw,17991
|
|
80
79
|
xinference/model/llm/ggml/tools/gguf.py,sha256=Hv2haR-UN7NdB1N8YId32hFoEPd-JX6_aUNWRJhyJZc,30277
|
|
81
80
|
xinference/model/llm/pytorch/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
82
81
|
xinference/model/llm/pytorch/baichuan.py,sha256=JBHldfdjUlSV44HB_td6402CwryDm61rlzw4D_flKHI,2820
|
|
83
82
|
xinference/model/llm/pytorch/chatglm.py,sha256=pU7sp6WgANW1hZbo2x_jpAV0ONaAg1y60h4I8LEZHUk,7255
|
|
84
83
|
xinference/model/llm/pytorch/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
|
|
85
84
|
xinference/model/llm/pytorch/core.py,sha256=ydsgZEZt_tnIUOLjZqzKp48ACE-LK4ptWmtdEshgYOw,19172
|
|
86
|
-
xinference/model/llm/pytorch/deepseek_vl.py,sha256=
|
|
85
|
+
xinference/model/llm/pytorch/deepseek_vl.py,sha256=vaoL7PW42kkAk-fH4HhQAGVpoyqL6_wWCQ8zcWeaJm4,10408
|
|
87
86
|
xinference/model/llm/pytorch/falcon.py,sha256=POSP7vzRJaM5PjvX8dh60jNDXgnCwktwSmeZ7kypQU0,4499
|
|
88
87
|
xinference/model/llm/pytorch/internlm2.py,sha256=8j2S46IIHdFiDAXbKqqV4PT3TOVTuPakE5BmtkN7YaE,5790
|
|
89
88
|
xinference/model/llm/pytorch/llama_2.py,sha256=HMhUmn4oYW2maeSMIr1yY7jlAOMD0OVAxnF0dnRWmio,3710
|
|
90
89
|
xinference/model/llm/pytorch/omnilmm.py,sha256=4r6pipch1LU1FPA80sOCE7Z0k3TO_J8CIT7pmVmWKEM,5664
|
|
91
|
-
xinference/model/llm/pytorch/qwen_vl.py,sha256=
|
|
92
|
-
xinference/model/llm/pytorch/spec_decoding_utils.py,sha256=brSxcXkXlELprGK2cLjNTW-3h1Lk9GlgcOFYZo5NBAA,18781
|
|
93
|
-
xinference/model/llm/pytorch/spec_model.py,sha256=8E0jZuXp9MlNLCqgvOjNdUeYqJdMZqU78qIzGY9WhkM,6649
|
|
90
|
+
xinference/model/llm/pytorch/qwen_vl.py,sha256=uqaTuzIlrMfSS6kk67hLQ9osQjKlI4UYLpFSRmqdEdc,7772
|
|
94
91
|
xinference/model/llm/pytorch/utils.py,sha256=frFvbT2Ka4YRsfnx6ma8IW_i8eqqRwSo5pCU0qnOJtQ,17288
|
|
95
92
|
xinference/model/llm/pytorch/vicuna.py,sha256=avNOgt9fBjwYzahL-j6-EcQS-7km167h8ttJolnNWnE,2334
|
|
96
|
-
xinference/model/llm/pytorch/yi_vl.py,sha256=
|
|
93
|
+
xinference/model/llm/pytorch/yi_vl.py,sha256=fDj-5DoKfIPSsq_tc46svOBhvJSYrujo-Kcp37W0rv0,9779
|
|
97
94
|
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
98
95
|
xinference/model/llm/sglang/core.py,sha256=eqAczZfGJInC_jihXVeKiWQ79Llk3reHDBkdShQlH-0,12915
|
|
99
96
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
100
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
97
|
+
xinference/model/llm/vllm/core.py,sha256=cVQSo7xXvio2Kh9JDoKyZzebITYetGCEcaCIl7H4HyQ,18705
|
|
101
98
|
xinference/model/rerank/__init__.py,sha256=BXIL1uu3ZpZHX9bODhW9lxKUXudZE7-OkXFmmM5rpMU,2817
|
|
102
|
-
xinference/model/rerank/core.py,sha256=
|
|
99
|
+
xinference/model/rerank/core.py,sha256=UVfue73hHE9UL5c-X7OajZfTR_mLTv673RLFWZAfWV4,9665
|
|
103
100
|
xinference/model/rerank/custom.py,sha256=NKk7jA7p4xkuwS5WoOs2SY2wdnoAVpyCjBTvv317bBw,3917
|
|
104
101
|
xinference/model/rerank/model_spec.json,sha256=LCiiCdNz4NYt9vKVnHffk3ZpwvgzzHxe4zsaxOqxL18,1367
|
|
105
102
|
xinference/model/rerank/model_spec_modelscope.json,sha256=vSSC0aWy_DHnNDzzBcMWr2pqdISDmPS95FtD_YfMmn4,1275
|
|
@@ -130,26 +127,28 @@ xinference/thirdparty/llava/model/clip_encoder/clip_encoder.py,sha256=ieNXVeV1UF
|
|
|
130
127
|
xinference/thirdparty/llava/model/multimodal_projector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
128
|
xinference/thirdparty/llava/model/multimodal_projector/builder.py,sha256=URP051uhGLWqC6ERsqjn2MiQDNYzOoQ6EJEcB-Z0RzM,1933
|
|
132
129
|
xinference/thirdparty/omnilmm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
133
|
-
xinference/thirdparty/omnilmm/chat.py,sha256=
|
|
130
|
+
xinference/thirdparty/omnilmm/chat.py,sha256=z7mDC5ZsTIZDVq5lM3S6pI_Oa4Hnw1bDE8LHAki0OuI,6767
|
|
134
131
|
xinference/thirdparty/omnilmm/constants.py,sha256=bq6C4oIANqwTtt5G7sjJUdRlLyTa-_urOHMJN7VBmU4,84
|
|
135
132
|
xinference/thirdparty/omnilmm/conversation.py,sha256=m0lzft61Sw1Z4RxEpucweeQvV0PZEyrvh0mXL7Psh8I,13276
|
|
136
133
|
xinference/thirdparty/omnilmm/utils.py,sha256=VUMXIgq1tx3qwDmS2VewsXra6XqCUArQB0ik0_qk7x0,3989
|
|
137
134
|
xinference/thirdparty/omnilmm/model/__init__.py,sha256=CLYHL_fUqFqH7osJnRhVevBlnHaF06GBoNeYNRSmzq4,40
|
|
138
|
-
xinference/thirdparty/omnilmm/model/omnilmm.py,sha256=
|
|
135
|
+
xinference/thirdparty/omnilmm/model/omnilmm.py,sha256=5m7b-keWplZG1-_YfLqwgaSvuhMJROYTq7AqrEFBl60,23919
|
|
139
136
|
xinference/thirdparty/omnilmm/model/resampler.py,sha256=a4zxggEqFDU-T-vE-6iUZ3Pr65qP5_D_DA59pj5F6pc,5202
|
|
140
137
|
xinference/thirdparty/omnilmm/model/utils.py,sha256=p9OJZ9YH8xLZjZ32iuqtLJPymxa_quUnX79B4EjenCg,16350
|
|
141
138
|
xinference/thirdparty/omnilmm/train/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
142
139
|
xinference/thirdparty/omnilmm/train/train_utils.py,sha256=L4JtFWDKtdEcQYpGW-UV6GCswTqHkiskK3phM9J-xUM,5634
|
|
143
|
-
xinference/web/ui/package-lock.json,sha256=
|
|
144
|
-
xinference/web/ui/package.json,sha256=
|
|
145
|
-
xinference/web/ui/build/asset-manifest.json,sha256=
|
|
140
|
+
xinference/web/ui/package-lock.json,sha256=l-6VBG39LwkPggB5xwKZEip74w_7keFmAW5QQGjs0M8,767866
|
|
141
|
+
xinference/web/ui/package.json,sha256=W0Bq0vT0HOALv-nFo34Fos3r6DKrjR7zAL5swLg5qZg,1987
|
|
142
|
+
xinference/web/ui/build/asset-manifest.json,sha256=FoFtUVRIzXhAT9Hm7FXDFiEbUPa0Lhu0F7KDRqB3-oM,453
|
|
146
143
|
xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
|
|
147
|
-
xinference/web/ui/build/index.html,sha256=
|
|
148
|
-
xinference/web/ui/build/static/
|
|
149
|
-
xinference/web/ui/build/static/
|
|
150
|
-
xinference/web/ui/build/static/js/main.
|
|
144
|
+
xinference/web/ui/build/index.html,sha256=KvRTu9ULiyZ-c2knONXTgjHiJkKiBTQgEz2PPy3Fwp0,650
|
|
145
|
+
xinference/web/ui/build/static/css/main.54bca460.css,sha256=4wtz0RH25SYUxe23fjnvkRT_ryxx64P3Spy00M5bfV4,1529
|
|
146
|
+
xinference/web/ui/build/static/css/main.54bca460.css.map,sha256=eBKcQcqefJDkZZheXW7xIDU4mbic1aJ7SGlh9XEyxVI,2958
|
|
147
|
+
xinference/web/ui/build/static/js/main.8e44da4b.js,sha256=9qkXmoL_KHz5MFyqB1sF56NKMNHT2szE9tG49pUlYOA,960167
|
|
148
|
+
xinference/web/ui/build/static/js/main.8e44da4b.js.LICENSE.txt,sha256=rbybPZZs56fvnjMiAklb5AB-cE9DLmWrrraygrxIG3I,2279
|
|
149
|
+
xinference/web/ui/build/static/js/main.8e44da4b.js.map,sha256=8MBav8mqVPlpRbi-0BnLoCcyw6LzUQQiy_-jrpVRzvc,4292343
|
|
151
150
|
xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
|
|
152
|
-
xinference/web/ui/node_modules/.package-lock.json,sha256=
|
|
151
|
+
xinference/web/ui/node_modules/.package-lock.json,sha256=TiGKTauADRWUfO6X9URCfruDRh_J1_vD5tqMVdoKD0o,765826
|
|
153
152
|
xinference/web/ui/node_modules/.cache/babel-loader/000791038e4133db461021f1018491323a006cca7a53e09c2ac35032bc36d8b6.json,sha256=lcvLWh7kYVCN6ZBwqKJYmnST8it8tv7i7gOzsbV5Gas,1358
|
|
154
153
|
xinference/web/ui/node_modules/.cache/babel-loader/000b04fb1614a5dc3f850972c0b1e78aaa2fd8745590f01cce053cbb9e272a5f.json,sha256=osgqU4dn_ptE5Brf1r0mlwg99LuR7KOyhDcQYukhLd0,1513
|
|
155
154
|
xinference/web/ui/node_modules/.cache/babel-loader/0017de8f973508e6c36d228ff7a46a67e304edb30d3f977332733b0ca889ecc1.json,sha256=R24iaZzGc_igqIaxV0VVGAuZ27Yt6iFMnynoglyTQHo,1205
|
|
@@ -676,6 +675,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/0af4ed4bca091198332466dce20ec
|
|
|
676
675
|
xinference/web/ui/node_modules/.cache/babel-loader/0af76ce20a3e1586290fd96a51f63526f2c8ed20f74cd8de61c16654f9569eb9.json,sha256=IN6FxIo9DNLPfXMCerNteBl0TGD9rPBbf2-a6JFSpso,1567
|
|
677
676
|
xinference/web/ui/node_modules/.cache/babel-loader/0afcc720cb35a14f0b33c205fec3b11fd55cf3399235a1d06cd8cec677395264.json,sha256=qwhxAjnVQwVr1Gc_YOor0qrQe51Z-9W9WS5vfW6XLfs,1177
|
|
678
677
|
xinference/web/ui/node_modules/.cache/babel-loader/0afd8b16ac2fcffb5ee738dc6a640efe2104bc4143c96091ad045fc97a49ca09.json,sha256=dm4ggLYL-tgg2J2czx_N5871iyIGSggpJrEKvxfR7xw,1599
|
|
678
|
+
xinference/web/ui/node_modules/.cache/babel-loader/0b11a5339468c13b2d31ac085e7effe4303259b2071abd46a0a8eb8529233a5e.json,sha256=ipwlLc9wO5ld-rNk0f4lbZNZYw12BLcexoWPa7EZOuU,1982
|
|
679
679
|
xinference/web/ui/node_modules/.cache/babel-loader/0b12be86c1a5e6fa9599fb77c8920e02458ffe49eecc8371d355d3989397632f.json,sha256=Vbwi-pYDnZHArTWx0NojF-tnhFO6lhlS5JodDFKNgqk,1859
|
|
680
680
|
xinference/web/ui/node_modules/.cache/babel-loader/0b28feb35c1940e36c28b18b293e875ca9e41a146ba87dd64c924bd740d6eecf.json,sha256=F7pTzclHmR3wLNW3loxCz_X__wCHEbY9ABvNmJYfLWU,1151
|
|
681
681
|
xinference/web/ui/node_modules/.cache/babel-loader/0b38f3a6b0d102dc6a4e30b39e67ec9aed46615161ac091ff9b1d72d9ca04e5e.json,sha256=wE-UjqlYaKb3YnP3sXK5kUgQ6Vwt3YXbaw8xQBXDs7k,1093
|
|
@@ -2159,6 +2159,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/29cc40e615f56325cbde9685415b2
|
|
|
2159
2159
|
xinference/web/ui/node_modules/.cache/babel-loader/29d1431d2fa14ac80a7bd3bba1d86337bc7c639f689e8d653518186bd4ac73a9.json,sha256=6_7t2jkOg_iaDkhrSa52DJPVrONrC0seiP5WSZYIogg,2385
|
|
2160
2160
|
xinference/web/ui/node_modules/.cache/babel-loader/29da6df07525d0950c0c61dcf086490d69285f3e7282c498b013ba7c6148df97.json,sha256=9ft9G0p_MTM5hywiACuwZ0rWrhv2LeisLMAnhExsCTA,1396
|
|
2161
2161
|
xinference/web/ui/node_modules/.cache/babel-loader/29dc0b3b3dbbc034f9d75d04cd07ff3a9a40088ce1d56262b952be36ab7a54f2.json,sha256=ow0NVoxzzqS6honBhdpanUoqOO3yMBMb_QgN_XHiyhg,2267
|
|
2162
|
+
xinference/web/ui/node_modules/.cache/babel-loader/29dda700ab913cf7f2cfabe450ddabfb283e96adfa3ec9d315b2fa6c63cd375c.json,sha256=3i2kHc2E4KR-qHgXhiYVio0HGx5KgFeXaBE7ZLlgdNc,24043
|
|
2162
2163
|
xinference/web/ui/node_modules/.cache/babel-loader/29eb89cdf30e5159b1950dc1a3742808e2bb2b91966c4f9d046f85530a6c39e4.json,sha256=sXsMNRx3zXpiltQ5wIm6YD1R65dAN38c5K6VkQgJdV4,1737
|
|
2163
2164
|
xinference/web/ui/node_modules/.cache/babel-loader/29faeb133c99060dd3d45ec69f4308d959bc704a2fb493caef140fd19e4382ac.json,sha256=cCZiOww0tUUb8LvMlps7NgpWaYlzsiRFanIE-xvbXtw,1566
|
|
2164
2165
|
xinference/web/ui/node_modules/.cache/babel-loader/29fb5aeb64e6c6f36e7b91309855480df66d6f59636cec906c2c3ba28852cd24.json,sha256=nNW0EeMc0XozNqK9PUjjFlFdq9NiELpthSS1EtfFFOk,2566
|
|
@@ -2270,6 +2271,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/2c4da207b6b1f6072a467142c738c
|
|
|
2270
2271
|
xinference/web/ui/node_modules/.cache/babel-loader/2c5133363486d54687558b3187e5e1bb561b746e83d456876728ca3cb7882fe6.json,sha256=D7-1IgbccyEOXFLfEOhr9Vn3EmcbSeMt-z4CSWlD6Pw,1377
|
|
2271
2272
|
xinference/web/ui/node_modules/.cache/babel-loader/2c5b6d98bec543f42460c5b5c162475b3beffdad04c1da84779ba56f5b2b6cba.json,sha256=b8utd71ppK8gBk0SedyDesmPtdqVWek3TmjV5HFLfCQ,1280
|
|
2272
2273
|
xinference/web/ui/node_modules/.cache/babel-loader/2c5d117d6f55af6667468597273065d9606af53480cbaf064cf8635930ca467d.json,sha256=NKwnZiL9NhaIuaHiQwudxduQMXGW0OFPTBIXIa4vwZc,2035
|
|
2274
|
+
xinference/web/ui/node_modules/.cache/babel-loader/2c63e940b945fd5817157e08a42b889b30d668ea4c91332f48ef2b1b9d26f520.json,sha256=apdUyWn6qFpYFpIeoUAr0tAhLJHpMg7lSEtYeyi535s,12277
|
|
2273
2275
|
xinference/web/ui/node_modules/.cache/babel-loader/2c642c9cd68f5250d03705c9be258b9c5400df44d1645225cef95b584d13473c.json,sha256=2YwuJx1Zr5KF5m0mT0-x8AnlSfmunVmEZ6N86b-J-HQ,1025
|
|
2274
2276
|
xinference/web/ui/node_modules/.cache/babel-loader/2c659121fbc6fa6283330347d457f4e1909277b63350b8e90ece55a3dbc07728.json,sha256=r70Jh_kyhsC6I8MDa7CbhDx49b4GDAOMflHm5QF6t0s,1301
|
|
2275
2277
|
xinference/web/ui/node_modules/.cache/babel-loader/2c6651caafb8daf2eb4aa3a6bf54be817f7cba161a00fcee023b6b68e2afc0d5.json,sha256=QO77k7MJAEa0xrrZ30hlVN9jt8WmJQ0PrVZpE1fLAdA,1688
|
|
@@ -3268,6 +3270,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/41262c8adab0e68af8328b3a68bf2
|
|
|
3268
3270
|
xinference/web/ui/node_modules/.cache/babel-loader/412d7e603551e190b33b62e18d17e115d2ac37191920d695195f91d36e3e8d5c.json,sha256=Mzx_9rvciLBrJSUHfqGSBEMyyBQrlzanl8bKEbjZFgU,1378
|
|
3269
3271
|
xinference/web/ui/node_modules/.cache/babel-loader/4131696e2bf034ee71f2866d4c60fae36265035004ad68dbd8deee4f73fd4279.json,sha256=V_EgBjS11sll3s7PBw8rf4PQZaGhNmDWue7WJMxsEaU,1450
|
|
3270
3272
|
xinference/web/ui/node_modules/.cache/babel-loader/4134956769556ddd168484f5bb8f64d177ed8e266ec6774298bd7f253bfdbb98.json,sha256=xqaKLb0RVtj1IZ8XXD-xFtI7r1Ba3fGb2sz3R2yCA6M,1388
|
|
3273
|
+
xinference/web/ui/node_modules/.cache/babel-loader/4135fe8745434cbce6438d1ebfa47422e0c77d884db4edc75c8bf32ea1d50621.json,sha256=LNSjZoOhB-I8q_L0dDQvsOcpkrCRiFQkS9pKFk5m_Ac,19654
|
|
3271
3274
|
xinference/web/ui/node_modules/.cache/babel-loader/413861ba99304c15aec218803156df28226889a5c8ba039b648ae98429adfcf3.json,sha256=B-_e9IZf-OL8VxI7mYIY6zSiGEhmU9NfZkYIY-5udhw,3100
|
|
3272
3275
|
xinference/web/ui/node_modules/.cache/babel-loader/413921e71cb7cf1137871570d3fc4f82bf3c0c16f069cecb89b9ef2a468203d2.json,sha256=bWwGdAsRsFMzFtv6c9QxM05n2dwW1XkxCuTiM6YOFvo,1026
|
|
3273
3276
|
xinference/web/ui/node_modules/.cache/babel-loader/413f868a3fd94b444a869683f3d68878276c2843340a8567bbe6de448479215a.json,sha256=4UyZpCCs23HCJZSVBThiK2UlTHPuXJpLWrRP3RFPgK4,291
|
|
@@ -3541,6 +3544,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/469ded71a58899b529d1cee35e52b
|
|
|
3541
3544
|
xinference/web/ui/node_modules/.cache/babel-loader/46a411dde1048f429a9a356590369ffdfae95eea378cc6b828adf15a929f531a.json,sha256=ze0Ljm74aVH2YW11XLWz5nkOTp3ffW2IBCmkYoY0nnI,1764
|
|
3542
3545
|
xinference/web/ui/node_modules/.cache/babel-loader/46a9b097c8564d23a32e5b22872d37db781655de9b247b9aefa7f7d953180b8f.json,sha256=LdHYog7RCZQkX19SpqcWwzFtlHP5U62BZtJskC5PeFQ,1266
|
|
3543
3546
|
xinference/web/ui/node_modules/.cache/babel-loader/46abce9830b7c21c96f63a3bc052a2c6a98981e41d90b03426433a86be30e33d.json,sha256=jCGrCrgFdFR47rFqSSYL93or6-Tgm4KBWYVRNGDFtC4,1314
|
|
3547
|
+
xinference/web/ui/node_modules/.cache/babel-loader/46b6dd1f6d1109cd0e2455a0ea0be3e9bda1097cd4ebec9c4040070372671cfc.json,sha256=A6Xp5HtltDffI0OwgKjMHEsyGlqCUU6NMz-GTyU8e2Q,78134
|
|
3544
3548
|
xinference/web/ui/node_modules/.cache/babel-loader/46b949465b8aa03502f9f6c0f80b339a396e34f3d9028b714c9cbdf7a228480b.json,sha256=eazn3DyQNQZgh0b4dCpRJYOHp6S5B-ZuPJjfpJsEFt4,1366
|
|
3545
3549
|
xinference/web/ui/node_modules/.cache/babel-loader/46bd471e666626c2e2c9e09cde19bb30da85e8a84dee0fbee7b3dadf5ec3dcdd.json,sha256=YWHMnJ3r14Y1jQ_2zcqefBQJaSY3t4orqs_VWqSWw8g,1386
|
|
3546
3550
|
xinference/web/ui/node_modules/.cache/babel-loader/46be9f833a196ac30f362e433899c7627db3aab88f7da47366d5efd45895c8bf.json,sha256=uTa8d1z6l3k2eVpsOlvaNm8sAyO2sjMRX4RLAl3GPq8,1537
|
|
@@ -3853,6 +3857,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/4dc98daa9bf2f7c8b6db41af61c9d
|
|
|
3853
3857
|
xinference/web/ui/node_modules/.cache/babel-loader/4dd2d41c4d1cca2534ee48f1782f49f8aa1c8076508080a63481a0dfbc65ae85.json,sha256=N-2jf4XIZsEXeGj6a9sMF-I6Lg87-zHVyQV9IgWJH3Y,1338
|
|
3854
3858
|
xinference/web/ui/node_modules/.cache/babel-loader/4ddc2f4abdb26b7702b8d6efa06c608d2488f6fe17f698e15b63cc5723eef0d1.json,sha256=AhsTkEZe-Y9jMY6aeq7KQxolWYVixcc_LLExs0ENV3o,1541
|
|
3855
3859
|
xinference/web/ui/node_modules/.cache/babel-loader/4dde5b1a98cbd1f46965d40abcfda42aecf2eeccecb0d8e02c79ded9e5492e67.json,sha256=OUZ5fJggSFBteILheqAk5zgpHaS3cMFAliSEDCQlvik,1303
|
|
3860
|
+
xinference/web/ui/node_modules/.cache/babel-loader/4de0a71074f9cbe1e7862750dcdd08cbc1bae7d9d9849a78b1783ca670017b3c.json,sha256=1Z3tjeKuvOsLy7iuiovVicRHE_5q0zLa4HMnRfckrSw,32780
|
|
3856
3861
|
xinference/web/ui/node_modules/.cache/babel-loader/4de35f342fb64c610c5f9b3817986698f38defc8f0e41b1e75f27b3f6d79a912.json,sha256=cqpDtaPen6MjNaA40SiqrbQ7iFPMhPDw-f-tkfEXJTw,1491
|
|
3857
3862
|
xinference/web/ui/node_modules/.cache/babel-loader/4de4b0282a3d1ae02bec0bfe7d6658f039141406e8bfdbe86bf1dc5b115a2524.json,sha256=y5oqX_NkjqnGxdZxfZC8c9rZOT0-cZaPJUJi3SqFJUk,15132
|
|
3858
3863
|
xinference/web/ui/node_modules/.cache/babel-loader/4de90c3af82b41c0a7824b2197310fdce5c6a27e3884e3e080e804b87f121275.json,sha256=hWQL94Rra6VakWiFHsNZgXhmErdw-8vlpwRy6yxjKgE,1423
|
|
@@ -4153,6 +4158,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/53cd9f0e2cc6ec241d0b80be5725b
|
|
|
4153
4158
|
xinference/web/ui/node_modules/.cache/babel-loader/53d941c4d638d3f02acc781ff3b95f41c067b5228f89c0ee917eb297d4bfa050.json,sha256=lPx6k8ZZMhP-TsYJMAx7BWf6uiqk4jRhKI4leU4reHE,18559
|
|
4154
4159
|
xinference/web/ui/node_modules/.cache/babel-loader/53e46025e7b3858d5620724512fe1dd5edfd25cadc79cc135fcdbe08a768f471.json,sha256=MyCCFXMWz2Pr3TH9Fe4wA-91hFn4GKFct4ABNssrn1U,2523
|
|
4155
4160
|
xinference/web/ui/node_modules/.cache/babel-loader/53ec7ceda12bdec2ed9e4864d512a3f061c9bbefbe43c3729962a143ed225984.json,sha256=tmW9GSJaQ3Tp8iFhltf0p4lnoMbstoFuIykYyFNv_tc,2466
|
|
4161
|
+
xinference/web/ui/node_modules/.cache/babel-loader/53f6c0c0afb51265cd8fb940daeb65523501879ac2a8c03a1ead22b9793c5041.json,sha256=kk0VR1-G7csqf4AgeYfcapxp8djzQitGF9F-QKwQCY0,2395
|
|
4156
4162
|
xinference/web/ui/node_modules/.cache/babel-loader/53fccd7e77678e679d661dc2942a8e8df4ea815d986685c8f08024b92aadebc0.json,sha256=nKW5uMKULkxo034ZxVSQwnEYeUt1UJw-q2BqYFjBiPo,1480
|
|
4157
4163
|
xinference/web/ui/node_modules/.cache/babel-loader/5400d0ebcac4d9a70e4e895871d7b92fc96313e952c7f701a000b5111ff4c351.json,sha256=rL2Z_R9FQEsdEFcKoBvIzJE44pJ9MI5tnpjKTg38WUs,1540
|
|
4158
4164
|
xinference/web/ui/node_modules/.cache/babel-loader/5406daf246a2ef54fd8ea8d5d20d0cabe6ecf6ed1aa2bd6ffc74ab9bb532209c.json,sha256=vBg8vWrxo60EfSEHii4SPS5EUdVRV3YEHhH28Tj-kxg,1715
|
|
@@ -4913,7 +4919,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/6390894c9d20969f787b35cada0b4
|
|
|
4913
4919
|
xinference/web/ui/node_modules/.cache/babel-loader/6394b40f15f530a0256b969cb13ae839eaac78abf54a773118685bee0b433f0e.json,sha256=Xk60HByt-09ZOLLvmW1iLXRmEZZp0tKSqotAJfwxuro,3499
|
|
4914
4920
|
xinference/web/ui/node_modules/.cache/babel-loader/639d8627999c782a40e7ef3cebd8cf9417a2994264963f643f15f54013a61ca8.json,sha256=NAWaIB2L61YocM0QmF1iZoZ9V8EGReOJIPYJtAzNh6U,1259
|
|
4915
4921
|
xinference/web/ui/node_modules/.cache/babel-loader/63a21ad97e99b36784a12438fe4b71be86863e2fe7158fae17db2c0c45116dcf.json,sha256=YbAvEEjZd2VTRoIVGJreGRn8int8aisYk6eRZHEWj9Y,1507
|
|
4916
|
-
xinference/web/ui/node_modules/.cache/babel-loader/63a4c48f0326d071c7772c46598215c006ae41fd3d4ff3577fe717de66ad6e89.json,sha256=iXuIpBz80lf_XqyW-E00r9TBSWtZL2THzb0j62ZhJGo,20318
|
|
4917
4922
|
xinference/web/ui/node_modules/.cache/babel-loader/63a72a148a4babed1a4299129de91070eacae7debaad9ec0ee856e2c3451e780.json,sha256=s-4HnGYOaQv-dmu3MWKGf3a8pBPzQdOrugXZsyKB33c,13053
|
|
4918
4923
|
xinference/web/ui/node_modules/.cache/babel-loader/63ab862ba1c1a45c1960952a4d6816120614c47217fe0904f5622904f2b628c6.json,sha256=NS-5RSHksYSy9o9xMOCtp5VEAIR8hEcIvoS3DdUAQes,1623
|
|
4919
4924
|
xinference/web/ui/node_modules/.cache/babel-loader/63afb2a3263a8162320073b9ee04c38bfa8f9ad8f7c400694359a9e150bbf892.json,sha256=Khc0KJwvpX4Lxy1D5u2v760rHd0ApvI4X6lIkf8S4kk,1090
|
|
@@ -6885,6 +6890,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/8ca3929939022830b93dca3b13e47
|
|
|
6885
6890
|
xinference/web/ui/node_modules/.cache/babel-loader/8cb0a22287161e80321b316852d7591e9dd1267a633a3659b5d019e6de4569d8.json,sha256=H8FvsiKat6uOy3WXdPxGq7hN52s5Jc8QT1i-nDtGrmU,2376
|
|
6886
6891
|
xinference/web/ui/node_modules/.cache/babel-loader/8cbf368db6ff67ad3b63c633bca086fb8bd4a8070c4b1a96cfe30823e0c62826.json,sha256=xHVWZ1tS44mU9ZQqOI5wsxnLOu43mm9SAc2rsPQ0lN0,1435
|
|
6887
6892
|
xinference/web/ui/node_modules/.cache/babel-loader/8cc4251283623d978824aec0a7daa1b4d9622dcfaff32f566c5e0e2474b55ae3.json,sha256=XF_xKLj0UiQN2HC6e92jubijK4SiaCaWV6sPi1yoksA,1793
|
|
6893
|
+
xinference/web/ui/node_modules/.cache/babel-loader/8ccbb839002bc5bc03e0a0e7612362bf92f6ae64f87e094f8682d6a6fe4619bb.json,sha256=Ptvtm_xE9Lt51AGq4k08u1hnYnw04D1iJGFafnnSLTk,2106
|
|
6888
6894
|
xinference/web/ui/node_modules/.cache/babel-loader/8ccbfbf3d56d6b364e459a1ea5b3d88cd86a890d16af9481d62a4448d9c13f00.json,sha256=A78o4GZaAe_MnH8uduOKD3NAQxZ41L-5T5q7GYkhOU0,1337
|
|
6889
6895
|
xinference/web/ui/node_modules/.cache/babel-loader/8ccd44a29f374b686508a6f809147342ece162dd1806f58b6c5af133c3a17935.json,sha256=RK7h0erDzw9ALbBIznhIGOjbZGm3FpXTxOBQHuXgIhg,2955
|
|
6890
6896
|
xinference/web/ui/node_modules/.cache/babel-loader/8cd8bbaa1ba821f648cd93dd8ac195914ffc2a4ed6c5e5d0e49a0f227d304897.json,sha256=UG7aBNdgzG8P9kxdr_n0Mk1Tz8oa-8ipCTLApPIwJR4,291
|
|
@@ -7453,6 +7459,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/97dfcc560b80821cfe4f3b4a52428
|
|
|
7453
7459
|
xinference/web/ui/node_modules/.cache/babel-loader/97e408eb065cd1c16d5980eb828b11b07c4028de79a0a4ff896cd854895527fe.json,sha256=l8e5ieWg8eU9YiRryLP-02KA8DdcgGJIebl0ivgjkhg,1177
|
|
7454
7460
|
xinference/web/ui/node_modules/.cache/babel-loader/97e76c3b84f84fd94d18860c0b9a3682ecff245533d33e8509faa6d4fcb9161c.json,sha256=pCDnt07Cdt1PG4CZg3C4mysYUe4ZXRVo5B8ysunmqzY,1000
|
|
7455
7461
|
xinference/web/ui/node_modules/.cache/babel-loader/97e9a7c4c03d1497cb943f4a108abcb8f3207ff048c131754137ee6d9dbc8c5f.json,sha256=h1hmMz1ySiZZnlgTLK51B6X9ctVB0vo9f761OJupn7A,967
|
|
7462
|
+
xinference/web/ui/node_modules/.cache/babel-loader/97ed30d6e22cf76f0733651e2c18364689a01665d0b5fe811c1b7ca3eb713c82.json,sha256=UifmVWe6C764gkwVNVGc8KEwdokI87cG7UDUP--_YvE,1974
|
|
7456
7463
|
xinference/web/ui/node_modules/.cache/babel-loader/97ee80feb75363558f636692fc3b9ca81eaba3bbbd65564e5fc6f4d6b363519e.json,sha256=UUHpeHfI5Lbl1VGvVv4-gHie3ULF0wH7HkUwWTeTbB8,1396
|
|
7457
7464
|
xinference/web/ui/node_modules/.cache/babel-loader/97f05cc279892139fe7727ce50fafbe51f3f9df2eb95ea8adff21b6eba6d8102.json,sha256=Odx2l8VZfXwhLJXBTs2hMZiSNyhiNORUzgtTPL9731M,297
|
|
7458
7465
|
xinference/web/ui/node_modules/.cache/babel-loader/97f9601cc172629f3cdf0efc1810f282d605f2be66205008e55970556ff89ba2.json,sha256=9yluqPp6XGrwuTppNGZhNb6UQrE3ACAcDkxm_ZVolEc,1333
|
|
@@ -7652,6 +7659,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/9c037bec7e97051c0f08a6ba25894
|
|
|
7652
7659
|
xinference/web/ui/node_modules/.cache/babel-loader/9c03f214ff79e42204ba1e5294c686e80bbda4bf37f333e487b7bb3a4a8b09d3.json,sha256=AQfM6ZrVMRvw7jegc8He-jgsKlRQYRf3ds8Xxpq4tSc,1870
|
|
7653
7660
|
xinference/web/ui/node_modules/.cache/babel-loader/9c053aee23d5fe71298487139edbdd9f5689138136a7449b5d2107183b41ddf2.json,sha256=sKwKhtuTYYsrwUr0SzoSFH4LuW1W44Y05Uql9LKe4qA,2928
|
|
7654
7661
|
xinference/web/ui/node_modules/.cache/babel-loader/9c0af3339acb3943dfa17040924fc95748dfa79d11ccdaf1d77d7781e8bcd175.json,sha256=zYTN2M1F5a_GAz91bj7oJvo_vSL2US7a6fzSr8K6qcw,1430
|
|
7662
|
+
xinference/web/ui/node_modules/.cache/babel-loader/9c0c70f1838913aaa792a0d2260f17f90fd177b95698ed46b7bc3050eb712c1c.json,sha256=b6szlCT0fWn1H5L6c37IsP92KbdBcRtp8jG-3G3s-50,8234
|
|
7655
7663
|
xinference/web/ui/node_modules/.cache/babel-loader/9c0e1c108f4d24529439a0d851377f28e7a62791747405d41a889a732f82ff60.json,sha256=As18F9QC-rf57m8ZJr0gJG4JICb4FJLDA4cooB7OcS4,1598
|
|
7656
7664
|
xinference/web/ui/node_modules/.cache/babel-loader/9c169ba067042123c4efbae330bb5f030ff1bde8030dbba8fbc297f6babbbde5.json,sha256=VPFVxUVoqPVt2mKbUNSyKE5f3IJrAUT1B7jfFx4tA3c,2047
|
|
7657
7665
|
xinference/web/ui/node_modules/.cache/babel-loader/9c19c7eeb058e349a4fd23afa3298354bf5a09481ea3fd549f41809f6bddb700.json,sha256=GxUNjYDrc2aZIJppOgfYZKQmdaNQkB61v5MhfK6ovYI,12417
|
|
@@ -7700,6 +7708,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/9cf2ca93c994baac0d8df01468405
|
|
|
7700
7708
|
xinference/web/ui/node_modules/.cache/babel-loader/9cf3d885519350138dcd8fce0b293adfecb865e005d21c23d4deb29b8e053ede.json,sha256=LDUZW3kONMzqYYfNPDJH1q2FvkMsGs0QFl4or6xbBVE,1242
|
|
7701
7709
|
xinference/web/ui/node_modules/.cache/babel-loader/9cf63f11d5716337f053cea8afffa046cbd562b01a523545bc73686f9c2f5d24.json,sha256=kGmuhDzH-gmwzU3k5h4u65YBk6z2CYKKnePhSyAqz14,1276
|
|
7702
7710
|
xinference/web/ui/node_modules/.cache/babel-loader/9cfb6d1d934213d037e4599b000157d02805acb6d837391c8ae602152f28f8a1.json,sha256=uSYusJOuYdZuXRAYRnmxiS4y6hO2oyqnL237j4n_rh4,1131
|
|
7711
|
+
xinference/web/ui/node_modules/.cache/babel-loader/9cfd33238ca43e5bf9fc7e442690e8cc6027c73553db36de87e3597ed524ee4b.json,sha256=c-Bn08UBPeq34rhT_6XdfpM0nib3c6snTATTRrmiTTc,15268
|
|
7703
7712
|
xinference/web/ui/node_modules/.cache/babel-loader/9d029603281bda070faaa2321b644e9a3989064075493bdeb489fa48997e77f4.json,sha256=Yw4asCxy1-tOCO_cCHHfEFqo2ilPeCl-PraqVUHZKos,9478
|
|
7704
7713
|
xinference/web/ui/node_modules/.cache/babel-loader/9d08c0ef26732a14c2c52f50e08667d2dc1e911af94850e508a3ce25c470647d.json,sha256=MEHzAzQXIAAYmSTkWcIApyExU3MyOqV641NRpwTX5jU,2444
|
|
7705
7714
|
xinference/web/ui/node_modules/.cache/babel-loader/9d0f2da3f87b2bd7c1389dcf6c4c8e28acd84a4a723220b69e5207dcbb867524.json,sha256=Y-R7W5qO-Kvr5rw6o7r_JfOkoKu1V0TU-YcIYC4bUZg,1188
|
|
@@ -8491,6 +8500,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/ad9665e7c6756a8e26bdba0a12cc1
|
|
|
8491
8500
|
xinference/web/ui/node_modules/.cache/babel-loader/ad98598068b502f68f24ff9538e99ae66709e997cf5bc1353d3559318298e811.json,sha256=IGhhfVWHIGlCqPtZXxEFpZkmr47gvTA_3FUebCniIDU,1533
|
|
8492
8501
|
xinference/web/ui/node_modules/.cache/babel-loader/ad98cdd8e889ab3b74f150034fa75c1bbd7cdf768ea3131d5f8b77cbf630629a.json,sha256=E1h1Gl-rg5GaS3p5bXYN0DU0ocUxOrQC1jxkdwbZoM0,1787
|
|
8493
8502
|
xinference/web/ui/node_modules/.cache/babel-loader/ada17a83f472b4350d1c1bf38001a4dd370df08aa70d5377d32b74cb342fbc60.json,sha256=uKazdUapBC9ROjvxy5zZV7jtSO10ac30uwzwlopVISk,1015
|
|
8503
|
+
xinference/web/ui/node_modules/.cache/babel-loader/ada71518a429f821a9b1dea38bc951447f03c8db509887e0980b893acac938f3.json,sha256=b1V6p64VwPXZW2Y407HVn88k9Mzia2rQGhwudnLN1TI,89566
|
|
8494
8504
|
xinference/web/ui/node_modules/.cache/babel-loader/ada7cbdd8d8d6b81776b08d3dd81f6e562546ce8827b55e88e340321db979cec.json,sha256=_C7knrOlO2zJHBHD2z5yhsXjvODq_v4bpqrZWYhCekE,1579
|
|
8495
8505
|
xinference/web/ui/node_modules/.cache/babel-loader/ada86eb2eacc566cb58a52d4c6c910a2ea6c95a5fc2cb460c9b735534e5400b5.json,sha256=I6oQEEIQ4YLUMvEFEpM7WKRynhbTtnK_TFyb1DfGmn8,18283
|
|
8496
8506
|
xinference/web/ui/node_modules/.cache/babel-loader/ada9e4b649b561cb39fe62837e2e777da4cf1be8a3ea7b5b7f46bdb606096178.json,sha256=5EMS7FZpi5C1x7eaMVOa3LKOGgH7Pc3EAj9LM3mLURY,1027
|
|
@@ -8926,6 +8936,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/b6c5a369bb032c4982966179a574b
|
|
|
8926
8936
|
xinference/web/ui/node_modules/.cache/babel-loader/b6c74e3e4be2f32e27610bb97cbb0c5c502fd4a225dc1a4e38d800553d3b9069.json,sha256=WpbekKOsNw34i_7_cHcYPt92-yz54PUjMkfYagxU8gg,1106
|
|
8927
8937
|
xinference/web/ui/node_modules/.cache/babel-loader/b6c8004855d024ab09c1bef35d324c31dec18220e872b9fef1732973419a73ee.json,sha256=rwZyAq962gc-Aj9UapoHS1WMpdop-uphe4oSK-ejsng,1904
|
|
8928
8938
|
xinference/web/ui/node_modules/.cache/babel-loader/b6c805a0178bad014597073c60fae6303bbf8f8e1d5406d3e0711dc53dce58b1.json,sha256=RPnn7pEimiUVEJqu6BQMuShUp_9K4QnwJcrUvpPTjNQ,932
|
|
8939
|
+
xinference/web/ui/node_modules/.cache/babel-loader/b6c9558d28b5972bb8b2691c5a76a2c8814a815eb3443126da9f49f7d6a0c118.json,sha256=cRWp7XQZnGDl0J4pagddZ_BLS3L_UzYkgz7B8Pc97Qg,2152
|
|
8929
8940
|
xinference/web/ui/node_modules/.cache/babel-loader/b6ceb399e094ed329b9279e8a3cb04596271f4c579f3aaae51a6c3586f0f774e.json,sha256=VqdG_XFJYU0ZydAyzWkYlpM5NiHISiUx3_Wht5iPcTk,1337
|
|
8930
8941
|
xinference/web/ui/node_modules/.cache/babel-loader/b6d4767e0e96cad90369b5757e7811026d5196dea0414bbd88b7dde51c8467f6.json,sha256=ZiIAEkzFYjWOgmgs1qvnkODfvdz8vagVQ122DgDK6FM,1221
|
|
8931
8942
|
xinference/web/ui/node_modules/.cache/babel-loader/b6db09038f2bb6534996ce67f93fef733ae46788809957afa4ad70aaf7195847.json,sha256=iGijtNuAr5qnUfjtSXJEdJ37XZlXbEL2bsLoZo9sm9Q,2645
|
|
@@ -9113,6 +9124,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/baf7a7e39d998b8ad1ba17893a9cc
|
|
|
9113
9124
|
xinference/web/ui/node_modules/.cache/babel-loader/bb0255b5ce114eff6294515c609d38cff72cd482c4e9766f0182086d34dd4452.json,sha256=fsyI20T0A7B0OBM3K_FwzPKIiSqD8Z2lAFN8Kax-OtA,1336
|
|
9114
9125
|
xinference/web/ui/node_modules/.cache/babel-loader/bb03971cc758850367d1ebdf3a4b17ed68e89de18880a5ccec81f763c4285512.json,sha256=JZ0T2J0SYsMhl23ZoGoc-5KFiV5zFPzhvPWiZj29xMU,1887
|
|
9115
9126
|
xinference/web/ui/node_modules/.cache/babel-loader/bb0c02387fb3bed45ac1111f303ce69697ebe85802a18e8631d27d1d2bdeddf4.json,sha256=ZChOtgrML0o8QTCyOjiP1v26Vgzm5_2h3J7w9IpU7aA,1440
|
|
9127
|
+
xinference/web/ui/node_modules/.cache/babel-loader/bb0f721c084a4d85c09201c984f02ee8437d3b6c5c38a57cb4a101f653daef1b.json,sha256=xfxDva_57X4RCyXx6joIiC4Hpa3nFKl5oyGuAP1YUMU,1948
|
|
9116
9128
|
xinference/web/ui/node_modules/.cache/babel-loader/bb104c767be47cb6b3e8103c7f2d6f796b1299b681ced52161cd22631514a487.json,sha256=lmdP1BwlDUWcilC7gFu_9i1S33plnHtnMqME_qI4ucg,1710
|
|
9117
9129
|
xinference/web/ui/node_modules/.cache/babel-loader/bb16138c9fbaf636fd52b95294ec9ae09d6ee17c723dd4224df9e589d3a2b200.json,sha256=ePsRtb6Vx5n7XCBRJMZAtWjSI2DI2V1ezlqcWzLTf9M,1289
|
|
9118
9130
|
xinference/web/ui/node_modules/.cache/babel-loader/bb1dd9c109932dcca3e3dd09620dd37b1cb8437236e958c2e0053865f32d08c0.json,sha256=N-OUsgeRklNgS5IOQpL2Tfxuojc8HCkXz4-3xnfiS4o,1316
|
|
@@ -10805,6 +10817,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/dd9c51a9ca13cb4301841fb349a9b
|
|
|
10805
10817
|
xinference/web/ui/node_modules/.cache/babel-loader/dd9d14c69f18f1e11efcfbb9d05c9207ce16ba67a196b802e89653337570e41c.json,sha256=joRjAFucZDnIJsXsIRcRM6TWZHw-tMz83UfoyCdkDTQ,1032
|
|
10806
10818
|
xinference/web/ui/node_modules/.cache/babel-loader/dd9e01dacfd525823e5564983dc4ce4c654305893fa2769d24f9574103a1543f.json,sha256=AZmN2PexKlczzT2goeFs7fzdfyfDXAWaBQF-kdnXROw,1172
|
|
10807
10819
|
xinference/web/ui/node_modules/.cache/babel-loader/ddac931e9f2e469acf1d9469ff25924ddea06fe5874ec107b9d58848961780ed.json,sha256=1WgbDVABC-9fTFPoSeKfy2FFXe5505yFORBFzRdb2y4,1217
|
|
10820
|
+
xinference/web/ui/node_modules/.cache/babel-loader/ddaec68b88e5eff792df1e39a4b4b8b737bfc832293c015660c3c69334e3cf5c.json,sha256=kZcssaWZPTA0pLRh5OXSpPxfFGWyTJ6G0P8Dk5rtx1o,103318
|
|
10808
10821
|
xinference/web/ui/node_modules/.cache/babel-loader/ddb7faca5ddb45fe5d3069edce85189268be15bd1a123de6558e13b66e11bb3c.json,sha256=CHTVOX65rYUO-s37Afa_sr-NJD0fV5BEN-icIjQBnP4,1931
|
|
10809
10822
|
xinference/web/ui/node_modules/.cache/babel-loader/ddbb86885f9831b28e6a7531b5b2020bb4cfbe95b7e38e641177ec7926250f99.json,sha256=NwMP1hUK3rfivmu2XSjbuM7YWXcWe7XrSwU5pQCbDDw,2064
|
|
10810
10823
|
xinference/web/ui/node_modules/.cache/babel-loader/ddbd850e27d640dcf0ce67495c814308090db95ca0a69048920ea1b194f4cb6c.json,sha256=tE2r61j04S3qfUtO76T49HqzL_-5p5lYVZlkq3iJcK8,1730
|
|
@@ -10823,7 +10836,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/ddf46e7e62ec7cb53d3c29eeb545e
|
|
|
10823
10836
|
xinference/web/ui/node_modules/.cache/babel-loader/ddf64a208ce70390933304b2f7962533a460d19579aca0b318949a4744b4a249.json,sha256=enfSND-YQm9BQzWRPXDrpXhNuLQgHl45kbaRDzESNXM,1773
|
|
10824
10837
|
xinference/web/ui/node_modules/.cache/babel-loader/ddfc3818a5b49347922c62fa50e463d491a025e9d11aa60519e9af6349f48648.json,sha256=fU0qHVnTQvxFIqwJ_8sI6nqGZtdV2LVF_ZGznUaPkFY,1377
|
|
10825
10838
|
xinference/web/ui/node_modules/.cache/babel-loader/de00080e1f6523fd3461daf426efd39613d46bbfc1c45ba890d8aa3bf5e1fd35.json,sha256=I6VyohAHhzJBU7UkA_kLbR5R31S-ii5-c6ryAk3JyIo,1594
|
|
10826
|
-
xinference/web/ui/node_modules/.cache/babel-loader/de0299226173b0662b573f49e3992220f6611947073bd66ac079728a8bc8837d.json,sha256=aR5C7vnf3U81U-iaA8WSwHKKnj2nU-Cv8o30knXSfDQ,23055
|
|
10827
10839
|
xinference/web/ui/node_modules/.cache/babel-loader/de077829da1754f22e1077c34926b657fc94550dba7a5b0fabf6fb3731cb42d1.json,sha256=yjIHaFTKuOha7EHqn_E-gLwauKWEXct0c1PccvjGnac,1212
|
|
10828
10840
|
xinference/web/ui/node_modules/.cache/babel-loader/de0b9a624fdd07dd1dec4049ccebf677c3660fd45ab4a95b583cf6c1757f2599.json,sha256=vO6SNDGDKg4Vfndn8A9KaT-04LLHH9Qdn0X_ddQ1zWk,2359
|
|
10829
10841
|
xinference/web/ui/node_modules/.cache/babel-loader/de0dc4d5e6a6e23c1c2959b018c7e299c990b4410c0c235869b478e425f712df.json,sha256=hH4d4qUvnu1oHVG0NgwVrBGotgtFngUOW83OoNkrdHI,3966
|
|
@@ -11429,7 +11441,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/e9a7365eb8af82f555c3719021192
|
|
|
11429
11441
|
xinference/web/ui/node_modules/.cache/babel-loader/e9aa343577702cc956dcc2289f9ee37b90a37373675d187144a02fbab8caef84.json,sha256=qWRQbN2YJClV4ppCGilyxEIkAh-eFeFasGBvxzXaEdY,1086
|
|
11430
11442
|
xinference/web/ui/node_modules/.cache/babel-loader/e9acbef2d54fea7a606188750a95a7145b16cc1f01d975b2b34989ad61f2bb49.json,sha256=5azim9-YTBGSZcip3X91T7PvnxodRLYcB8Ti7mQcfM4,2915
|
|
11431
11443
|
xinference/web/ui/node_modules/.cache/babel-loader/e9b441f134b7792b0d37c243435f56a778f9a963a6a4b5f2f55bbd15e9f0833c.json,sha256=Y1Jk8Ma3SieF_Wnk2coAJAY3Z8FfOKUjprCsOory57w,1249
|
|
11432
|
-
xinference/web/ui/node_modules/.cache/babel-loader/e9b52d171223bb59fb918316297a051cdfd42dd453e8260fd918e90bc0a4ebdf.json,sha256=AMTSfkMycu4ZNDFppldIjRwXMk8x5t6AiiQFDELiJhE,63920
|
|
11433
11444
|
xinference/web/ui/node_modules/.cache/babel-loader/e9ba003a44d1c91e844c59f631c7e655810ac209a1f5209b64654aee3bc112f5.json,sha256=p6PRdzoqOfiPJZG_CR7jPuBenZxW9jOKhnE4fF6BXjk,1617
|
|
11434
11445
|
xinference/web/ui/node_modules/.cache/babel-loader/e9bb0b387f3f504f6aa3c03fa90e9b957f19333cc5f783bc64a3fcb8ac38412d.json,sha256=xHSeNv6Q27etOZtzg_A2OLibban9zipFKGU1uC9cZS4,1537
|
|
11435
11446
|
xinference/web/ui/node_modules/.cache/babel-loader/e9bd2c07b368e685ef13f2de798e3d7ee1b2641a7f764b9d2e2deb20829d773e.json,sha256=VzdXm0nAsyceRUlVxGU2lv929TVJ8747QbKBk6O75ss,1433
|
|
@@ -11943,7 +11954,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/f4bf4af84df4f72f9448025403b6f
|
|
|
11943
11954
|
xinference/web/ui/node_modules/.cache/babel-loader/f4c164c89cfbcb1d81bc0b60e3e7c8715e07c7a23118acf4e3e16715beac09c5.json,sha256=aT8HOgfAi-wvangtlR316UMxqd9z1QShfez06zFalZo,397
|
|
11944
11955
|
xinference/web/ui/node_modules/.cache/babel-loader/f4caef77c081cf03f1d2343e0a0e05a7a89f7d818e295a9034fdff349f07d8be.json,sha256=KHB1h_wbn_Nw5pmFmINfQSUmIVQsbLUEiTaAetAI0Ls,1476
|
|
11945
11956
|
xinference/web/ui/node_modules/.cache/babel-loader/f4cebb5920f9cc89efbc5f60904d2c8f9d2d1fb7c32338ba13761fb5e751c547.json,sha256=SWq_c_GEkYmEWCg5ykDWUDGFx6L-oxg5ubPA-WAWtIQ,20203
|
|
11946
|
-
xinference/web/ui/node_modules/.cache/babel-loader/f4d5d1a41892a754c1ee0237450d804b20612d1b657945b59e564161ea47aa7a.json,sha256=fi3ETphdvrNIIWxF7dNTfo4PhnScEcSGOQ1DXQ8I2Bk,32806
|
|
11947
11957
|
xinference/web/ui/node_modules/.cache/babel-loader/f4d792c26137975a48be49f6a01c155539fa22a6100c737edc42a1499fba8aaa.json,sha256=f75EsdkY4eHBKtsxiX5Ab0yneUyG-FTW7tTsqXVtfPI,1723
|
|
11948
11958
|
xinference/web/ui/node_modules/.cache/babel-loader/f4e25534fad4ea32cd8ec4ff99baca37ac14fafb0d6c8a17883516fff0bac08d.json,sha256=iLTUzcwll5_jl4KpvOGS4_-VtESQRqVbUAYz6o1b8eY,2145
|
|
11949
11959
|
xinference/web/ui/node_modules/.cache/babel-loader/f4e2c5a77f6d23a47169b8144ddde77c2f0695219e535e75edad438546921c89.json,sha256=ZvBVRoAjlKjhWDU5MqFe2YUvrNXBfki18-qbTxGN22c,1064
|
|
@@ -12256,7 +12266,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/fac72563aebf0e08793421360cd10
|
|
|
12256
12266
|
xinference/web/ui/node_modules/.cache/babel-loader/facc6c49e34e1526cd360d6c77f0469a50ea8afdef647792f46091392a2c79f7.json,sha256=cQcUuMqY0OOgWOVja-iTYx__d0hIjQlVhMnKeinZdrs,1086
|
|
12257
12267
|
xinference/web/ui/node_modules/.cache/babel-loader/facd748681a6fd8cbab7c3a6b6aa7e8000459409fdc9bd45e31c9855d1968c10.json,sha256=3_hyukf1KSGqMS40i46ohGKotbFlTp4CGPqxcGPk2AE,1665
|
|
12258
12268
|
xinference/web/ui/node_modules/.cache/babel-loader/facdf712be9e7422b9fd4d59b2a9ca5e9d310d5c91a3615ab130b8b77e54bfe9.json,sha256=KxUlPM8VF4YS-9PdmZvPFzWNz8uES5t6uwwOAhtb3LQ,2161
|
|
12259
|
-
xinference/web/ui/node_modules/.cache/babel-loader/fad4cd70de36ef6e6d5f8fd74a10ded58d964a8a91ef7681693fbb8376552da7.json,sha256=m5Ztu-kWohByXKEnx6EiArIj-k027Wg7_9O2UrsRfv4,94163
|
|
12260
12269
|
xinference/web/ui/node_modules/.cache/babel-loader/fada763c1e1e3777dd9f63f1aba61b5c9a8f3e43639b16e4d5bcb0c7212ab77b.json,sha256=l3cYKd4_OKt_Do-1O3WLXSToPniaFFw_pJCpqsiZjZk,1454
|
|
12261
12270
|
xinference/web/ui/node_modules/.cache/babel-loader/faddef8b524b755c95737f88e41042dfa4c4887ae81332dabac982f063a1c648.json,sha256=5NgM6Mz5NisUdx9rdwrIQIFzt4_ZA6jqZUK2hMy0aPk,3031
|
|
12262
12271
|
xinference/web/ui/node_modules/.cache/babel-loader/faf09723c051f050f9d9813d952ab5e5347221fa6a90d303b4352b46e9026f0b.json,sha256=hZTOvOF_XyhmSNwIXd-jw3kL5DF_qXzLMzetLfPQfW0,1451
|
|
@@ -13530,6 +13539,12 @@ xinference/web/ui/node_modules/cjs-module-lexer/package.json,sha256=abFpUHLKgocG
|
|
|
13530
13539
|
xinference/web/ui/node_modules/classnames/package.json,sha256=uJpKSP5opWa2aMkqfpl0Esrw1PHdRgiS7P1a3SByVgU,921
|
|
13531
13540
|
xinference/web/ui/node_modules/clean-css/package.json,sha256=YX3qom_58hWmp66AYPq_9dJ-HUmMJBA45OZXdgny2xw,1127
|
|
13532
13541
|
xinference/web/ui/node_modules/clean-css/node_modules/source-map/package.json,sha256=P969n1wBB7z3tz4NF-AUcEK8-3SIQQbkQor78XFx7wY,2579
|
|
13542
|
+
xinference/web/ui/node_modules/clipboard/.babelrc.json,sha256=WZ7bz_Wfy8soXWGJrcAp05ETgw9xA14tndFFgZVTWis,132
|
|
13543
|
+
xinference/web/ui/node_modules/clipboard/.eslintrc.json,sha256=TAMBGGafeAPS18EOppeUFgUxlboKUogd28wc0aLobTA,619
|
|
13544
|
+
xinference/web/ui/node_modules/clipboard/.prettierrc.json,sha256=-4yfWlF0x6fJMiFMPh3skctby-iy2KaLjdkFSs6aJqU,158
|
|
13545
|
+
xinference/web/ui/node_modules/clipboard/bower.json,sha256=q2dgFFbPEGt_1Q-rHEi3byCZ7oLejWJyAqFAMs5GHbc,343
|
|
13546
|
+
xinference/web/ui/node_modules/clipboard/composer.json,sha256=X6OyVyJL7biDow_UIIEFTLB_Jx1DUMTFANNnCY5nxnQ,527
|
|
13547
|
+
xinference/web/ui/node_modules/clipboard/package.json,sha256=a0MDf2HmFY-mFKCLjgDoOP_JJ8br3HnyRd6UkEQw8pk,1679
|
|
13533
13548
|
xinference/web/ui/node_modules/cliui/package.json,sha256=E5hyAPTi8jKeNbRclJ8p_DCljwLgjnaypVB6O2x6tr8,2031
|
|
13534
13549
|
xinference/web/ui/node_modules/clsx/package.json,sha256=ASqNhkZ70XniQCJV0fpWIJc44VTGMlpFbfuSHRDoYIw,734
|
|
13535
13550
|
xinference/web/ui/node_modules/co/package.json,sha256=G56KF7T2KTfH9HXfOy1tQS_-_Gd7RKQbgpp0ZHVN5gY,865
|
|
@@ -13782,6 +13797,7 @@ xinference/web/ui/node_modules/define-lazy-prop/package.json,sha256=h24GMtueMwmB
|
|
|
13782
13797
|
xinference/web/ui/node_modules/define-properties/package.json,sha256=thsVBYgzYQ8XGXv7YIR5JnA-B3sYDeaEzMUIZpBvb7E,2281
|
|
13783
13798
|
xinference/web/ui/node_modules/delaunator/package.json,sha256=YRdqVfRJYaVmq7Qzczn_F--AWdqD5WoihsbO8DVbRP0,1347
|
|
13784
13799
|
xinference/web/ui/node_modules/delayed-stream/package.json,sha256=T1vYhu-9j-2mrATbasGqiy6N_BWVA7BlJmfhvIjv1Ms,684
|
|
13800
|
+
xinference/web/ui/node_modules/delegate/package.json,sha256=Wa-jsKUwpKNpT8lRWYhRdskPa7BenG-WZEj-TDQQggQ,755
|
|
13785
13801
|
xinference/web/ui/node_modules/depd/package.json,sha256=WjZZvMLkeyXr-fI_OOuUUqWJIL_ktZQQv6b-hGOaO5k,1335
|
|
13786
13802
|
xinference/web/ui/node_modules/dequal/package.json,sha256=pB5DDNPZkHAPFUTF_-zlUkSat1jXePo0rVRYz27DXWs,1205
|
|
13787
13803
|
xinference/web/ui/node_modules/destroy/package.json,sha256=-GW1BlLcBi9DFC4B9V2ydgzBDSVb0Fr9Iy5ziZnFgYg,1128
|
|
@@ -14109,6 +14125,8 @@ xinference/web/ui/node_modules/globals/globals.json,sha256=TrrADNQUewPOcMF084ws-
|
|
|
14109
14125
|
xinference/web/ui/node_modules/globals/package.json,sha256=mfGo80qkZ6cEbgi-o6_yO8mvCWNhxYoyqEs7gN96gTM,660
|
|
14110
14126
|
xinference/web/ui/node_modules/globalthis/package.json,sha256=6Ymrx6HZPO_B7irOVQLGga1VyDsA2LdItOUeo5jA3H4,2418
|
|
14111
14127
|
xinference/web/ui/node_modules/globby/package.json,sha256=Jie1j5Wve2dZpDM0k3dI-AQfgYOl9I-fjNXk0V0-o2s,1391
|
|
14128
|
+
xinference/web/ui/node_modules/good-listener/bower.json,sha256=yIXKEL0coyRAPbKMEkbGZjc_gYmw_0CCbhzmr0qnr5w,234
|
|
14129
|
+
xinference/web/ui/node_modules/good-listener/package.json,sha256=xFk0XHrOm2WQwx1O6CJ64PO5JlVFvRyq-QdRzMHwxmE,887
|
|
14112
14130
|
xinference/web/ui/node_modules/gopd/package.json,sha256=STqF4PODkOYNNxADR67lRUaJVQGyAYn37erz-76_CzU,1877
|
|
14113
14131
|
xinference/web/ui/node_modules/graceful-fs/package.json,sha256=V0fUumsXFlxuysMKs6MxcV9Bx61Ubh8VdNqxvcsRYYE,1031
|
|
14114
14132
|
xinference/web/ui/node_modules/graphemer/package.json,sha256=pvwePLep48wFJuCcommyAJ7H2lrkfMNdcLgpcChgR68,1433
|
|
@@ -14874,6 +14892,8 @@ xinference/web/ui/node_modules/sax/package.json,sha256=kOyr0Of46JCAZmGhuT4tdsUVp
|
|
|
14874
14892
|
xinference/web/ui/node_modules/saxes/package.json,sha256=VzCGS8duew4gcsh3VsjnP1bgyoQDN_7N7c0-NeHhkcI,2809
|
|
14875
14893
|
xinference/web/ui/node_modules/scheduler/package.json,sha256=gRhcJeGFX6os6sv-ahJ4M2kAdm1mcr7I1i2bZqGvLa4,700
|
|
14876
14894
|
xinference/web/ui/node_modules/schema-utils/package.json,sha256=aRSmWAUeCFIjBbpal3Y0oXHHucYCebexsHzBrtAO5wg,2589
|
|
14895
|
+
xinference/web/ui/node_modules/select/bower.json,sha256=m9UBLMLIpvREffVfNYO3BrGiQm-_s9eH8gysXXjSm94,245
|
|
14896
|
+
xinference/web/ui/node_modules/select/package.json,sha256=8HO2ABUJ47BMR5Y9LRkLHyhAzba6d9uuq2j5vu2I60g,692
|
|
14877
14897
|
xinference/web/ui/node_modules/select-hose/package.json,sha256=Vg1nGD8Gm9fjFR2jHrdti1KCJPSW8fxU_lBQ_GYh2Z4,822
|
|
14878
14898
|
xinference/web/ui/node_modules/selfsigned/package.json,sha256=ZLDP2HSY_ct2bssGqLk9DOPIQgSWcp4vnkxTZ1OIpzE,925
|
|
14879
14899
|
xinference/web/ui/node_modules/semver/package.json,sha256=pweHNeY4tSSOEfsQTwY0GuaFTxWRPTCNPwrPpKg2qkI,1739
|
|
@@ -15036,6 +15056,7 @@ xinference/web/ui/node_modules/throat/package.json,sha256=-JBChmWliY4y5ym0M5gPxW
|
|
|
15036
15056
|
xinference/web/ui/node_modules/thunky/package.json,sha256=Lg-X0MqIVJhjkNzlsnITJcziJg_XgArXJCa4ILOaBbo,709
|
|
15037
15057
|
xinference/web/ui/node_modules/tiny-case/package.json,sha256=A98-P4SJ9u312tGD7fo5C3JnS8iqvhSObpJs_jQgVmY,277
|
|
15038
15058
|
xinference/web/ui/node_modules/tiny-case/tsconfig.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
|
|
15059
|
+
xinference/web/ui/node_modules/tiny-emitter/package.json,sha256=9TKK_R50K6mxB-MW5fxMdOyBIBuvrY645txFbvbWKN4,1434
|
|
15039
15060
|
xinference/web/ui/node_modules/tiny-warning/package.json,sha256=n-yMkTmQV85lbwMidKKU3dyfmZqCJT0GWtKa3rIVsqY,1512
|
|
15040
15061
|
xinference/web/ui/node_modules/tmpl/package.json,sha256=xBz5o2hf_Kr8X1QtYd-SVu2-qd9lr6eAZXDZ5Za5JBY,448
|
|
15041
15062
|
xinference/web/ui/node_modules/to-fast-properties/package.json,sha256=FFLgN5jQ-NNMajXuBcYa-CJvKhVlRTpBKtBcXxnuF-c,640
|
|
@@ -15400,9 +15421,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15400
15421
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15401
15422
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15402
15423
|
xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
|
|
15403
|
-
xinference-0.
|
|
15404
|
-
xinference-0.
|
|
15405
|
-
xinference-0.
|
|
15406
|
-
xinference-0.
|
|
15407
|
-
xinference-0.
|
|
15408
|
-
xinference-0.
|
|
15424
|
+
xinference-0.11.0.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
15425
|
+
xinference-0.11.0.dist-info/METADATA,sha256=1AGDembzJuz74y3yfgH6B5bSV6BccHSnhraXZPcuZWY,15414
|
|
15426
|
+
xinference-0.11.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
15427
|
+
xinference-0.11.0.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
15428
|
+
xinference-0.11.0.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
15429
|
+
xinference-0.11.0.dist-info/RECORD,,
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# Copyright 2022-2023 XProbe Inc.
|
|
2
|
-
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
# you may not use this file except in compliance with the License.
|
|
5
|
-
# You may obtain a copy of the License at
|
|
6
|
-
#
|
|
7
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
#
|
|
9
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
# See the License for the specific language governing permissions and
|
|
13
|
-
# limitations under the License.
|