xinference 0.10.1__py3-none-any.whl → 0.10.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.

Files changed (55) hide show
  1. xinference/_version.py +3 -3
  2. xinference/api/restful_api.py +9 -9
  3. xinference/client/restful/restful_client.py +32 -16
  4. xinference/core/supervisor.py +32 -9
  5. xinference/core/worker.py +13 -8
  6. xinference/deploy/cmdline.py +22 -9
  7. xinference/model/audio/__init__.py +40 -1
  8. xinference/model/audio/core.py +25 -45
  9. xinference/model/audio/custom.py +148 -0
  10. xinference/model/core.py +6 -9
  11. xinference/model/embedding/model_spec.json +24 -0
  12. xinference/model/embedding/model_spec_modelscope.json +24 -0
  13. xinference/model/image/core.py +12 -4
  14. xinference/model/image/stable_diffusion/core.py +8 -7
  15. xinference/model/llm/core.py +9 -14
  16. xinference/model/llm/llm_family.json +263 -0
  17. xinference/model/llm/llm_family.py +26 -4
  18. xinference/model/llm/llm_family_modelscope.json +160 -0
  19. xinference/model/llm/pytorch/baichuan.py +4 -3
  20. xinference/model/llm/pytorch/chatglm.py +3 -2
  21. xinference/model/llm/pytorch/core.py +15 -13
  22. xinference/model/llm/pytorch/falcon.py +6 -5
  23. xinference/model/llm/pytorch/internlm2.py +3 -2
  24. xinference/model/llm/pytorch/llama_2.py +6 -5
  25. xinference/model/llm/pytorch/vicuna.py +4 -3
  26. xinference/model/llm/vllm/core.py +3 -0
  27. xinference/model/rerank/core.py +23 -12
  28. xinference/model/rerank/model_spec.json +24 -0
  29. xinference/model/rerank/model_spec_modelscope.json +25 -1
  30. xinference/model/utils.py +12 -1
  31. xinference/types.py +55 -0
  32. xinference/utils.py +1 -0
  33. xinference/web/ui/build/asset-manifest.json +3 -3
  34. xinference/web/ui/build/index.html +1 -1
  35. xinference/web/ui/build/static/js/main.26fdbfbe.js +3 -0
  36. xinference/web/ui/build/static/js/main.26fdbfbe.js.map +1 -0
  37. xinference/web/ui/node_modules/.cache/babel-loader/1870cd6f7054d04e049e363c0a85526584fe25519378609d2838e28d7492bbf1.json +1 -0
  38. xinference/web/ui/node_modules/.cache/babel-loader/1e86938a0cdf706d21e99b21f5d868fa247c0c88b26807047e26dcdc4d9a9db3.json +1 -0
  39. xinference/web/ui/node_modules/.cache/babel-loader/f4d5d1a41892a754c1ee0237450d804b20612d1b657945b59e564161ea47aa7a.json +1 -0
  40. xinference/web/ui/node_modules/.cache/babel-loader/f9290c0738db50065492ceedc6a4af25083fe18399b7c44d942273349ad9e643.json +1 -0
  41. xinference/web/ui/node_modules/.cache/babel-loader/fad4cd70de36ef6e6d5f8fd74a10ded58d964a8a91ef7681693fbb8376552da7.json +1 -0
  42. xinference/web/ui/node_modules/.cache/babel-loader/feabb04b4aa507102da0a64398a40818e878fd1df9b75dda8461b3e1e7ff3f11.json +1 -0
  43. {xinference-0.10.1.dist-info → xinference-0.10.2.dist-info}/METADATA +4 -1
  44. {xinference-0.10.1.dist-info → xinference-0.10.2.dist-info}/RECORD +49 -46
  45. xinference/web/ui/build/static/js/main.76ef2b17.js +0 -3
  46. xinference/web/ui/build/static/js/main.76ef2b17.js.map +0 -1
  47. xinference/web/ui/node_modules/.cache/babel-loader/35d0e4a317e5582cbb79d901302e9d706520ac53f8a734c2fd8bfde6eb5a4f02.json +0 -1
  48. xinference/web/ui/node_modules/.cache/babel-loader/d076fd56cf3b15ed2433e3744b98c6b4e4410a19903d1db4de5bba0e1a1b3347.json +0 -1
  49. xinference/web/ui/node_modules/.cache/babel-loader/daad8131d91134f6d7aef895a0c9c32e1cb928277cb5aa66c01028126d215be0.json +0 -1
  50. xinference/web/ui/node_modules/.cache/babel-loader/f16aec63602a77bd561d0e67fa00b76469ac54b8033754bba114ec5eb3257964.json +0 -1
  51. /xinference/web/ui/build/static/js/{main.76ef2b17.js.LICENSE.txt → main.26fdbfbe.js.LICENSE.txt} +0 -0
  52. {xinference-0.10.1.dist-info → xinference-0.10.2.dist-info}/LICENSE +0 -0
  53. {xinference-0.10.1.dist-info → xinference-0.10.2.dist-info}/WHEEL +0 -0
  54. {xinference-0.10.1.dist-info → xinference-0.10.2.dist-info}/entry_points.txt +0 -0
  55. {xinference-0.10.1.dist-info → xinference-0.10.2.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=oTQ-yIiSQrulAs6YFr7DX1lPDRP7f49D7wpLgISjlfQ,498
3
+ xinference/_version.py,sha256=ssSjGx-iKXJNU5J5mSKaxTe1YccRpRUOLSoZ8QSvejo,498
4
4
  xinference/conftest.py,sha256=RffV9htxwo6iDEGZwmcj0A_O_XBQM2RRUea4q6XTeGQ,9742
5
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
- xinference/types.py,sha256=93Us0s-AxH25oHhXCPMuP6PRBOTjQzqqwC-Q5VDhoG0,11491
10
- xinference/utils.py,sha256=Z6PPDGmX4EW8OD3OfA2Wa37ZM9OdRTnR00ITMDTu4qE,716
9
+ xinference/types.py,sha256=wMg9xjkDB-g0EEa7cmiOyrQk8Z-DS1-Q-VeD9gO2Vqw,13115
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=FC_Lh-Pw3L1qfKJMAo7BNi8K493Fgs_cDbTEdkRLS1I,59702
12
+ xinference/api/restful_api.py,sha256=UzI_s0XUI31skK1y8mD_afZftv3gmuX4kx9239AVGbQ,59548
13
13
  xinference/api/oauth2/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
14
14
  xinference/api/oauth2/auth_service.py,sha256=k23QD4TeX9RpHEKgGK7aIblv30tou5O9ArUolJyM53c,6103
15
15
  xinference/api/oauth2/types.py,sha256=K923sv_XySIUtM2Eozl9IG082IJcDOS5SFLrPZ5ELBg,996
@@ -20,7 +20,7 @@ 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=CAI8_UGsCIX94aKv9H1QoVinIxQ2Zm7gcMWXEaUQShw,21593
22
22
  xinference/client/restful/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
23
- xinference/client/restful/restful_client.py,sha256=aTwb7f3cB4IuRMLjvCgcRW7WF_HtXJEGWpDDpd-ZLn4,41746
23
+ xinference/client/restful/restful_client.py,sha256=COwWrZNZgvHwFRTdHG5MiIAR8l7AJlmpsemT-TNXXJ8,42575
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
@@ -30,11 +30,11 @@ xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,26
30
30
  xinference/core/model.py,sha256=5zQ0MVAiLvohSgy92oOsZZ5kvCe8uPj92qc6SU_aVlA,17700
31
31
  xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
32
32
  xinference/core/status_guard.py,sha256=ScmTFb3NPTp-RzufdHFpBh5TZHPc2bu907JA8l0gywE,2804
33
- xinference/core/supervisor.py,sha256=E_D6WUVE9Mwkd34Ga5w3ZxOMn1f0yNAiwx0L60qfK00,40332
33
+ xinference/core/supervisor.py,sha256=salJ3vIjkQblexxLYl7Mi46iiWIKhpsY9W8DRXxoHrA,41212
34
34
  xinference/core/utils.py,sha256=tUpUJUQv1zkE9i7fw1pAFfFdcB3PC6DvKJn4Bmmq75E,6008
35
- xinference/core/worker.py,sha256=kNTF4Zdz_mwBOMUewzUS0AGANjKZK0uCfV1k8xM-66o,33302
35
+ xinference/core/worker.py,sha256=kh7laY7FvNvimgxYh5eCodAwaoUVtRp-018Z2X0utxA,33512
36
36
  xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
37
- xinference/deploy/cmdline.py,sha256=E3OBE604Lo0Jl8FWUHE-ythFuU_3uN-V62ZXZ_88YDo,35173
37
+ xinference/deploy/cmdline.py,sha256=_cWl6rUL5ZnxiWLRL5QoVA3xJOVguW2tqtU-rljeHpc,35524
38
38
  xinference/deploy/local.py,sha256=vlAvhcl8utP1DjW4MJpBgD4JLHQV-1Xebmdd8j9M8IM,3946
39
39
  xinference/deploy/supervisor.py,sha256=fMHeEGigQ72PD9JEFmZ5Xudn25Uj4DhD2OVIlAu_YpA,2978
40
40
  xinference/deploy/utils.py,sha256=_g4U6GJVzHnEHzF-KSMm-tffba2mtLNnxoEwnC8jmj8,5361
@@ -45,31 +45,32 @@ xinference/locale/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms
45
45
  xinference/locale/utils.py,sha256=w-G1DAJGw1UUQVVtq6khOZn7ZjobUmTw6qwHMm2eWIs,1312
46
46
  xinference/locale/zh_CN.json,sha256=YA55G9s1p05Bt5RBoDo5SV12dd-CMJI0ABap6RpCp4M,1097
47
47
  xinference/model/__init__.py,sha256=IRC3ojiqYkVLIK_xsIxYeKypEeeTTdrovnVzK_4L4eg,663
48
- xinference/model/core.py,sha256=631-_AnQ9_XlSgFULS_EYQ_r7P1ghh9FHP_z-Q_hj1s,3716
49
- xinference/model/utils.py,sha256=iLm8Dq70yOlus7_tUkKXFX3ceD_RFSwo5RcM0RnLY_Q,14261
50
- xinference/model/audio/__init__.py,sha256=fM_2G0I9wFHTMuRrr6bebCaLjfCCSZIThxHXEcBdGh4,967
51
- xinference/model/audio/core.py,sha256=xBICFsBtqnx6mhkw-4XpcreiwhBOl5NLOIFYDgR8j3s,5051
48
+ xinference/model/core.py,sha256=s21P3bq0ok5sevHo17eQftck8xb4G7C0Z0d4xVTNg8s,3559
49
+ xinference/model/utils.py,sha256=qqCaje-dJvSarVzeGgmwKnq85e82JCLPVq2yCfAFZlo,14586
50
+ xinference/model/audio/__init__.py,sha256=0EVzX6b4pcOO63NAcNpYWTVYVa7w7yG5cPpGxOY9MXw,2347
51
+ xinference/model/audio/core.py,sha256=ypbIvbueTFKeulYt7aJX7FfU4y3Hn3DzxkhhjKO6Dxw,4373
52
+ xinference/model/audio/custom.py,sha256=Li6VpTmpZ17YXk_bwN2-tUKRAJwNcW-O4OwrJefzC2o,4966
52
53
  xinference/model/audio/model_spec.json,sha256=gXsXm33FdDr1SfuNfydmt96jjZac9uVPP0Pxe50HA0k,2362
53
54
  xinference/model/audio/utils.py,sha256=pwo5cHh8nvhyBa9f-17QaVpXMSjmbpGbPYKwBBtEhGM,717
54
55
  xinference/model/audio/whisper.py,sha256=vWUn5huqER_g8ttxzHFNz6UNyDn2CnF7OzS_4PQjjKE,4599
55
56
  xinference/model/embedding/__init__.py,sha256=0FLzOZyOuMctxFvhobkLXRUepwHck6RPbtjCct1eMI8,2854
56
57
  xinference/model/embedding/core.py,sha256=UmLiclNhgJ83fg69pBDr3FK4emgnt5yDM_k-uDNew2Y,12609
57
58
  xinference/model/embedding/custom.py,sha256=iE3-iWVzxarXdeTdw5e6rxv6HQRXVbPHp65wwhT2IL8,3919
58
- xinference/model/embedding/model_spec.json,sha256=rrKFcgFjOIevuvE2AratcrJssvt1HwQfktNLge5yaug,5999
59
- xinference/model/embedding/model_spec_modelscope.json,sha256=CTS4KgQYgeuojHnv01HHjo5Um_DKbh0Y5TKi4FYMWj8,5248
59
+ xinference/model/embedding/model_spec.json,sha256=hpM2_FhH6gSqmrgu2MMu4u94XMEw6r9A6aKUQObsCK0,6652
60
+ xinference/model/embedding/model_spec_modelscope.json,sha256=No71OUu5OoALs6amJ0UiRU6JH9DkYRQvdvSgCf3IIHs,5814
60
61
  xinference/model/embedding/utils.py,sha256=t_y-7TrYenJKzX3p8e8KWXyC66u7Kd7lMvSzEOolnZw,790
61
62
  xinference/model/image/__init__.py,sha256=1jgy0H36_jRRRPUh-hC3zA0ETQgbcdzPhodd9L0DXoA,1697
62
- xinference/model/image/core.py,sha256=hr8fHIumTk8y-EQ3fi4AIyMBzz75wOCkLPNyoQrWo10,7698
63
+ xinference/model/image/core.py,sha256=xSFioXOe9HfsgPtICWiPLCfiQTnZmBEy_dJ3I4WbIZg,7980
63
64
  xinference/model/image/model_spec.json,sha256=VBo3jTq93UtwD9fB1oqrpIJVaZbyYNiougZuY81pt8g,2965
64
65
  xinference/model/image/model_spec_modelscope.json,sha256=KMI-2YOJoLUtN93LZiqqETWTVjhGBpsxo87d6M8eJP8,2964
65
66
  xinference/model/image/utils.py,sha256=gxg8jJ2nYaDknzCcSC53WCy1slbB5aWU14AbJbfm6Z4,906
66
67
  xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
67
- xinference/model/image/stable_diffusion/core.py,sha256=YStAtcO-HVR36brvy7DK-D-Z-LT1X4tfwrVrXcLXK5Y,6010
68
+ xinference/model/image/stable_diffusion/core.py,sha256=ib_ZeSg7hzynmRqSnhjtrVuhoLOgZPrR1ZH2LjBmH2E,6063
68
69
  xinference/model/llm/__init__.py,sha256=op1aUvEPtQ5KeWYvbP-skptyMC8osQphWKs7EbgNJ1c,6555
69
- xinference/model/llm/core.py,sha256=ubS7maXHr5tzTUey1D8ta49Ur1C5RMB-rnpAZNqZZ8c,9526
70
- xinference/model/llm/llm_family.json,sha256=67opqrLBhV54NKu3nMuFAiAkUY9ipFCTxe4WElRPvKY,117633
71
- xinference/model/llm/llm_family.py,sha256=L_-Z2yTJEb6fTQIAENb-RL5QGRsahz2NbTpWRdNejzQ,34034
72
- xinference/model/llm/llm_family_modelscope.json,sha256=AmB09k7pc4XysGUhdH2Radv1WOvyqKAwoZe5L1hqjks,73818
70
+ xinference/model/llm/core.py,sha256=FeZv1UiA7zPdmDcAQpmFL9Bslj6grqOSRvqsqkVtBHg,9572
71
+ xinference/model/llm/llm_family.json,sha256=nDTLZsol-aUoknQ8rNXyEco4AnfaExQOqfgP4Qr8REg,123909
72
+ xinference/model/llm/llm_family.py,sha256=pryVjq7WZ84x9kwzXQgXFgE5UxIqBn_LTudeXnDX5RE,34615
73
+ xinference/model/llm/llm_family_modelscope.json,sha256=g50wfGhW0gIUgOA6FjbLLGDrZpO0MviMOKyvLEK8MQo,77600
73
74
  xinference/model/llm/utils.py,sha256=jjtPltmsoymFD6p8PK-3DLDUzmO4Veg7fBddFZn-0VI,28882
74
75
  xinference/model/llm/ggml/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
75
76
  xinference/model/llm/ggml/chatglm.py,sha256=Zrzw8K2EroI5v2JlwOAJ08tNFs871n86zRtBxuK97Z8,13044
@@ -78,30 +79,30 @@ xinference/model/llm/ggml/tools/__init__.py,sha256=6a6P2VPKE06xKxJ-dTqp4TRO2IEDW
78
79
  xinference/model/llm/ggml/tools/convert_ggml_to_gguf.py,sha256=ULvaoAKGH-L6RuRLFOtAOVitKLVPdpd5QyXrLL14gG0,17959
79
80
  xinference/model/llm/ggml/tools/gguf.py,sha256=Hv2haR-UN7NdB1N8YId32hFoEPd-JX6_aUNWRJhyJZc,30277
80
81
  xinference/model/llm/pytorch/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
81
- xinference/model/llm/pytorch/baichuan.py,sha256=gh49PNue47T4XUwE5bx_ErDwagb1dYVrhBFYXUsJDQ8,2795
82
- xinference/model/llm/pytorch/chatglm.py,sha256=qBr2Cnv1qYzvB15mnstXnavXqTMqVU-gifcIrC5szpc,7253
82
+ xinference/model/llm/pytorch/baichuan.py,sha256=JBHldfdjUlSV44HB_td6402CwryDm61rlzw4D_flKHI,2820
83
+ xinference/model/llm/pytorch/chatglm.py,sha256=pU7sp6WgANW1hZbo2x_jpAV0ONaAg1y60h4I8LEZHUk,7255
83
84
  xinference/model/llm/pytorch/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
84
- xinference/model/llm/pytorch/core.py,sha256=7qomIw6WeCauFTqtPhT5mxvPToRtfLM-xQZI6erKakk,19075
85
+ xinference/model/llm/pytorch/core.py,sha256=ydsgZEZt_tnIUOLjZqzKp48ACE-LK4ptWmtdEshgYOw,19172
85
86
  xinference/model/llm/pytorch/deepseek_vl.py,sha256=NJO6SvludOe7VuS-5_akZ2oNe_w1nDQaWs6NdbRiU5I,8513
86
- xinference/model/llm/pytorch/falcon.py,sha256=Dp19-Sv4mbx1PAVMEp7biATqs4T1WdwcvZZhuVndmYQ,4482
87
- xinference/model/llm/pytorch/internlm2.py,sha256=gIoZfOFrwfUudx5hvFNwO9jF2T4aEIebcZLHKfciGKg,5788
88
- xinference/model/llm/pytorch/llama_2.py,sha256=RiS6chAj-nh_E-GOZPV-Ze1zDevGmJkhWZMdF4Etoq4,3693
87
+ xinference/model/llm/pytorch/falcon.py,sha256=POSP7vzRJaM5PjvX8dh60jNDXgnCwktwSmeZ7kypQU0,4499
88
+ xinference/model/llm/pytorch/internlm2.py,sha256=8j2S46IIHdFiDAXbKqqV4PT3TOVTuPakE5BmtkN7YaE,5790
89
+ xinference/model/llm/pytorch/llama_2.py,sha256=HMhUmn4oYW2maeSMIr1yY7jlAOMD0OVAxnF0dnRWmio,3710
89
90
  xinference/model/llm/pytorch/omnilmm.py,sha256=4r6pipch1LU1FPA80sOCE7Z0k3TO_J8CIT7pmVmWKEM,5664
90
91
  xinference/model/llm/pytorch/qwen_vl.py,sha256=FkyI9iHgPkYwHWkbuMJjEONhwHHhCNAUSTCda1G1e6Y,5853
91
92
  xinference/model/llm/pytorch/spec_decoding_utils.py,sha256=brSxcXkXlELprGK2cLjNTW-3h1Lk9GlgcOFYZo5NBAA,18781
92
93
  xinference/model/llm/pytorch/spec_model.py,sha256=8E0jZuXp9MlNLCqgvOjNdUeYqJdMZqU78qIzGY9WhkM,6649
93
94
  xinference/model/llm/pytorch/utils.py,sha256=frFvbT2Ka4YRsfnx6ma8IW_i8eqqRwSo5pCU0qnOJtQ,17288
94
- xinference/model/llm/pytorch/vicuna.py,sha256=PjLD-5BF4MVXkPs1_WncCCuziDKl5tiGXHf-zkrBz_c,2309
95
+ xinference/model/llm/pytorch/vicuna.py,sha256=avNOgt9fBjwYzahL-j6-EcQS-7km167h8ttJolnNWnE,2334
95
96
  xinference/model/llm/pytorch/yi_vl.py,sha256=aZkMQPlIb522Ue1K62DAMclq1n9HVw4OQNukivgSypk,9554
96
97
  xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
97
98
  xinference/model/llm/sglang/core.py,sha256=eqAczZfGJInC_jihXVeKiWQ79Llk3reHDBkdShQlH-0,12915
98
99
  xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
99
- xinference/model/llm/vllm/core.py,sha256=Qkr3w--1iOM14pmsG5HBSjyQiCMkOp1an2F9_XRxx9U,17866
100
+ xinference/model/llm/vllm/core.py,sha256=H1uLAhVzLEMMMpMpTSUHwOJtDpKV6sr7cJM9OlJcSM4,18039
100
101
  xinference/model/rerank/__init__.py,sha256=BXIL1uu3ZpZHX9bODhW9lxKUXudZE7-OkXFmmM5rpMU,2817
101
- xinference/model/rerank/core.py,sha256=QxMBA8b_Im2XQOhnyn20_GBN3RtncWgwx8ULlz8M47I,7879
102
+ xinference/model/rerank/core.py,sha256=WSrZ7679av_9HRYd6pKD84Z0ZUJpN6-X8bO4OH7ixiY,8395
102
103
  xinference/model/rerank/custom.py,sha256=NKk7jA7p4xkuwS5WoOs2SY2wdnoAVpyCjBTvv317bBw,3917
103
- xinference/model/rerank/model_spec.json,sha256=YXp6FUjYWh4ZKOrZs-bi_36y-T8D-jjmMcdFdocpSeE,574
104
- xinference/model/rerank/model_spec_modelscope.json,sha256=bc9OVu-uFGKRFSkQ37Vrm8agr6bgZR1ib2mVt5KGApk,569
104
+ xinference/model/rerank/model_spec.json,sha256=LCiiCdNz4NYt9vKVnHffk3ZpwvgzzHxe4zsaxOqxL18,1367
105
+ xinference/model/rerank/model_spec_modelscope.json,sha256=vSSC0aWy_DHnNDzzBcMWr2pqdISDmPS95FtD_YfMmn4,1275
105
106
  xinference/model/rerank/utils.py,sha256=MJAFL47G3r3zLVGXKoi0QLTgU3Xr4Ffv72Ipn--psew,713
106
107
  xinference/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
108
  xinference/thirdparty/deepseek_vl/__init__.py,sha256=N5CYTfTFEiTT7mrNrrGTSyvDOVkGVO3pE_fWm8ugcAw,1458
@@ -141,12 +142,12 @@ xinference/thirdparty/omnilmm/train/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY
141
142
  xinference/thirdparty/omnilmm/train/train_utils.py,sha256=L4JtFWDKtdEcQYpGW-UV6GCswTqHkiskK3phM9J-xUM,5634
142
143
  xinference/web/ui/package-lock.json,sha256=RohJDz4MQ4pn-aoNNNUQHJ0cJAStBFGxc_nI-jj1QvE,766322
143
144
  xinference/web/ui/package.json,sha256=hHxujbFJK1cCtCmqkh9z9D8F5WtWYaEB9J1snBEgQZ4,1959
144
- xinference/web/ui/build/asset-manifest.json,sha256=LOktsYZHdsT9vKeirsU4_Kn4PAqJVQKTh1KS40KxcdY,300
145
+ xinference/web/ui/build/asset-manifest.json,sha256=Lh3j9vXGAiTCbysQBCpowa_oU9Ti9POlUqOHd_R_Rss,300
145
146
  xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
146
- xinference/web/ui/build/index.html,sha256=yxHA6keyE8IKzIjc_cqYxgX0Ul7wxO3PXrR2sciiTnE,589
147
- xinference/web/ui/build/static/js/main.76ef2b17.js,sha256=CMm8hYl28t6JLoor2i0EnHQPhZjpqTHbwnaYC8pi2SA,938197
148
- xinference/web/ui/build/static/js/main.76ef2b17.js.LICENSE.txt,sha256=8ziOYGb1jthAUKvOTShmsWJ1ZU9Dax-7OPCFl6cARsI,2185
149
- xinference/web/ui/build/static/js/main.76ef2b17.js.map,sha256=H8cPL1vnJ6l8DAu8PcksporbiMfahWma4XvaTRZ4Axg,4213346
147
+ xinference/web/ui/build/index.html,sha256=7swyyMUNUS6O0E1eOB9nfAWv5MiaciE8S10U0Mprl-8,589
148
+ xinference/web/ui/build/static/js/main.26fdbfbe.js,sha256=N9BRlKCzBNSUSGtGzyKdBA4gjvxIlhg82WC1Vc7t5bc,940225
149
+ xinference/web/ui/build/static/js/main.26fdbfbe.js.LICENSE.txt,sha256=8ziOYGb1jthAUKvOTShmsWJ1ZU9Dax-7OPCFl6cARsI,2185
150
+ xinference/web/ui/build/static/js/main.26fdbfbe.js.map,sha256=8bngylUGbA7F8g_BmifESN41CREV1Tf9LH5JGFb3Cbw,4221775
150
151
  xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
151
152
  xinference/web/ui/node_modules/.package-lock.json,sha256=BeeuWat6HitNdQxWXtz_VcIin_ZN1rqaSzBNbLMwnEo,764314
152
153
  xinference/web/ui/node_modules/.cache/babel-loader/000791038e4133db461021f1018491323a006cca7a53e09c2ac35032bc36d8b6.json,sha256=lcvLWh7kYVCN6ZBwqKJYmnST8it8tv7i7gOzsbV5Gas,1358
@@ -1329,6 +1330,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/184f05dd485735635373312d62ec4
1329
1330
  xinference/web/ui/node_modules/.cache/babel-loader/185ad3c6b393b8cacb29ae482cacf09bd2c8f06ecf36ab3734a3e318e0c486b1.json,sha256=yMfmYSUbuk3dCUg3Yoczl9wHf9dx5A5gRMw1quSJX1Q,3833
1330
1331
  xinference/web/ui/node_modules/.cache/babel-loader/185c00602b71a4543f22396585e3a8d5a1207ae917347fbaba10d36ef89dc2a2.json,sha256=leZ4M33_LzAIKcQapSLWlXDi7IHQFwarnzeexZ0UiXs,1838
1331
1332
  xinference/web/ui/node_modules/.cache/babel-loader/186b515e5d45fac7c5c2ec43bbe5d538f837a44e6204570c6db15359cb6e505f.json,sha256=vzYmNblBqYeLBqwPy6-zrjzBmEZy0MQHBP_yzUvfr8w,378
1333
+ xinference/web/ui/node_modules/.cache/babel-loader/1870cd6f7054d04e049e363c0a85526584fe25519378609d2838e28d7492bbf1.json,sha256=jvekbvR7e8XHOD-EcnkxfD3JIIIORzx4xxV7RjySrKE,10984
1332
1334
  xinference/web/ui/node_modules/.cache/babel-loader/1876a5463c8f42f85a2b7d1d487729c573f68f55aaf670efc9e235f2ee4a6246.json,sha256=VQ3zzjUsLtrJNJGx2CWlGP6ny7nVLtJlyZDiGpJ-94U,751
1333
1335
  xinference/web/ui/node_modules/.cache/babel-loader/187c656322a7ca701b343835c69ae4feb031aff6e347ba3b9549d3b0a3c8f355.json,sha256=1sgW1YOocvKWCSYORWy9JgyikQyG7Mt81ZUJtFe2NvI,1310
1334
1336
  xinference/web/ui/node_modules/.cache/babel-loader/18993457a20954128876029737385ef64bc1a11664d21f730a8a23a5a5440ed0.json,sha256=fYPaDnE85LqbXCoaSkxuwMykRLwROQhzYby4-qbbskY,1918
@@ -1630,6 +1632,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/1e7a5af87904f2a4b3d0319635dc0
1630
1632
  xinference/web/ui/node_modules/.cache/babel-loader/1e7a7e05ec9ccd3205dd12934aa0b0d024ecab78c87cc8dc68626da16535ba46.json,sha256=Y4Idr2ndx5P_pkBwNl82ov0KiUAb9wIfnv-9Ff4CRwE,1192
1631
1633
  xinference/web/ui/node_modules/.cache/babel-loader/1e84c2b6a872331ea3f3640c60fff47d53ed177185becb05ae955349eac229af.json,sha256=7LT6XXU43uBHqZqBhwMo8QQCl_5l_Ihk3W2L3-v5ZPM,2488
1632
1634
  xinference/web/ui/node_modules/.cache/babel-loader/1e86460c878ea3b07313d409269ee358c52007f9b6ec59e9707f66e9aa975da5.json,sha256=iUsMuW3djkRoX-u6fW2M2ND_src7GnvvrxNwIMahLJA,3741
1635
+ xinference/web/ui/node_modules/.cache/babel-loader/1e86938a0cdf706d21e99b21f5d868fa247c0c88b26807047e26dcdc4d9a9db3.json,sha256=BA0ITztl3kYf_9cYHEplqD0B9_7_a9-airylQKR1O2M,15616
1633
1636
  xinference/web/ui/node_modules/.cache/babel-loader/1e9266b7342c69c2d78999a0721eacdaaf7ea492a02f99b0cc04d3560516a672.json,sha256=aXGOy-C8CXEi0PVuEOa-L-oLxpzKynbzE0Erdm04wTw,1588
1634
1637
  xinference/web/ui/node_modules/.cache/babel-loader/1e92dc4af7bf1d5bb828bcc70d2e7101a2a114c69fffc1353307071aab48b83a.json,sha256=9eJ6pwM3dz9kZ7-FIT52BKmJkI1-jcxvDaGJZiM2N60,2675
1635
1638
  xinference/web/ui/node_modules/.cache/babel-loader/1e9d97c3a5cc195cdae678f647e449b152f397c0426a8ee3878fcdc6e74fb416.json,sha256=f6Sqzo1VhFjKNLljSZ4_71qpMdFx11Q66LacKoY3gR4,757
@@ -2726,7 +2729,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/35c4357889526dfcf153917f20d50
2726
2729
  xinference/web/ui/node_modules/.cache/babel-loader/35c79cfff3bea57bb554622e4bdd08a41f87fac2e0a8d8edde37fdcd849d9b75.json,sha256=3Rn823RavDhtxFZJc9zYjpwWfHmza7pusErvr_rHjE8,32950
2727
2730
  xinference/web/ui/node_modules/.cache/babel-loader/35c7ea69f5b5b5f418c964b110644f246f98cb493d3a74287bfab96fd63e0abe.json,sha256=QyN52bj4ljwIG9jKqXDR_quvEUV4gvYcpG6NAat-S6o,307
2728
2731
  xinference/web/ui/node_modules/.cache/babel-loader/35cbb80a4c69d4e16e629bc23156f6a916701eb22e4ff160c166d56cb6c34f7a.json,sha256=WYt5xUomlCXomhDbdyKN6j1GZlG_LnoPTf9MRWXfEu0,303
2729
- xinference/web/ui/node_modules/.cache/babel-loader/35d0e4a317e5582cbb79d901302e9d706520ac53f8a734c2fd8bfde6eb5a4f02.json,sha256=b9SODP7O5zTYCNK7_Dht6sIby3RQROnyU8FF_HV01_0,98420
2730
2732
  xinference/web/ui/node_modules/.cache/babel-loader/35ddb7906862ce40ab4a645487a58f0ef200934e5b236e1f784f268d2fcce991.json,sha256=YiwYiUHPnMBjqDILeqDNeh23Jcn60dxEjFFNxR2K-Mc,1309
2731
2733
  xinference/web/ui/node_modules/.cache/babel-loader/35e157bc5dbcdd55f3022de2c1fed7eba6c856e97aaa218d3ef609c3a957b382.json,sha256=DRTyEbU2jXP4VdsVSJWLhD90jDloUAxM2yV0g9YipKE,1419
2732
2734
  xinference/web/ui/node_modules/.cache/babel-loader/35e8a0ea710464fa25035c99987642fadeea5527bc2960820751158aabdea8cb.json,sha256=pSnTC8GAN9KcTunXNpt5r-0Si30UPdAoGbR24_DuDW0,1354
@@ -10148,7 +10150,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/d06a96a3c9c32e42689094aa3aaad
10148
10150
  xinference/web/ui/node_modules/.cache/babel-loader/d06af85a84e5c5a29d3acf2dbb5b30c0cf75c8aec4ab5f975e6096f944ee4324.json,sha256=2ahmQ3ZSaZ_CX3JePJuUU7-_ouxR7mn__1h9-gX_OUE,290
10149
10151
  xinference/web/ui/node_modules/.cache/babel-loader/d06f05f05acbf0a5c2e486ef0ec386b35a76ae8c8aa3717a82a44d88b604caaf.json,sha256=ljUqYjme7uc0XAaOwVpNGQVuYzhOxkZ1iGJB7Ppz4lo,25061
10150
10152
  xinference/web/ui/node_modules/.cache/babel-loader/d074bfe592a195f339acbcd8743f8b64cfd09b45ca1013598269227fc092f2db.json,sha256=7CQrB67E4DlKrnrG3R57hhhd8mu-OrS3_95eNfnrfcQ,377
10151
- xinference/web/ui/node_modules/.cache/babel-loader/d076fd56cf3b15ed2433e3744b98c6b4e4410a19903d1db4de5bba0e1a1b3347.json,sha256=bt9S2SkmG11hBOUQoD3gtpMOMO_w5KIF5wzW-16tiEI,10729
10152
10153
  xinference/web/ui/node_modules/.cache/babel-loader/d08264c78014dc61377549de4808bd75268cea3a743037cdd73116bffaf90e48.json,sha256=u1G8VGkjiVAviDFqU1F3JJG5WQ1Se6uMIYnLpvkc-UI,1632
10153
10154
  xinference/web/ui/node_modules/.cache/babel-loader/d08540f5a0febd2d8204ba9619ad3d22f9f42be57ee25868093fe93bf649a24a.json,sha256=-0iSuEvUjS7__Yv7ExErVBNbZlXjCDDY7MQjTOcVJ8E,3295
10154
10155
  xinference/web/ui/node_modules/.cache/babel-loader/d08b3587b7d2c991b28c4b46a95cb916549b244a49b9b71edb1a6809fd622c3b.json,sha256=yf1iuyTCfLlG1o0gq_Ujf1kfgKsRS6U2h4YV3vG7xNg,2590
@@ -10658,7 +10659,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/daa28acf688e005db72e18cf8c2d3
10658
10659
  xinference/web/ui/node_modules/.cache/babel-loader/daa507a77cfaba26f58963d8637c66ae30732f2108cd33cd2c7a50eb854ca142.json,sha256=HU9qaGTdORS_7KSjmcbUeTBzLqoKT0XWJXCz1gpAycc,1907
10659
10660
  xinference/web/ui/node_modules/.cache/babel-loader/daababef05608efb41628e7df68f52dcaf29b7a1c7e8b96e34dfdfb963522328.json,sha256=xbAT72nm7vrAPlei03su0QCMwjbx-4_VFneqJo39ex0,1312
10660
10661
  xinference/web/ui/node_modules/.cache/babel-loader/daabb17fd67e324024d8b3d0fccf2239e05532695d438871b7ad9cee7d0be699.json,sha256=BcJyLFmj99hzPQARGDtQ674lgl3R3l6dLuAiTJEgpfg,1400
10661
- xinference/web/ui/node_modules/.cache/babel-loader/daad8131d91134f6d7aef895a0c9c32e1cb928277cb5aa66c01028126d215be0.json,sha256=dYNd4FmasHgccGW_aqL5u84wRX6JrvqDEn7765RmctY,32369
10662
10662
  xinference/web/ui/node_modules/.cache/babel-loader/dab01832d9c964ffe3b94f7431eca8544f52e1bacbbb7b7a3d97f3da7617578f.json,sha256=6Je87xlhH2UMuG-XjcszcUCbEsGfLOvW0TneryZcFrc,1399
10663
10663
  xinference/web/ui/node_modules/.cache/babel-loader/dab08bbe4e6c27e0ca5930faa13d2f91333d1bd933ed9e64e5a47760763c76d7.json,sha256=fyvDqO5LhIt7MzHgvPCI2XAyygspSI5EGxsKE8guUHg,1703
10664
10664
  xinference/web/ui/node_modules/.cache/babel-loader/dab9ca3c538d4364be315ca18b6469b3c608de0932e2800250483829e6ed8d9a.json,sha256=o5kARCSzLRHONrCMr-2coDNfQHM5JBvLND77qDPL9Gs,2380
@@ -11774,7 +11774,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/f164c6f61699c1d7992274600ea14
11774
11774
  xinference/web/ui/node_modules/.cache/babel-loader/f16613ec8e932766f3177476b216cd65fd8729faafe1c3faec988338cb4c55a2.json,sha256=v8jwR2j8nSclppVEd9TRiTFckMty2QrUeqmQMVOT01U,1373
11775
11775
  xinference/web/ui/node_modules/.cache/babel-loader/f16864b4581e457211b4275b5c4f2d4dc723992407718c39d280b5b6c249e0ff.json,sha256=yioAdYYMiFekg7-2MXg0D7qkv_0nkrJzuQ5iXlX9xAc,1483
11776
11776
  xinference/web/ui/node_modules/.cache/babel-loader/f16a873539885aa79406ed53c81da849eccba6f4d9e8e6581c3878cdeace913c.json,sha256=DWjEweefxRvDcX8_W4l6LvjjFvsKAT_RZDzaqZofhXA,1160
11777
- xinference/web/ui/node_modules/.cache/babel-loader/f16aec63602a77bd561d0e67fa00b76469ac54b8033754bba114ec5eb3257964.json,sha256=00DZl8PoPieiW8yOJiJQVOXzOAnaHcjLuAmKPqN3IUY,15379
11778
11777
  xinference/web/ui/node_modules/.cache/babel-loader/f16fc9943a722b43fd4213c5c5b1d00a30e9ca7b9ddfff7c85d0d1208e7ccf6f.json,sha256=bh_ZGjZc3ip4FQdS19l2TUapYGrwTr0MLfVpXkL37fs,1799
11779
11778
  xinference/web/ui/node_modules/.cache/babel-loader/f1735aa9ed731bd6f044fb6ec6cf05c968e70eb08ad3ab484ead4c09bc707100.json,sha256=pSIqxTaTa0WDV1h-MntBevtYXvP25wIjD-Vl9mHj4FQ,6039
11780
11779
  xinference/web/ui/node_modules/.cache/babel-loader/f178141cc78e558c1659833a0aac7a05f1cfc55d132e685cac180c8743818faf.json,sha256=TWs23zS6XQERdZ-prpfd_L2dhqP-FbTfLeaFCbC_kPw,1356
@@ -11944,6 +11943,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/f4bf4af84df4f72f9448025403b6f
11944
11943
  xinference/web/ui/node_modules/.cache/babel-loader/f4c164c89cfbcb1d81bc0b60e3e7c8715e07c7a23118acf4e3e16715beac09c5.json,sha256=aT8HOgfAi-wvangtlR316UMxqd9z1QShfez06zFalZo,397
11945
11944
  xinference/web/ui/node_modules/.cache/babel-loader/f4caef77c081cf03f1d2343e0a0e05a7a89f7d818e295a9034fdff349f07d8be.json,sha256=KHB1h_wbn_Nw5pmFmINfQSUmIVQsbLUEiTaAetAI0Ls,1476
11946
11945
  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
11947
  xinference/web/ui/node_modules/.cache/babel-loader/f4d792c26137975a48be49f6a01c155539fa22a6100c737edc42a1499fba8aaa.json,sha256=f75EsdkY4eHBKtsxiX5Ab0yneUyG-FTW7tTsqXVtfPI,1723
11948
11948
  xinference/web/ui/node_modules/.cache/babel-loader/f4e25534fad4ea32cd8ec4ff99baca37ac14fafb0d6c8a17883516fff0bac08d.json,sha256=iLTUzcwll5_jl4KpvOGS4_-VtESQRqVbUAYz6o1b8eY,2145
11949
11949
  xinference/web/ui/node_modules/.cache/babel-loader/f4e2c5a77f6d23a47169b8144ddde77c2f0695219e535e75edad438546921c89.json,sha256=ZvBVRoAjlKjhWDU5MqFe2YUvrNXBfki18-qbTxGN22c,1064
@@ -12159,6 +12159,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/f91e3dda1729ea500805fa915a019
12159
12159
  xinference/web/ui/node_modules/.cache/babel-loader/f9232fc4d716e454755ff231179f4454f48b695cc8c14c56d37c762a070ff795.json,sha256=ymX0ZlIoVOOcBAXEsvZ40bbh8iaQ5kQMjcVSZ4HeNDU,1492
12160
12160
  xinference/web/ui/node_modules/.cache/babel-loader/f927a20c8492729544398c53966284f24919cab7a18547fd6eacaab85262d54b.json,sha256=6iOzuVziWW16e6u4FGRRoqfbRS4l3xWLwhNabDd9LUo,1261
12161
12161
  xinference/web/ui/node_modules/.cache/babel-loader/f927a8c05276b93399b27a4daa9a348787dec9aa6e1001e343d98a8f3934883f.json,sha256=AMcwCtzCaqBeXBDjRag7ZRTBztQnRR-xqqYXIUAwZwg,1647
12162
+ xinference/web/ui/node_modules/.cache/babel-loader/f9290c0738db50065492ceedc6a4af25083fe18399b7c44d942273349ad9e643.json,sha256=MfevPJXjzvDMvpoMyRnOTS6GhnMz1Tp7JIzi7RWyfPI,13500
12162
12163
  xinference/web/ui/node_modules/.cache/babel-loader/f929f522bbd911538fbe03980b537a828201c1cb3342e6c473578a01d666f3f9.json,sha256=jtD1hPZn6Zmj3F0lRcGYSgafOm3W24L6GwGIvt6wQhQ,1903
12163
12164
  xinference/web/ui/node_modules/.cache/babel-loader/f92c56d757bed3f9790b334dd15d91641ed0243208c70413b250c8721f5f87eb.json,sha256=j9O79A9yF9BefJYtwRhUgD-OuhJ1zi6-AkMuMDiUCvQ,1208
12164
12165
  xinference/web/ui/node_modules/.cache/babel-loader/f93a4aea7db7d5169ca3280602f65970354e812af6455391590d256a81490903.json,sha256=5RcPsl9u6_f8nDuX7Pv7VISrzgxNbeynpY9b8mZtZiU,1782
@@ -12255,6 +12256,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/fac72563aebf0e08793421360cd10
12255
12256
  xinference/web/ui/node_modules/.cache/babel-loader/facc6c49e34e1526cd360d6c77f0469a50ea8afdef647792f46091392a2c79f7.json,sha256=cQcUuMqY0OOgWOVja-iTYx__d0hIjQlVhMnKeinZdrs,1086
12256
12257
  xinference/web/ui/node_modules/.cache/babel-loader/facd748681a6fd8cbab7c3a6b6aa7e8000459409fdc9bd45e31c9855d1968c10.json,sha256=3_hyukf1KSGqMS40i46ohGKotbFlTp4CGPqxcGPk2AE,1665
12257
12258
  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
12258
12260
  xinference/web/ui/node_modules/.cache/babel-loader/fada763c1e1e3777dd9f63f1aba61b5c9a8f3e43639b16e4d5bcb0c7212ab77b.json,sha256=l3cYKd4_OKt_Do-1O3WLXSToPniaFFw_pJCpqsiZjZk,1454
12259
12261
  xinference/web/ui/node_modules/.cache/babel-loader/faddef8b524b755c95737f88e41042dfa4c4887ae81332dabac982f063a1c648.json,sha256=5NgM6Mz5NisUdx9rdwrIQIFzt4_ZA6jqZUK2hMy0aPk,3031
12260
12262
  xinference/web/ui/node_modules/.cache/babel-loader/faf09723c051f050f9d9813d952ab5e5347221fa6a90d303b4352b46e9026f0b.json,sha256=hZTOvOF_XyhmSNwIXd-jw3kL5DF_qXzLMzetLfPQfW0,1451
@@ -12432,6 +12434,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/fe89c906d4a4e867c24da2f2b3cfd
12432
12434
  xinference/web/ui/node_modules/.cache/babel-loader/fe94a9f6faf8d3d154c44f2dc3996379a30ad8106430757137385192f9b0e081.json,sha256=2CZn8jFEIIdCnk79E-J_z9HlpAufE2Dl4veWO4FYXJM,20062
12433
12435
  xinference/web/ui/node_modules/.cache/babel-loader/fea50374ff9a5128187346c9afff58467b8334882943a0cecf2b8612f50a2de0.json,sha256=RhP52IfUhjwpWmK1HSGWNDQM8d-I-zpNjVlw10jvcKM,1738
12434
12436
  xinference/web/ui/node_modules/.cache/babel-loader/fea86398d4c077f1c87e5f9c00e3ecf510a22de4dd8aeb27d5582d271d0b83da.json,sha256=S-gz0CmBUYrTGXecCKO6d26rcGlZ5Nry9XVA0DnlR1Y,2865
12437
+ xinference/web/ui/node_modules/.cache/babel-loader/feabb04b4aa507102da0a64398a40818e878fd1df9b75dda8461b3e1e7ff3f11.json,sha256=NqdLD2TMraXXVtPnUDyEo8bmgqYsazbGM5O8HT5rmiY,6391
12435
12438
  xinference/web/ui/node_modules/.cache/babel-loader/feb218750f215bbd193160bbf99235be78ca185199a3723384de744d09045a3b.json,sha256=aiv-Dl4oGRzIh7MwXFxfiG5RJ1a-FR8XPE7XkcAqkV8,1878
12436
12439
  xinference/web/ui/node_modules/.cache/babel-loader/feb3a63f3602f17dc3413d5b184815fbf84724844150e50a5167ee63a7f8b596.json,sha256=fwLm5ivyaBz66qA9yZZkC9yfDvlLpNb9HNtwdh6TVv8,2584
12437
12440
  xinference/web/ui/node_modules/.cache/babel-loader/febc40417909bbc067fa2da2174847ac2a57241ca43e4ac0cf52b067b705bc23.json,sha256=4fixbhfkMvJIJWS_Jfe3Z7Eivl4cBT1o_JcnbqhmMV4,1596
@@ -15397,9 +15400,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
15397
15400
  xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
15398
15401
  xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
15399
15402
  xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
15400
- xinference-0.10.1.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15401
- xinference-0.10.1.dist-info/METADATA,sha256=9sjk-bzrMLgTUAm0u_tas8aWXKq8wQdCJJwrK9TkDts,14872
15402
- xinference-0.10.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
15403
- xinference-0.10.1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15404
- xinference-0.10.1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15405
- xinference-0.10.1.dist-info/RECORD,,
15403
+ xinference-0.10.2.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15404
+ xinference-0.10.2.dist-info/METADATA,sha256=GBKBO2j-z_gJExhHZh42Z2wCEM_t0qSR3qXI707AavE,14990
15405
+ xinference-0.10.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
15406
+ xinference-0.10.2.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15407
+ xinference-0.10.2.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15408
+ xinference-0.10.2.dist-info/RECORD,,