xinference 1.5.0.post2__py3-none-any.whl → 1.6.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.

Files changed (137) hide show
  1. xinference/_version.py +3 -3
  2. xinference/api/restful_api.py +107 -11
  3. xinference/client/restful/restful_client.py +51 -11
  4. xinference/constants.py +5 -1
  5. xinference/core/media_interface.py +758 -0
  6. xinference/core/model.py +49 -9
  7. xinference/core/supervisor.py +1 -1
  8. xinference/core/utils.py +1 -1
  9. xinference/core/worker.py +33 -39
  10. xinference/deploy/cmdline.py +17 -0
  11. xinference/deploy/utils.py +0 -3
  12. xinference/model/audio/__init__.py +16 -27
  13. xinference/model/audio/core.py +2 -1
  14. xinference/model/audio/cosyvoice.py +4 -2
  15. xinference/model/audio/model_spec.json +63 -46
  16. xinference/model/audio/model_spec_modelscope.json +31 -14
  17. xinference/model/embedding/__init__.py +16 -24
  18. xinference/model/image/__init__.py +15 -25
  19. xinference/model/llm/__init__.py +40 -115
  20. xinference/model/llm/core.py +29 -6
  21. xinference/model/llm/llama_cpp/core.py +30 -347
  22. xinference/model/llm/llm_family.json +1674 -2203
  23. xinference/model/llm/llm_family.py +71 -7
  24. xinference/model/llm/llm_family_csghub.json +0 -32
  25. xinference/model/llm/llm_family_modelscope.json +1838 -2016
  26. xinference/model/llm/llm_family_openmind_hub.json +19 -325
  27. xinference/model/llm/lmdeploy/core.py +7 -2
  28. xinference/model/llm/mlx/core.py +23 -7
  29. xinference/model/llm/reasoning_parser.py +281 -5
  30. xinference/model/llm/sglang/core.py +39 -11
  31. xinference/model/llm/transformers/chatglm.py +9 -2
  32. xinference/model/llm/transformers/cogagent.py +10 -12
  33. xinference/model/llm/transformers/cogvlm2.py +6 -3
  34. xinference/model/llm/transformers/cogvlm2_video.py +3 -6
  35. xinference/model/llm/transformers/core.py +58 -60
  36. xinference/model/llm/transformers/deepseek_v2.py +4 -2
  37. xinference/model/llm/transformers/deepseek_vl.py +10 -4
  38. xinference/model/llm/transformers/deepseek_vl2.py +9 -4
  39. xinference/model/llm/transformers/gemma3.py +4 -5
  40. xinference/model/llm/transformers/glm4v.py +3 -21
  41. xinference/model/llm/transformers/glm_edge_v.py +3 -20
  42. xinference/model/llm/transformers/intern_vl.py +3 -6
  43. xinference/model/llm/transformers/internlm2.py +1 -1
  44. xinference/model/llm/transformers/minicpmv25.py +4 -2
  45. xinference/model/llm/transformers/minicpmv26.py +5 -3
  46. xinference/model/llm/transformers/omnilmm.py +1 -1
  47. xinference/model/llm/transformers/opt.py +1 -1
  48. xinference/model/llm/transformers/ovis2.py +302 -0
  49. xinference/model/llm/transformers/qwen-omni.py +8 -1
  50. xinference/model/llm/transformers/qwen2_audio.py +3 -1
  51. xinference/model/llm/transformers/qwen2_vl.py +5 -1
  52. xinference/model/llm/transformers/qwen_vl.py +5 -2
  53. xinference/model/llm/utils.py +96 -45
  54. xinference/model/llm/vllm/core.py +108 -24
  55. xinference/model/llm/vllm/distributed_executor.py +8 -7
  56. xinference/model/llm/vllm/xavier/allocator.py +1 -1
  57. xinference/model/llm/vllm/xavier/block_manager.py +1 -1
  58. xinference/model/llm/vllm/xavier/block_tracker.py +3 -3
  59. xinference/model/llm/vllm/xavier/executor.py +1 -1
  60. xinference/model/llm/vllm/xavier/test/test_xavier.py +2 -11
  61. xinference/model/rerank/__init__.py +13 -24
  62. xinference/model/video/__init__.py +15 -25
  63. xinference/model/video/core.py +3 -3
  64. xinference/model/video/diffusers.py +157 -13
  65. xinference/model/video/model_spec.json +100 -0
  66. xinference/model/video/model_spec_modelscope.json +104 -0
  67. xinference/thirdparty/cosyvoice/bin/average_model.py +5 -4
  68. xinference/thirdparty/cosyvoice/bin/export_jit.py +50 -20
  69. xinference/thirdparty/cosyvoice/bin/export_onnx.py +136 -51
  70. xinference/thirdparty/cosyvoice/bin/inference.py +15 -5
  71. xinference/thirdparty/cosyvoice/bin/train.py +7 -2
  72. xinference/thirdparty/cosyvoice/cli/cosyvoice.py +72 -52
  73. xinference/thirdparty/cosyvoice/cli/frontend.py +58 -58
  74. xinference/thirdparty/cosyvoice/cli/model.py +140 -155
  75. xinference/thirdparty/cosyvoice/dataset/processor.py +9 -5
  76. xinference/thirdparty/cosyvoice/flow/decoder.py +656 -54
  77. xinference/thirdparty/cosyvoice/flow/flow.py +69 -11
  78. xinference/thirdparty/cosyvoice/flow/flow_matching.py +167 -63
  79. xinference/thirdparty/cosyvoice/flow/length_regulator.py +1 -0
  80. xinference/thirdparty/cosyvoice/hifigan/discriminator.py +91 -1
  81. xinference/thirdparty/cosyvoice/hifigan/f0_predictor.py +4 -1
  82. xinference/thirdparty/cosyvoice/hifigan/generator.py +4 -1
  83. xinference/thirdparty/cosyvoice/hifigan/hifigan.py +2 -2
  84. xinference/thirdparty/cosyvoice/llm/llm.py +198 -18
  85. xinference/thirdparty/cosyvoice/transformer/embedding.py +12 -4
  86. xinference/thirdparty/cosyvoice/transformer/upsample_encoder.py +124 -21
  87. xinference/thirdparty/cosyvoice/utils/class_utils.py +13 -0
  88. xinference/thirdparty/cosyvoice/utils/common.py +1 -1
  89. xinference/thirdparty/cosyvoice/utils/file_utils.py +40 -2
  90. xinference/thirdparty/cosyvoice/utils/frontend_utils.py +7 -0
  91. xinference/thirdparty/cosyvoice/utils/mask.py +4 -0
  92. xinference/thirdparty/cosyvoice/utils/train_utils.py +5 -1
  93. xinference/thirdparty/matcha/hifigan/xutils.py +3 -3
  94. xinference/types.py +2 -71
  95. xinference/web/ui/build/asset-manifest.json +6 -6
  96. xinference/web/ui/build/index.html +1 -1
  97. xinference/web/ui/build/static/css/{main.0f6523be.css → main.337afe76.css} +2 -2
  98. xinference/web/ui/build/static/css/main.337afe76.css.map +1 -0
  99. xinference/web/ui/build/static/js/main.ae579a97.js +3 -0
  100. xinference/web/ui/build/static/js/main.ae579a97.js.map +1 -0
  101. xinference/web/ui/node_modules/.cache/babel-loader/0196a4b09e3264614e54360d5f832c46b31d964ec58296765ebff191ace6adbf.json +1 -0
  102. xinference/web/ui/node_modules/.cache/babel-loader/12e02ee790dbf57ead09a241a93bb5f893393aa36628ca741d44390e836a103f.json +1 -0
  103. xinference/web/ui/node_modules/.cache/babel-loader/18fa271456b31cded36c05c4c71c6b2b1cf4e4128c1e32f0e45d8b9f21764397.json +1 -0
  104. xinference/web/ui/node_modules/.cache/babel-loader/2fdc61dcb6a9d1fbcb44be592d0e87d8c3f21297a7327559ef5345665f8343f7.json +1 -0
  105. xinference/web/ui/node_modules/.cache/babel-loader/3d596a3e8dd6430d7ce81d164e32c31f8d47cfa5f725c328a298754d78563e14.json +1 -0
  106. xinference/web/ui/node_modules/.cache/babel-loader/5c08e2cd07809ed3e41486b16652253404cbb63a3ff8d0366ee50f57e2413cea.json +1 -0
  107. xinference/web/ui/node_modules/.cache/babel-loader/6798e126f3bc5f95a4c16a9c2ad52ffe77970c62406d83e20604dfda7ffd2247.json +1 -0
  108. xinference/web/ui/node_modules/.cache/babel-loader/8472e58a31720892d534f3febda31f746b25ec4aa60787eef34217b074e67965.json +1 -0
  109. xinference/web/ui/node_modules/.cache/babel-loader/b617f7d21a95045fc57b26a9373551740f1978a826134cbf705c3a1bf8714a93.json +1 -0
  110. xinference/web/ui/node_modules/.cache/babel-loader/c1506cb142151366074975f30fa1ff9cd6e5e978b62a4b074dfc16fe08d70d75.json +1 -0
  111. xinference/web/ui/node_modules/.cache/babel-loader/c5c7c2cd1b863ce41adff2c4737bba06eef3a1acf28288cb83d992060f6b8923.json +1 -0
  112. xinference/web/ui/src/locales/en.json +7 -4
  113. xinference/web/ui/src/locales/zh.json +7 -4
  114. {xinference-1.5.0.post2.dist-info → xinference-1.6.0.dist-info}/METADATA +56 -36
  115. {xinference-1.5.0.post2.dist-info → xinference-1.6.0.dist-info}/RECORD +120 -121
  116. {xinference-1.5.0.post2.dist-info → xinference-1.6.0.dist-info}/WHEEL +1 -1
  117. xinference/core/image_interface.py +0 -377
  118. xinference/model/llm/transformers/compression.py +0 -258
  119. xinference/model/llm/transformers/yi_vl.py +0 -239
  120. xinference/thirdparty/cosyvoice/bin/export_trt.sh +0 -9
  121. xinference/web/ui/build/static/css/main.0f6523be.css.map +0 -1
  122. xinference/web/ui/build/static/js/main.4b67a723.js +0 -3
  123. xinference/web/ui/build/static/js/main.4b67a723.js.map +0 -1
  124. xinference/web/ui/node_modules/.cache/babel-loader/0f0adb2283a8f469d097a7a0ebb754624fa52414c83b83696c41f2e6a737ceda.json +0 -1
  125. xinference/web/ui/node_modules/.cache/babel-loader/51709f5d3e53bcf19e613662ef9b91fb9174942c5518987a248348dd4e1e0e02.json +0 -1
  126. xinference/web/ui/node_modules/.cache/babel-loader/8157db83995c671eb57abc316c337f867d1dc63fb83520bb4ff351fee57dcce2.json +0 -1
  127. xinference/web/ui/node_modules/.cache/babel-loader/8f9af2979e45d4648f0cfae108363e58ee421c29a9d4e7329b6f06d9adfd4133.json +0 -1
  128. xinference/web/ui/node_modules/.cache/babel-loader/9c8b1a86e7c65b2b2599a205e30920652d6c2105f926508ef5bcf29a3ef4ce76.json +0 -1
  129. xinference/web/ui/node_modules/.cache/babel-loader/b8551e9775a01b28ae674125c688febe763732ea969ae344512e64ea01bf632e.json +0 -1
  130. xinference/web/ui/node_modules/.cache/babel-loader/e4ba658c6b3b0490910acdae0c535a892257efb61539a24adf8038fc653bd22f.json +0 -1
  131. xinference/web/ui/node_modules/.cache/babel-loader/efe7cd132c27a8f9fd5352a394c491fd5fb0da0348cf9fcbd923164a32365eab.json +0 -1
  132. xinference/web/ui/node_modules/.cache/babel-loader/f04f666b77b44d7be3e16034d6b0074de2ba9c254f1fae15222b3148608fa8b3.json +0 -1
  133. xinference/web/ui/node_modules/.cache/babel-loader/f199e8173f6409a5802ed44acb95f218388131136504b2e9132129e150c92f9a.json +0 -1
  134. /xinference/web/ui/build/static/js/{main.4b67a723.js.LICENSE.txt → main.ae579a97.js.LICENSE.txt} +0 -0
  135. {xinference-1.5.0.post2.dist-info → xinference-1.6.0.dist-info}/entry_points.txt +0 -0
  136. {xinference-1.5.0.post2.dist-info → xinference-1.6.0.dist-info}/licenses/LICENSE +0 -0
  137. {xinference-1.5.0.post2.dist-info → xinference-1.6.0.dist-info}/top_level.txt +0 -0
@@ -1,15 +1,15 @@
1
1
  xinference/__init__.py,sha256=nmTTrYbIpj964ZF6ojtgOM7E85JBOj1EyQbmYjbj1jw,915
2
2
  xinference/_compat.py,sha256=YF-lS6tX06zkFi2oFS0yq_LBn4hX_8u0Ft0vKxGALwA,4238
3
- xinference/_version.py,sha256=Y8KPxeMY_JXLqhGBWC0T9eegm701q8hVqmkTVfshxJs,503
3
+ xinference/_version.py,sha256=pO4r_sZMzTSdRl149-zYjbSnVA9N1dA0po--4z8lkc8,497
4
4
  xinference/conftest.py,sha256=ZB7li77s4_H4ZEQpDo2PX-b4zrs8-bIpvh59P_CaSoo,9691
5
- xinference/constants.py,sha256=tKdiCDPK1ilx-2fg-w_wf8OqTmwzfYOsg8MtqzXxT6I,4125
5
+ xinference/constants.py,sha256=-QqMRJo1MvTgnLmRZLF3DVj3PMXUzg1rV-XIsuN_nGI,4319
6
6
  xinference/device_utils.py,sha256=ELsqvnjvz9wYthTyQFzKSV4mZsaASz6hj_IsfMmfMWc,4447
7
7
  xinference/fields.py,sha256=0UtBFaDNzn1n9MRjyTkNrolsIML-TpZfudWOejqjni8,5245
8
8
  xinference/isolation.py,sha256=gTU1em5fxg1m-7hxieWBMZvVkXZX4GZYmeT7XxXsYrU,2699
9
- xinference/types.py,sha256=C2sWumkGaof_rDIE-_P7Jgaua-RpWV5TvgGy6OL6SPo,13533
9
+ xinference/types.py,sha256=CEHiKrMT_a1xX38vxVxHIWgkLxRXaMkaXRrMI8E1D9Y,11637
10
10
  xinference/utils.py,sha256=xMuOg3LZhTUf7inEhm-HmXCIoly0pHaWtMKMnnf8XGk,2273
11
11
  xinference/api/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
12
- xinference/api/restful_api.py,sha256=tfplJVY9hhkN_ZP8PlEyGvPkFoOX1iNdnDGFOGWKh4c,94888
12
+ xinference/api/restful_api.py,sha256=foag85cq5wQxoh6K7ESyy1YToLVXlfoIdMm6sp9PvBU,98827
13
13
  xinference/api/oauth2/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
14
14
  xinference/api/oauth2/auth_service.py,sha256=74JzB42fbbmBu4Q1dW3A9Fp_N7167KgRGB42Z0NHjAM,6119
15
15
  xinference/api/oauth2/types.py,sha256=K923sv_XySIUtM2Eozl9IG082IJcDOS5SFLrPZ5ELBg,996
@@ -18,36 +18,36 @@ xinference/client/__init__.py,sha256=Gc4HOzAy_1cic5kXlso7hahYgw89CKvZSJDicEU461k
18
18
  xinference/client/common.py,sha256=iciZRs5YjM2gYsXnwACPMaiBZp4_XpawWwfym0Iyu40,1617
19
19
  xinference/client/handlers.py,sha256=HYmQjG0BPK5PKcWVEDJqQz5iLjS8yjOq5j-HP_CAi_k,630
20
20
  xinference/client/restful/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
21
- xinference/client/restful/restful_client.py,sha256=PS-WIsE4dRzoxDtVTFd-YBYe-LRhv8PRHN_eX_fgqmg,56620
21
+ xinference/client/restful/restful_client.py,sha256=VYJdDsbHppOtuQGSCE6vdSmCmvQtaLCVcaRPTx_b_D0,57936
22
22
  xinference/core/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
23
23
  xinference/core/cache_tracker.py,sha256=3ubjYCU5aZToSp2GEuzedECVrg-PR4kThTefrFUkb9g,6971
24
24
  xinference/core/chat_interface.py,sha256=GbjCZgxv9t14r7-DK7G2tB5Xhuze8R4nLiB92D4mBjo,31174
25
25
  xinference/core/event.py,sha256=42F38H2WOl6aPxp2oxX6WNxHRRxbnvYRmbt4Ar7NP4U,1640
26
- xinference/core/image_interface.py,sha256=5Iuoiw3g2TvgOYi3gRIAGApve2nNzfMPduRrBHvd1NY,13755
26
+ xinference/core/media_interface.py,sha256=txwgcqlj5CdBi3zFbGobLclEdCkThR152TJqzqiQrts,27450
27
27
  xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
28
- xinference/core/model.py,sha256=Vu3JjebUFmNZjZQyGOTTZv5KF_Jj1c6c_yCRYFVIhQM,45165
28
+ xinference/core/model.py,sha256=Nq57d1AjdKsVtKuoscibLrGBs0OKmmqYURkleTeRdBc,46528
29
29
  xinference/core/progress_tracker.py,sha256=CNCc1ZVscvp-JJznPTYJDPuis7ya6ZothZUIalDcxDo,6798
30
30
  xinference/core/resource.py,sha256=aTV89dmuKxw5JnwQglRkA2Wxu1EBLM5WjmLxITSXYgs,1808
31
31
  xinference/core/scheduler.py,sha256=0rbbaVYQ4g2W8P3tbbHonmFjFkllmoPB3OtkVPr5crA,15650
32
32
  xinference/core/status_guard.py,sha256=VLhyqpobdclfyzcROqf4bmGDiKpuHllto316X3Z6Hrc,2860
33
- xinference/core/supervisor.py,sha256=5XAwQDM_l_pRopXgwIUwztK4o_fMBZ6_x9sbCzfIAlA,71711
34
- xinference/core/utils.py,sha256=TpUHNFcA4pEXq084Quz-ilIccuDMUAsdLrEJxj0Zn6I,10414
35
- xinference/core/worker.py,sha256=2SLMDDFtSST2IZl8fOlitZ1toXoyrzHJO4hOkaSDzEc,61874
33
+ xinference/core/supervisor.py,sha256=uEmVyYFMCpec6MDNnEf3J3aWDqA2BYI1yOxnCuwRn_w,71711
34
+ xinference/core/utils.py,sha256=VgcvxpTr2Q8am3MoHp7JPjC7jLYlKX2kLVdBo2Q_fRo,10430
35
+ xinference/core/worker.py,sha256=RYGwwEPCtm6sU_mFU5aQJhozQ8tuE3r3EF4lxM20Mkw,61958
36
36
  xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
37
- xinference/deploy/cmdline.py,sha256=Zn43Hl2tdQ5ac-PSO2hVodZSZOkCH2aLdlHy4B5Ptaw,50466
37
+ xinference/deploy/cmdline.py,sha256=zUyfEwCpcyWpE3xHgfq-QAuO3YBZm1zM1Vrp9CqOM3A,50968
38
38
  xinference/deploy/local.py,sha256=sO3BcpEH9oCF87CxWVA4AXAYcfHGnrcop40ew5NOA2g,3979
39
39
  xinference/deploy/supervisor.py,sha256=68rB2Ey5KFeF6zto9YGbw3P8QLZmF_KSh1NwH_pNP4w,2986
40
- xinference/deploy/utils.py,sha256=jdL7i2WV6u_BZ8IiE1d3YktvCARcB3ntzMQ5rHGD5DM,6756
40
+ xinference/deploy/utils.py,sha256=gEU7mXID00bbi7PxE7iqJePpLhwvzjmgAHsEErKddp8,6623
41
41
  xinference/deploy/worker.py,sha256=VQ71ClWpeGsyFgDmcOes2ub1cil10cBjhFLHYeuVwC4,2974
42
42
  xinference/deploy/test/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
43
43
  xinference/deploy/test/test_cmdline.py,sha256=ozgVyvaa_AxRDbApu4o3qzOfVfF1wflMNtsJbudUwb8,9801
44
44
  xinference/model/__init__.py,sha256=bCEwvKjoazBW8QZ5C5Hpfd5v_VTbWpXvo8IB9d4Qs70,1127
45
45
  xinference/model/core.py,sha256=FKiT0D2-FGbxLtaf4C01Yrn8t3n6AYHXGY9WowycxZc,5057
46
46
  xinference/model/utils.py,sha256=xsu1TIj2ATyA1h2okEl2rdtdjytFsFCDnwLgPdd_KjQ,14947
47
- xinference/model/audio/__init__.py,sha256=KasWsaNPeij6sGpHKqXaUc_bxUw1yYbD7-fwxkcoAVE,3731
47
+ xinference/model/audio/__init__.py,sha256=CY1JDmT3g3V3Ei3mx3uvHkHL3MKqG8fp0hsCHJymcKA,3330
48
48
  xinference/model/audio/chattts.py,sha256=ny3DZTCTt2MzdkLw994_QHZ_4qIEUZcNexNJkCejCyo,4998
49
- xinference/model/audio/core.py,sha256=CSpzGdThG5Ic5qJgR9DOFD-T1QGU8HBNJITJSVPBDT0,8041
50
- xinference/model/audio/cosyvoice.py,sha256=vw7OR2t7zNimQn3Q74iiL1-2en5o6gvdcZsDgkmYpy4,7796
49
+ xinference/model/audio/core.py,sha256=C20tXJJBnK9HhkkomiybFaYys-s5bW-Y4RWkkFJ4Zjw,8108
50
+ xinference/model/audio/cosyvoice.py,sha256=vy_QjSlPKLdc5WYjvrnNR6dS0zlyLt9le8ezzWqQW0s,7909
51
51
  xinference/model/audio/custom.py,sha256=8GXBRmTtR-GY03-E91nlRGTIuabCRzlt20ecU6Un6Y8,4985
52
52
  xinference/model/audio/f5tts.py,sha256=RyfEYVvKhV7JygIv4F45C8wBr-u0mx9WpXj3gIOtL7o,6809
53
53
  xinference/model/audio/f5tts_mlx.py,sha256=SbYIo1C3EfZ8L30P7OTx0Dx7KuXIIpQKf8uZqR1e760,8527
@@ -56,12 +56,12 @@ xinference/model/audio/funasr.py,sha256=65z7U7_F14CCP-jg6BpeY3_49FK7Y5OCRSzrhhsk
56
56
  xinference/model/audio/kokoro.py,sha256=7gqMqsW9NW3xm9zOXbqB4y_1UmMnI5JCub14K3iyLL4,3729
57
57
  xinference/model/audio/megatts.py,sha256=fA2_vbEZ1ggIh2xSGacnyp72Kn2TyQGfjxFlO_w-oGw,3369
58
58
  xinference/model/audio/melotts.py,sha256=lJdOsce2mMOTQIslv6xq1JTEO7vC6Q9ga2xjY-_E7uw,3493
59
- xinference/model/audio/model_spec.json,sha256=vYxBd1ZQ6eanRMEFcKn0bUXo_dyxxhXHiYKZejrk8Ao,11126
60
- xinference/model/audio/model_spec_modelscope.json,sha256=gc5o9kMLmo5vEeP7A1DXwvMoOclS5I2M7S7QP8UyBr0,3706
59
+ xinference/model/audio/model_spec.json,sha256=wCKQGuw5w1oj7GobIAgzGn13kxF5jt-t-V-wNf174a8,11448
60
+ xinference/model/audio/model_spec_modelscope.json,sha256=kw3w7kaegi5GFkzXat4GIvuyYSACwTqTirp51jq6u4g,4060
61
61
  xinference/model/audio/utils.py,sha256=fnnQfZlhH6DRw6beXPUIO28u6qu2GgCONrWDIsTCNkw,1591
62
62
  xinference/model/audio/whisper.py,sha256=NePQOYy2CnVqi7g6uY9hq5tlUIxZ995FOIOPsPZCfJ8,9058
63
63
  xinference/model/audio/whisper_mlx.py,sha256=zBuCd7GUlsN9FC_-J11gqIkOCicihfbqxoabiXTvH2Q,7237
64
- xinference/model/embedding/__init__.py,sha256=1GmvQsbeeVUT-VRaRGetf8UT4RQgLWIzfp5kfX5jw-k,3567
64
+ xinference/model/embedding/__init__.py,sha256=xu6Q7KyX-WbNoetu2IIRAfeKFhnj5JknZQRf0aV5gdE,3210
65
65
  xinference/model/embedding/core.py,sha256=W4xQP3zCZLnWqSc__VM6xm8pUxFON49o-JXhAIZkzVY,32719
66
66
  xinference/model/embedding/custom.py,sha256=757KncqhsOWVypHZFtuhBP_xy-UTNaFdy0BuZRfuIV8,3848
67
67
  xinference/model/embedding/model_spec.json,sha256=EqoR3mubGwCRhAiG6airmS1i881MAxRcwG0FkTyODjs,7233
@@ -73,7 +73,7 @@ xinference/model/flexible/utils.py,sha256=_GlEarRHKPAxT7o6N39VOd9sB580zKzdSktqjb
73
73
  xinference/model/flexible/launchers/__init__.py,sha256=X8w_2hKuQ9H3f90XYK7H_AQU4J8lHQdEeUNBZcdqso8,704
74
74
  xinference/model/flexible/launchers/image_process_launcher.py,sha256=APbbHls0N9DpLFL6_qTexuc5o6bQAvdgJEAZWU4clyw,2510
75
75
  xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRUGhulP4PRJ4fZEJ2D9cfv7lcC2qJBoDE,2012
76
- xinference/model/image/__init__.py,sha256=80HBIbKh6lh-BgNaTo6k0TxxKjdG30bwHAdCiwVk6wk,3198
76
+ xinference/model/image/__init__.py,sha256=n_RhozCUaU8fn8ZGTkJ9EWRVPTOit7uGVIoTsjCafNs,2835
77
77
  xinference/model/image/core.py,sha256=SYlUS-aTI3y5LvmWXivdEV5HbjY1Mpe-_kXge8E_4RE,13079
78
78
  xinference/model/image/custom.py,sha256=5gjujQpJVTJ-pVB5LzBo4-bWKKOHzFlRaoRKJ_CuIUg,3769
79
79
  xinference/model/image/model_spec.json,sha256=BvH1A1G8lpa_NuXi8XPJSA5E4ZOdnN7f4vJm1acgSBU,9904
@@ -87,103 +87,101 @@ xinference/model/image/scheduler/flux.py,sha256=GHlpPfU5UxsiQWNyvNe9SaVZceNg_2Ci
87
87
  xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
88
88
  xinference/model/image/stable_diffusion/core.py,sha256=V3BaASwx8q1YERb4jhhaYEDFiwh3BuPAz8pVZTuktAQ,24717
89
89
  xinference/model/image/stable_diffusion/mlx.py,sha256=GZsozzGB04NfHAdU9MI6gwWE1t_A-s_Ddn_ic8DlkKQ,7476
90
- xinference/model/llm/__init__.py,sha256=zcxTHIT0Fn-KJOpfTH6PXIqGBvuQInyPmxf1Su5_uL8,14281
91
- xinference/model/llm/core.py,sha256=nQ6j-VH9hVypDbrbv84tpZUp9IRM-gGYbCbTYvznEoQ,8740
92
- xinference/model/llm/llm_family.json,sha256=z1BnVqqu-YUFwUqWwO6uhNL88M50vLsLCceL0Nue3XI,402947
93
- xinference/model/llm/llm_family.py,sha256=WXSqCY14TM38HujFU7bhPPGDZ47JRgqPvmFr_bG42Tk,39894
94
- xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
95
- xinference/model/llm/llm_family_modelscope.json,sha256=_l9Is2WQY1iR9F-BJz6x4KnpNmQAZPptVhDJsa0gSnQ,336562
96
- xinference/model/llm/llm_family_openmind_hub.json,sha256=jl9pfbe5DztoxgEwKBxDk1Wd7TziTiJ48_Ie_lJdYjA,67872
90
+ xinference/model/llm/__init__.py,sha256=C8oWRF0sdShzOvHrMYrdSb6EdOwfZFBDL8MQoQ63E9E,10845
91
+ xinference/model/llm/core.py,sha256=HLShSFCE4cgy-b0Ye3L2icpovO0h10COo62eWRp-5X0,9465
92
+ xinference/model/llm/llm_family.json,sha256=OV-9v9psMBVcBuB083oEB9l_qw4T0-AnVCmadbzN5fA,404945
93
+ xinference/model/llm/llm_family.py,sha256=3mNGK_ow6CS2nVq5FWLzqwCxMPCW3S2rV2dAjdVIcFQ,42136
94
+ xinference/model/llm/llm_family_csghub.json,sha256=OYve65CgLVHdyTC3UMe7vqhFwC09OR7XhzDsVEpkJhY,6908
95
+ xinference/model/llm/llm_family_modelscope.json,sha256=1jeRHkOdWyCJtfrzzrGVog5HbcuSqBctYBtYkmHyhiQ,349628
96
+ xinference/model/llm/llm_family_openmind_hub.json,sha256=siUXCbVjhh781Vdd7iTPpnobz61NOTiG01WLvx6eZ34,59604
97
97
  xinference/model/llm/memory.py,sha256=GLNmXBI-AtMbuaJfEf50fnhN4rdbOZjLyT6L_Vjqa5g,10206
98
- xinference/model/llm/reasoning_parser.py,sha256=Vms1G8I_ujakATjMxBbnWt0e-Zuky86HBqu05T1KiCU,6386
99
- xinference/model/llm/utils.py,sha256=XCpb-HmfUScecBDMII6xe4ZCy12X9-oymc6uLXLrEqM,34132
98
+ xinference/model/llm/reasoning_parser.py,sha256=L9BGzsQiTw8QY6BtQfdEGJmCL_RpnYR1MXBkczOS6SU,17184
99
+ xinference/model/llm/utils.py,sha256=b_QAng7OGLs40VIRfdcQrH5avNDSQzSoLaZtPXwCnGo,36292
100
100
  xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
101
- xinference/model/llm/llama_cpp/core.py,sha256=GiFP47xCJc2saNoTJXcIGaG3jvN5gQzuvDz77fHNo5I,23596
101
+ xinference/model/llm/llama_cpp/core.py,sha256=WDmTHmuqBzCNbsvaZPkpgwz8IHcsNL4ktCFoJv5Y2ns,11454
102
102
  xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
- xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc3ua8yPTI,19835
103
+ xinference/model/llm/lmdeploy/core.py,sha256=sLYhIzmIFv7IdPh2Ft8cC2_jCdJMQ2bBAzPpktDB3bA,19981
104
104
  xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
105
- xinference/model/llm/mlx/core.py,sha256=D4dvRLRbHhdGe-sQ-x25APy11y-ZxQtLLsIZKB1qpyI,24144
105
+ xinference/model/llm/mlx/core.py,sha256=B3gO3wJNYAC6O5iVTHgSEBzjST3L90MrBd8taQSxSvc,24828
106
106
  xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
107
- xinference/model/llm/sglang/core.py,sha256=NuwUIz-u3F6LRcB_DIn173jRbzJG8L-0E8ROqxEQoPM,24152
107
+ xinference/model/llm/sglang/core.py,sha256=wXm7D9pxlvWQqtVnC0vGzBK0KjjTe-RW_QvQXQsb3uA,25161
108
108
  xinference/model/llm/transformers/__init__.py,sha256=RZKVW6N_S6XlFEFN0Krf_QcGkTUAj-k3-FXKC7aKDu0,1103
109
- xinference/model/llm/transformers/chatglm.py,sha256=pIBPhR4cpeOR6ok5dKPK1633M1RMHCzrxB2fpDRaCuY,22426
110
- xinference/model/llm/transformers/cogagent.py,sha256=JbIiqVW-S9MA3d4CN2DlI7-WDB_nuCbX8JSypR5TmVU,10080
111
- xinference/model/llm/transformers/cogvlm2.py,sha256=I5Ftm0VYjbTAv5ZARZCo32Ggpw58PJfHs5B_nX_BIlU,15972
112
- xinference/model/llm/transformers/cogvlm2_video.py,sha256=ZGkpC4x2uEtjwoMrLSODmAUYTjOeSNYxZi9VpQrpnhU,11857
113
- xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
114
- xinference/model/llm/transformers/core.py,sha256=YAFCKo0n8YrPmHL2Bi8JI8MB3_0sDCFGd-mXnrVjOXg,29805
115
- xinference/model/llm/transformers/deepseek_v2.py,sha256=-RKlI3mhja730md4evQ2vfIxBnZD5vWyrgmg_3eovms,4096
116
- xinference/model/llm/transformers/deepseek_vl.py,sha256=efbuqo5hKPZOVdiWkl2DXPd0Ml9bIAatcJNFVOeZSjQ,10453
117
- xinference/model/llm/transformers/deepseek_vl2.py,sha256=2rgHBH9P_N0pMe17SeC7Ga_OATNYhdnZ64-VLNpRfWI,10990
118
- xinference/model/llm/transformers/gemma3.py,sha256=S20KmRz707eV9FxFkKIOFmvIpJWMcFCwV_DOrtHSeMg,7117
119
- xinference/model/llm/transformers/glm4v.py,sha256=goph2HhpV8gUm2t8-T1P-jTF2r_kPeH6QNe64lmlm0g,13871
120
- xinference/model/llm/transformers/glm_edge_v.py,sha256=sedHB4iRd37UC__1MeXs33NLMQQKFYBIFf3A71rMEZU,8159
121
- xinference/model/llm/transformers/intern_vl.py,sha256=hPykgXAP9fkogjCA3DPEVqHTCDV_357YM8OZ76sq698,19216
122
- xinference/model/llm/transformers/internlm2.py,sha256=3mjRgqU0RgCFF0F46ieVH0NO2JCKGsQkmkoVlWJrh8E,3221
123
- xinference/model/llm/transformers/minicpmv25.py,sha256=mr80-OlSlK_opSuAO3cz_QlkqujLr6V-OsTP0ebwpE8,6814
124
- xinference/model/llm/transformers/minicpmv26.py,sha256=t9y5H83H2iu5RgVg4yAarwvyDjuvZJs80uE44ZoonTo,14130
125
- xinference/model/llm/transformers/omnilmm.py,sha256=2ZLW979ETqDDKo9CaTNwi9uLBZ2d6itHAYqjUA4jdro,5172
126
- xinference/model/llm/transformers/opt.py,sha256=dkZFNwtw_sUuVaz9He6LWfEojRGfOQFQ5atvC5OYPuY,2429
127
- xinference/model/llm/transformers/qwen-omni.py,sha256=y-mS1ubwHXo5v2mCs3P7D9P_vLcskzJut_o_KD0cvI4,10252
128
- xinference/model/llm/transformers/qwen2_audio.py,sha256=e0uU5HFPesb1sszDJcG0WRd-v9GfJF7AbK7w847oYbg,6278
129
- xinference/model/llm/transformers/qwen2_vl.py,sha256=DbSQGhay0uRFAZgEDDLwa4fBYCKl04NBAmhVezQxJmY,9269
130
- xinference/model/llm/transformers/qwen_vl.py,sha256=LG19qJW30bFiZOS-t9OM3JP6K1KCLj_Sv3nKSCLvyts,14058
109
+ xinference/model/llm/transformers/chatglm.py,sha256=yLRJENdeLfm-gCWNoCU-JWYjhJWQ8EbLJdl0Rpd7-6o,22746
110
+ xinference/model/llm/transformers/cogagent.py,sha256=Bh_por_RJTIMgyxw91M-6CGj-arrgXDblHidI7plErk,9994
111
+ xinference/model/llm/transformers/cogvlm2.py,sha256=GYQ7__4YC53XUmzeHvcpGafceoVjJ8cNnTipmFNMYSM,16075
112
+ xinference/model/llm/transformers/cogvlm2_video.py,sha256=2lnKlJSMnGzyexbAgy759Yoav1b628TMZqykgsHI54Q,11715
113
+ xinference/model/llm/transformers/core.py,sha256=rpsAcJSkNnLySeQN7sGK9zG9YB_LjS3QHsVEW1nGRrs,29561
114
+ xinference/model/llm/transformers/deepseek_v2.py,sha256=8N4sFDBe19i2sWhS-4EJm1s-QGcHJN7Uh9-p8ftMU_I,4150
115
+ xinference/model/llm/transformers/deepseek_vl.py,sha256=IrmAueiFJB7-hhuOwqJKbm2aqWXDjo4fQ8uhEQCePrY,10579
116
+ xinference/model/llm/transformers/deepseek_vl2.py,sha256=eRN8hJoOD-M9sRvi-BgH7kU28OTsbCeuwRSW-2dThmU,11062
117
+ xinference/model/llm/transformers/gemma3.py,sha256=sYQSJNA8OEv7jX6tuBd11Rputz3nuP_xxeolQwCAEjI,7159
118
+ xinference/model/llm/transformers/glm4v.py,sha256=RZ-b4jQgnGeytnqqDK2ZeVFuQl5MugbB36lKDg4r4wg,13141
119
+ xinference/model/llm/transformers/glm_edge_v.py,sha256=qpLihGAzAONL15LRS2-NDyrttiUF0hhTaKNNOfqPGuU,7427
120
+ xinference/model/llm/transformers/intern_vl.py,sha256=YaOQBXkc8MoE2sr8c5pSmp1LD8ZrsiXJiwoGOXrQxdA,19080
121
+ xinference/model/llm/transformers/internlm2.py,sha256=pkL32jkATCVvsH8wwsIb4LUdgqOnBwX35UsukBETkPQ,3226
122
+ xinference/model/llm/transformers/minicpmv25.py,sha256=WssG5N4VZqoLD18Po6_d5JFqTaPUztm_zwppIntIyy8,6885
123
+ xinference/model/llm/transformers/minicpmv26.py,sha256=r5dxqyOzJME0uqiEW4Xddiu5196fzULolR0ij89sR-M,14241
124
+ xinference/model/llm/transformers/omnilmm.py,sha256=3JthdEbvJuZCJXdVexDAkDlEmU72Gv0dVznh14K-dWk,5177
125
+ xinference/model/llm/transformers/opt.py,sha256=RLmKlhkHORPcNqAdlh8Snf_3bZAan9FUz39Id6SUsdI,2434
126
+ xinference/model/llm/transformers/ovis2.py,sha256=Da_8u0Hv-2TywPYmXrxLI55N0tKie6xPAY_wAVXX3W8,10811
127
+ xinference/model/llm/transformers/qwen-omni.py,sha256=XbvckerhJuQZSJ0zkRmPjr2Fx-SeLxKjqHATWwEINzw,10460
128
+ xinference/model/llm/transformers/qwen2_audio.py,sha256=3fjgDIgTw4-CuA0GKNoRnPArdMxW1YNxaTmSPYmv0_Y,6352
129
+ xinference/model/llm/transformers/qwen2_vl.py,sha256=xbbRoVHPCqcjghVh7TS0BVCwaDUId-kkypJJkj6Z-Hk,9378
130
+ xinference/model/llm/transformers/qwen_vl.py,sha256=QDrElgb_tAJFWrvOzxZd8GmabFa39HRxziQNZOrEtDg,14172
131
131
  xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
132
132
  xinference/model/llm/transformers/utils.py,sha256=KETjuVR_RpF--fno0KxT068fD1v4REFhe-0wy_sCwRs,19584
133
- xinference/model/llm/transformers/yi_vl.py,sha256=iCdRLw-wizbU-qXXc8CT4DhC0Pt-uYg0vFwXEhAZjQg,8961
134
133
  xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
135
- xinference/model/llm/vllm/core.py,sha256=OHUxo5iqXzYg0zaUbT4iI5Xl1xl0A8CSRqsPdIjTbXs,45985
136
- xinference/model/llm/vllm/distributed_executor.py,sha256=r_dftypuuLGYVf2Z6YmU6oCB9e3vLTi-rCegfVQRP1I,11669
134
+ xinference/model/llm/vllm/core.py,sha256=4VxgW5_dADLxpLi9SxV-l_MXwWg6gPHE1urjyhLa04U,49287
135
+ xinference/model/llm/vllm/distributed_executor.py,sha256=wxIjZ9-TAr6kHqQAHInY3ZWJsLuno_CU0lXl1xP3W6I,11735
137
136
  xinference/model/llm/vllm/utils.py,sha256=LKOmwfFRrlSecawxT-uE39tC2RQbf1UIiSH9Uz90X6w,1313
138
137
  xinference/model/llm/vllm/xavier/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
139
- xinference/model/llm/vllm/xavier/allocator.py,sha256=SJ2eCOxF6CWTBZIP39FRxeK6fxIE8pRshOPnSRc72d4,2691
138
+ xinference/model/llm/vllm/xavier/allocator.py,sha256=5YGAvbbA77gEQMRByJRkyjQhpW-yv4TPl4gS6im2dKY,2707
140
139
  xinference/model/llm/vllm/xavier/block.py,sha256=cdxHi-dqojbdng9tt3lMcc8AfL6gkT4lRXqqGUO5G8M,4457
141
- xinference/model/llm/vllm/xavier/block_manager.py,sha256=9rJaTWGf6mPny78D0YdfhWt2vovEUyP1C2C974npGXI,2822
142
- xinference/model/llm/vllm/xavier/block_tracker.py,sha256=h4kqWhnLVol2hPykN7yxMbpFcWhCgye9D7LJXiPj1s8,5599
140
+ xinference/model/llm/vllm/xavier/block_manager.py,sha256=vdOmTDc0V-Ev9q3VdX-ZLzKM_OVqbP488uN9c-lt-8Y,2838
141
+ xinference/model/llm/vllm/xavier/block_tracker.py,sha256=yzLSt9fGDdTM63ctaKMyYSgmGPAI0izgNg6mLApdQz0,5647
143
142
  xinference/model/llm/vllm/xavier/collective.py,sha256=_yENFr-SJ38TywSYW2MgnEsagkTxarQOjLTacrdriYs,2563
144
143
  xinference/model/llm/vllm/xavier/collective_manager.py,sha256=oyenv3OziB1sUZylVpdi7piGbOIEgxtVWwuHa-y0vuc,5584
145
144
  xinference/model/llm/vllm/xavier/engine.py,sha256=WlKoxnE8HTUMVHr-PC9x-5emwZAjsMMxUBxUgcn0fQg,10443
146
- xinference/model/llm/vllm/xavier/executor.py,sha256=Dy_H3etFMoCCtqYYlJUUylxLZaSDrMsPUxnD-u7kRXc,5692
145
+ xinference/model/llm/vllm/xavier/executor.py,sha256=RSTjuSgYbp8baCoU36rqEC75-4Z7qW0wlAaK8YoeSJ4,5708
147
146
  xinference/model/llm/vllm/xavier/scheduler.py,sha256=yoD15TaqRprEg_4weuU0HECMTTi__wNCXplL_ytNjoc,20328
148
147
  xinference/model/llm/vllm/xavier/transfer.py,sha256=2IbaiAhRnJMwa9qsMa5bowngqfjxDeht0JS1BMbRmyA,11319
149
148
  xinference/model/llm/vllm/xavier/test/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
150
- xinference/model/llm/vllm/xavier/test/test_xavier.py,sha256=E7MDGTeGJMaULoIKez6lt2Vhz0w6FJlPyAELUjE0Chw,4890
151
- xinference/model/rerank/__init__.py,sha256=wRpf1bOMfmAsuEKEGczMTB5fWEvuqltlJbIbRb-x8Ko,3483
149
+ xinference/model/llm/vllm/xavier/test/test_xavier.py,sha256=lSfo4caaLdWRh0diJ1jd_sY85GV-_9BT40ySs_nirJQ,4695
150
+ xinference/model/rerank/__init__.py,sha256=yxxv4OOHCl3UUOLENP45Eghf_dEsRaCkUUcW5bth_NE,3141
152
151
  xinference/model/rerank/core.py,sha256=tKNKx8df8l4BIu77I4YFhx9l7bkFkcXEFx6rppRmXSM,14849
153
152
  xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
154
153
  xinference/model/rerank/model_spec.json,sha256=xUuJgJ8Ad4l2v8gEHxAdF_xoaSkA8j8AX51LhrjGEA0,2005
155
154
  xinference/model/rerank/model_spec_modelscope.json,sha256=pf5hX4g0HdVjk2-ibHTl_mXHgQSSPYMTBOIwvnwMMkk,1616
156
155
  xinference/model/rerank/utils.py,sha256=MJAFL47G3r3zLVGXKoi0QLTgU3Xr4Ffv72Ipn--psew,713
157
- xinference/model/video/__init__.py,sha256=mRhOhzMxzcPFdA5j4niAxH_j9dXLtT9HmchuICrdET8,2160
158
- xinference/model/video/core.py,sha256=uyWjVPEN_AUUgnjV68BQw4RhNjO1OSg-6MBaRGa1AJM,6205
159
- xinference/model/video/diffusers.py,sha256=P6GCKY5TFvLaMKyVBACXPUB-IVNo8-9HCRwfnqHPfoY,6982
160
- xinference/model/video/model_spec.json,sha256=ubTQsEfEVIzHz7O8XZOSgo-PtQRLz_qctv965ChI7gY,1218
161
- xinference/model/video/model_spec_modelscope.json,sha256=sjKMD-qRQMZ2NWTL7NxrclSljIVtwPFmgRKjObJmYtY,1198
156
+ xinference/model/video/__init__.py,sha256=K8zlxWsflB2vmIQgQJCttbudHvblKUSYkoBQcCZYO4k,1797
157
+ xinference/model/video/core.py,sha256=jrBLq1MwB8rI0Mny8mvHlQ8N91uSC_O4tbkjbKHcWjc,6205
158
+ xinference/model/video/diffusers.py,sha256=GKlntHkOYJD_QsQe50jS63CMz7UGn7ITn06tONUrn5s,12780
159
+ xinference/model/video/model_spec.json,sha256=y0c-qty2ptciLNgQOEKLiBVUwaaiBcOaDFKMwe_qBa4,3401
160
+ xinference/model/video/model_spec_modelscope.json,sha256=X-xbJjo9_Q7x18UdxhVj2V8NffvdcBS6Zf9w-hmwJz0,3369
162
161
  xinference/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
163
162
  xinference/thirdparty/cosyvoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
- xinference/thirdparty/cosyvoice/bin/average_model.py,sha256=5x2fXo-HX6r_3aBoXfyGYG6w1Qp9l_XUcxesYZqGUyA,3143
165
- xinference/thirdparty/cosyvoice/bin/export_jit.py,sha256=o6qMUNJDrvXw5MHwIKS6Tj_eeJsSrOrAnvQ0YD5HTmk,2628
166
- xinference/thirdparty/cosyvoice/bin/export_onnx.py,sha256=PjD9UHpK2uGn4i7NBows5vpDd2Ho5oXy-jey2p0Jz8E,4560
167
- xinference/thirdparty/cosyvoice/bin/export_trt.sh,sha256=LS96nBmlkJn097zmyGhSAdDLQpZBtAkQGxCFedNikAQ,931
168
- xinference/thirdparty/cosyvoice/bin/inference.py,sha256=l4wX0LPraGw41VFQOMWp8_kMe1Ac3ZkuK4tXQHhjXko,5471
163
+ xinference/thirdparty/cosyvoice/bin/average_model.py,sha256=82LeGlvQh8xFHA_T9fJJDBTtDhJ_UzukJJcFRjyjc9Y,3202
164
+ xinference/thirdparty/cosyvoice/bin/export_jit.py,sha256=hgg-8YeZSpFgglUbBstZQIecImQfpxCEHIPJHOubi84,4044
165
+ xinference/thirdparty/cosyvoice/bin/export_onnx.py,sha256=2FYTh1zgoW5ZVy6qgyAJiCuBbLwk_vAnsPEUhXz-uTw,8989
166
+ xinference/thirdparty/cosyvoice/bin/inference.py,sha256=L0TFWln2tDD0FFrBnmbhCOmjr7Ua7TgqCghhnqgv088,6018
169
167
  xinference/thirdparty/cosyvoice/bin/spk2info.pt,sha256=-0kWCdolo1FLdtdtVdvyZoY5TDeNWWEo-z4V8rdM30Q,1317821
170
- xinference/thirdparty/cosyvoice/bin/train.py,sha256=8S9T_DIGY-hYsq_jQJ5y74Wp3w-fhojLD8ChZYWH1Gg,6806
168
+ xinference/thirdparty/cosyvoice/bin/train.py,sha256=2KTcLXOJ820ev03FZ4Zx7kpOb82DScKwgqEUFFHOmQ4,7096
171
169
  xinference/thirdparty/cosyvoice/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
172
- xinference/thirdparty/cosyvoice/cli/cosyvoice.py,sha256=VrtqD6do3ISDH74-HdRTyyz-NKBDZOg4oB39ZHeauRc,10150
173
- xinference/thirdparty/cosyvoice/cli/frontend.py,sha256=5rA7nUy7Mkc9WEKXrkxHDIqQK26sN_LRgqRO8_8UfQE,12587
174
- xinference/thirdparty/cosyvoice/cli/model.py,sha256=J5JnJ9fqIrfg8tiIn8a1cyZfkFEoeyKZeSCeYoT8DIg,26351
170
+ xinference/thirdparty/cosyvoice/cli/cosyvoice.py,sha256=RFI2-U28kV8bXijqblbK_4KWJvGaiwV0yN2PC1k_lOk,11925
171
+ xinference/thirdparty/cosyvoice/cli/frontend.py,sha256=ZwzLMah9OETUHcK0eQTVa9EHaPduf2fRH0x-Ms9JAVE,12349
172
+ xinference/thirdparty/cosyvoice/cli/model.py,sha256=McyHerhnbOfgAd0OyGJuCyGGkfHfmlTa4JQIymSDaF0,26501
175
173
  xinference/thirdparty/cosyvoice/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
176
174
  xinference/thirdparty/cosyvoice/dataset/dataset.py,sha256=6CJJZv1hOzK6jTbqsYpcL5UQk1O5dnc25NVgnSDuA_U,5403
177
- xinference/thirdparty/cosyvoice/dataset/processor.py,sha256=t-qv63eCAXmeU863MKckFT7J45nTQomT_DLiMH6m_Cg,15416
178
- xinference/thirdparty/cosyvoice/flow/decoder.py,sha256=SH54O2Z7iXBjwVtlOufgF9SyEEV7p5hg4yv4ueccbSg,12311
179
- xinference/thirdparty/cosyvoice/flow/flow.py,sha256=l8tkOqkLo7CkH9tb2CzcEsIoQcMqbMMIMH5fclLmxi0,10252
180
- xinference/thirdparty/cosyvoice/flow/flow_matching.py,sha256=AhSNEWfkm9nnfqXCgl0MHusJzO30ACcX50jdGpuq0so,10647
181
- xinference/thirdparty/cosyvoice/flow/length_regulator.py,sha256=CG331RLBuvsAWUmglhz00OiFmnnmi9KpO-arTitwsuM,3060
182
- xinference/thirdparty/cosyvoice/hifigan/discriminator.py,sha256=PorODWt9kG9fk1PNApkPm8QPuzF-ufUkhOukoQ8g9ao,5341
183
- xinference/thirdparty/cosyvoice/hifigan/f0_predictor.py,sha256=4Ter1WnuSRA7wytzQfEtu-3PuA-Qrg3ywR5Hs7fsV74,1976
184
- xinference/thirdparty/cosyvoice/hifigan/generator.py,sha256=AzO0ALwzt7XvZqzxzl2xuRSsM3IecoUQOHoQU_fkTPk,15498
185
- xinference/thirdparty/cosyvoice/hifigan/hifigan.py,sha256=CH96CjSUNW-C2dCocseSZhIUQ2OAS0OLj4sRsSbCYys,3231
186
- xinference/thirdparty/cosyvoice/llm/llm.py,sha256=vPJIVmQmLvboKN-ywb5bHkshXyAetaJtHxWzE7TYQWc,14420
175
+ xinference/thirdparty/cosyvoice/dataset/processor.py,sha256=wZ0VFSasQ-poZtLRrs2LodPyEBHtG_k8j91BrRyC93I,15860
176
+ xinference/thirdparty/cosyvoice/flow/decoder.py,sha256=Qcg2cw31zL72HskaKYJRg70jGJTC9uU3CGZ7wuZTEck,39640
177
+ xinference/thirdparty/cosyvoice/flow/flow.py,sha256=jAc4z7P7ol4zfDzf_gUsJ1HE6f8PTzgZe7qs7pC7CS4,12882
178
+ xinference/thirdparty/cosyvoice/flow/flow_matching.py,sha256=1ZCR2NdGQqOlApTudxngJNaX2tCWzVpAvMzG1_P7u8Q,17576
179
+ xinference/thirdparty/cosyvoice/flow/length_regulator.py,sha256=srvavaBIUN8Mk0Vi35WyN8og-n6P6J0E2bgnqZ1nQRs,3137
180
+ xinference/thirdparty/cosyvoice/hifigan/discriminator.py,sha256=PbWxtVhMYAyZbujFPqAhNwqK2cYuP1oo1c8l8Dq5-c8,8617
181
+ xinference/thirdparty/cosyvoice/hifigan/f0_predictor.py,sha256=uoymCIodAtYIb-oh0E1p7pgXvdjqICiZgJnLCXGhhmk,2065
182
+ xinference/thirdparty/cosyvoice/hifigan/generator.py,sha256=-AWjuHPx7yTSkZAqzr1PREy97t_FUsDpNzsAK1PetCQ,15587
183
+ xinference/thirdparty/cosyvoice/hifigan/hifigan.py,sha256=6QDaL15-wwLbmm6m0rcZkOq9iCPgfllBm32MUt99wNY,3240
184
+ xinference/thirdparty/cosyvoice/llm/llm.py,sha256=HIMnbll2NOesbviUAwkj40YU5bDaydw6NJIyuVtUxf8,25497
187
185
  xinference/thirdparty/cosyvoice/tokenizer/tokenizer.py,sha256=lDQPx83ycMaaOutjKQxSQQROIHFOAf6nNvNh-eWlbfI,7456
188
186
  xinference/thirdparty/cosyvoice/tokenizer/assets/multilingual_zh_ja_yue_char_del.tiktoken,sha256=dHl5Yx6BMZNDaqvP98HCNdN96Al7ccVj7Itjt6UVxxg,907395
189
187
  xinference/thirdparty/cosyvoice/transformer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -192,23 +190,23 @@ xinference/thirdparty/cosyvoice/transformer/attention.py,sha256=QdJpstXjo5UsClOP
192
190
  xinference/thirdparty/cosyvoice/transformer/convolution.py,sha256=619B8ySpciXHO5xDCvi7IxvXc4bvGEULsP0yn0aatOE,5230
193
191
  xinference/thirdparty/cosyvoice/transformer/decoder.py,sha256=2wQscn4OZTrJJHM7H7FeaXkv_YDJ089iJIN0VV1Yocw,16580
194
192
  xinference/thirdparty/cosyvoice/transformer/decoder_layer.py,sha256=uVZiq3LsawsPUMOhX77PFvrLeG0yO0rKHQY7nCHA1k4,4807
195
- xinference/thirdparty/cosyvoice/transformer/embedding.py,sha256=NkbnSHg_5sBptCTMnL_oG8VKXM_qGucEHfOYpgPMzT4,11399
193
+ xinference/thirdparty/cosyvoice/transformer/embedding.py,sha256=tQwwvlxmw5yV4NsQFYFMVF_NBiqTbA6nrUwBUIslldw,11777
196
194
  xinference/thirdparty/cosyvoice/transformer/encoder.py,sha256=J_nXSZcgNy--Z3TQkLif8GPH7PiPk6TXWye7GtspGKU,21434
197
195
  xinference/thirdparty/cosyvoice/transformer/encoder_layer.py,sha256=GSBYK-LJt894Nee1ORGOweudqPLHEcYlf4WYs3kpUbk,9602
198
196
  xinference/thirdparty/cosyvoice/transformer/label_smoothing_loss.py,sha256=24gEzxwg4a-_bDPeSDZYmxlH2IF5fQLVB8KoqNT0D90,3459
199
197
  xinference/thirdparty/cosyvoice/transformer/positionwise_feed_forward.py,sha256=boA447zIyght3KUI-5udQL86uYvrq89clJNdAyMp0Pg,4219
200
198
  xinference/thirdparty/cosyvoice/transformer/subsampling.py,sha256=MfwDR6hRq8EgXf1M9oCZwMQWWJw-maB7JQ6GMM7OGdA,12666
201
- xinference/thirdparty/cosyvoice/transformer/upsample_encoder.py,sha256=f1mSmwAVFN8srFbkCTVBPEkGfqpZwbUsaTKuY9NW3cA,13766
199
+ xinference/thirdparty/cosyvoice/transformer/upsample_encoder.py,sha256=i3ihzu4Fkmsz7y48TyDtyM46seC6UkPqxu7r2zmMTDM,19343
202
200
  xinference/thirdparty/cosyvoice/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
203
- xinference/thirdparty/cosyvoice/utils/class_utils.py,sha256=PnVIVrqHzyv9FA4mvpkHcvABQboGubVVELE_QVI40YA,2582
204
- xinference/thirdparty/cosyvoice/utils/common.py,sha256=nBnqfbt_6hpmJOqFu52GDgwZgrY7KmBE5QvvifMxhfk,5834
201
+ xinference/thirdparty/cosyvoice/utils/class_utils.py,sha256=ddaXf3V0ME-EZM21DIiVZMpVepmhEkGZGLKYHw6Nz8I,3321
202
+ xinference/thirdparty/cosyvoice/utils/common.py,sha256=c1kgvLBtcrexKzVa6RS4FAkEFBi39k2GAQ9d9_U_ph4,5820
205
203
  xinference/thirdparty/cosyvoice/utils/executor.py,sha256=tivb-mBApjKUakLKqBeMvjqAZUyPa_6I6cZfbJoxmhc,8559
206
- xinference/thirdparty/cosyvoice/utils/file_utils.py,sha256=rNS-oF5o3Xe159ge-rAxPdnIYkd7B50ufC3yz5rP9mE,1661
207
- xinference/thirdparty/cosyvoice/utils/frontend_utils.py,sha256=kk4JnPCuzmO-K2jARcqyLhZpQ6iq2B823ksmgX_qufE,4029
204
+ xinference/thirdparty/cosyvoice/utils/file_utils.py,sha256=i8Dl1iYdErTAcDQEi_Pbz9guTJBF7S92O5A7eGObYIQ,3421
205
+ xinference/thirdparty/cosyvoice/utils/frontend_utils.py,sha256=DQypTgz1GeLRf3LNHcq2yweuoN5I5-eSgmNiKE6hjTA,4273
208
206
  xinference/thirdparty/cosyvoice/utils/losses.py,sha256=VRkh1v_mmss65WcRKv9-EPqOwSKGixeUtI0bIXZgdZk,607
209
- xinference/thirdparty/cosyvoice/utils/mask.py,sha256=kAauQRdlhQGrC0BjvYFpicLOlVKDp3V3ZCnLbbTMaHU,8351
207
+ xinference/thirdparty/cosyvoice/utils/mask.py,sha256=B2zNvw1dulplf5N_LVpZI7eQxHlu9eI-3HqDT3Ynbmc,8637
210
208
  xinference/thirdparty/cosyvoice/utils/scheduler.py,sha256=lEfquE_Lcer2VG2zUVa0n-UxgvJEdEodyT66so-h6jQ,24920
211
- xinference/thirdparty/cosyvoice/utils/train_utils.py,sha256=JH6OWnIcR9NZE9CP-Clu6-YuBAmHgkzzVp4q48FUvsc,15154
209
+ xinference/thirdparty/cosyvoice/utils/train_utils.py,sha256=eN7y8wvL8dsOn5uMdV97pwkq0vh_aWzQaJ2FRgNSn_g,15400
212
210
  xinference/thirdparty/deepseek_vl/__init__.py,sha256=N5CYTfTFEiTT7mrNrrGTSyvDOVkGVO3pE_fWm8ugcAw,1458
213
211
  xinference/thirdparty/deepseek_vl/models/__init__.py,sha256=gVJoBKpRfny6w_QpTrTh_iCqUtVJZLuctzfPQq-dKDw,1328
214
212
  xinference/thirdparty/deepseek_vl/models/clip_encoder.py,sha256=tn-uTCAcb63WOX6cB0rl2ynOsum23xy1tAvBqPbIHHo,8197
@@ -453,7 +451,7 @@ xinference/thirdparty/matcha/hifigan/denoiser.py,sha256=Q2juI2a3QTqce6fuvqWQnSho
453
451
  xinference/thirdparty/matcha/hifigan/env.py,sha256=QthDmqTWWAIo2tSI-arVteRVxnKUnm9mkjlQVnXbmDc,429
454
452
  xinference/thirdparty/matcha/hifigan/meldataset.py,sha256=4Ps0NXA3Yv0oV2PyCdHcptc4lZ43tp978m3BM2NYWxc,6786
455
453
  xinference/thirdparty/matcha/hifigan/models.py,sha256=Ln7J7YzeN4h33tBKQHhlPcoNfmX-_-kwBkTZIYJY5q8,11668
456
- xinference/thirdparty/matcha/hifigan/xutils.py,sha256=aNtYu1SyQaGtbN_NnSfLGhTi-r_y3vYKMIf7EYGaDOA,1396
454
+ xinference/thirdparty/matcha/hifigan/xutils.py,sha256=JDAeT9GaNSkjjzdnPqE_BfzNd2hM8ToIycTD8ge-N7g,1402
457
455
  xinference/thirdparty/matcha/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
458
456
  xinference/thirdparty/matcha/models/baselightningmodule.py,sha256=0PKvALIWaJLGV2Pgyl9mwAXbTViC-M3J1Yj934mJ1rU,7049
459
457
  xinference/thirdparty/matcha/models/matcha_tts.py,sha256=bIRbDYMzUir6W7oH9MoCGD_5s7Ug8kcc-vmOJM92QNU,10383
@@ -632,14 +630,14 @@ xinference/thirdparty/whisper/normalizers/english.json,sha256=Zgf5SL6YJNLhsvoiI8
632
630
  xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc3yhvWzWuMhQzRnp2dM6IQdA,20868
633
631
  xinference/web/ui/package-lock.json,sha256=Q3gwsjjCFtDjVg5Yk7s4jfMAZ1wiyFfS_TJCw3ECB64,762407
634
632
  xinference/web/ui/package.json,sha256=iitsROb4-TLzxbOftXJqUGpp38TuPhzfLKy5n9THQYg,2081
635
- xinference/web/ui/build/asset-manifest.json,sha256=jl7_4bMVOJ0jdOSqzDWwN5fw66FNrxg87RUJwUZs0gE,453
633
+ xinference/web/ui/build/asset-manifest.json,sha256=BCqyv0Yw9W6tkZgzgfowrAPyn0FMyCTw04uVw9-S4qY,453
636
634
  xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
637
- xinference/web/ui/build/index.html,sha256=O88yZxFQR1hiqRh4cqxxoFG5BVzW4Xn86pa1RsmdgNs,650
638
- xinference/web/ui/build/static/css/main.0f6523be.css,sha256=vR2US4TjBZi1ltn1p5SXFaISOf7fs4Tu0UGD3GhTPY0,5191
639
- xinference/web/ui/build/static/css/main.0f6523be.css.map,sha256=5K7_iKz10aejOxbQvgjum9MjfngiMPTvskAjZcu0FCg,9786
640
- xinference/web/ui/build/static/js/main.4b67a723.js,sha256=T1bWL5eUGWC1-IVNVb2z2lBiQ29DNpD3WqJ-hJRcMkc,1238303
641
- xinference/web/ui/build/static/js/main.4b67a723.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
642
- xinference/web/ui/build/static/js/main.4b67a723.js.map,sha256=cJfbsEDwxJry_lKmOkJCI3TVMd0ZQrGwHf-AKsoOPwM,5228060
635
+ xinference/web/ui/build/index.html,sha256=WC1C6818TaoDCWF_XazygkYDr3abE9_1H4wkLSwyI1U,650
636
+ xinference/web/ui/build/static/css/main.337afe76.css,sha256=2gpwMegLjHVlFTO6g0bp9f1NPMbiycoZS0RKeQB25ko,5273
637
+ xinference/web/ui/build/static/css/main.337afe76.css.map,sha256=qg8_Ykb0_Zo1QXgq3Vm0nMv01_AgL8hxxk84sFfqlg8,9920
638
+ xinference/web/ui/build/static/js/main.ae579a97.js,sha256=5TFDB3UflE94zr0B5oHcqMFSFqBYSKHMcEEHVjV2FW4,1239783
639
+ xinference/web/ui/build/static/js/main.ae579a97.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
640
+ xinference/web/ui/build/static/js/main.ae579a97.js.map,sha256=ph-6CTWNhWAS3OMHuCu4BrcxAB3XCyUD2zpdJ4Jq2bM,5230012
643
641
  xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
644
642
  xinference/web/ui/node_modules/.package-lock.json,sha256=2kL1sQ4ZuDQilki9DnRFFM8CxT13fyGl3chLK6i3DQY,760261
645
643
  xinference/web/ui/node_modules/.cache/babel-loader/00012b59e7dc64a18400bdddb660faa295258241c0b9cd15c78cdba63b858ed8.json,sha256=FhiSQ9MQv6bT7TkLBlXXskoaG2HCKhsuTXXlkDV-pM4,668
@@ -717,6 +715,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/01844a80ad31cbc52605aaf3ca797
717
715
  xinference/web/ui/node_modules/.cache/babel-loader/01844bbc12407de1ae8c1e997e6ea1f4ae7e7699c1f497255768dc9a0ada2f8f.json,sha256=8FEEYQpC1yZjJ6fpcZr-t4hUWk7ysFxnVD1Z3pUcAaE,1629
718
716
  xinference/web/ui/node_modules/.cache/babel-loader/018760e10cf3dacffde7029d71475ebf752e297444499514f34ef805c387da8e.json,sha256=ttXODjkhyINrvptoe-kI_DsOerAAb4mFf9rFvM28g3U,1115
719
717
  xinference/web/ui/node_modules/.cache/babel-loader/0192f73be5c38c3a270959456389765e29eb61bb1d7970e5440e4327014339e6.json,sha256=rYEBzxwjAL-hkgzqPlJLZZ9lxbifqhoK6Z61o8fAXeo,1433
718
+ xinference/web/ui/node_modules/.cache/babel-loader/0196a4b09e3264614e54360d5f832c46b31d964ec58296765ebff191ace6adbf.json,sha256=S31peFmPj8SyRhTikhjSDuc62jV3o3nBQJxwX5nF8yY,21254
720
719
  xinference/web/ui/node_modules/.cache/babel-loader/01980594042908e48b85a92879270e1809ad633a7db18b118b1483e8263aa506.json,sha256=QRT8fm4jpf9arR4NTna_Ys0Cobi3evFuqO53mGs2hyc,1425
721
720
  xinference/web/ui/node_modules/.cache/babel-loader/01a61e4047a2038015e6f21ed139506a4e140e7cbcae537cc730268646da118e.json,sha256=Pkwdvmzh8ITiBWhSiBeVSBd0C5C7FTQH-FamoMBLRtY,913
722
721
  xinference/web/ui/node_modules/.cache/babel-loader/01adb42242839b43e7351585628a7150f83f3a21f5baa65359dd25d9c14a839d.json,sha256=v6s_avWo5Z5ChMtqa7iGQbvJjLHTycPjY0NB0zCOs8w,313
@@ -1357,7 +1356,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/0ef84bbb6b567d753a060bcd921cb
1357
1356
  xinference/web/ui/node_modules/.cache/babel-loader/0efd7db36d8479197fe4d6fd406d90fe9841d6018ce2b1b0f53f25e7438a88f9.json,sha256=6fOUQui_YSFHFDeWqK8nxrcJ7Z1VyTSyijVj7yimtgM,1530
1358
1357
  xinference/web/ui/node_modules/.cache/babel-loader/0f0411593a7e8b8bff7f9a4b09f708c6eaafae8d359b73017a63c901658901d3.json,sha256=fgXt_imBl5ngvobBRLkdi7cI6AyW_07onWYdiyYdVP4,1732
1359
1358
  xinference/web/ui/node_modules/.cache/babel-loader/0f0a073112ecc16a2813d386f82fe951dc0ce5a10473ff1024aacb58bf001cf7.json,sha256=wz-iXkh0-WT0xa1w7ZuzY2oK6-4vS5W815CkMygUE_A,1259
1360
- xinference/web/ui/node_modules/.cache/babel-loader/0f0adb2283a8f469d097a7a0ebb754624fa52414c83b83696c41f2e6a737ceda.json,sha256=gXeQ-hi5JIvzEIv3ZLo6A1MbFoNrcG99AsNekqoK1-0,79726
1361
1359
  xinference/web/ui/node_modules/.cache/babel-loader/0f1103819797fe986c40db633df5e68feb9e429753a497815b0babfa25bbbc5f.json,sha256=BLBzQuF_qHwWXayWpBeCIxJn28euUGFuIdLxxygQKcE,1320
1362
1360
  xinference/web/ui/node_modules/.cache/babel-loader/0f11394414eb9c39d69d5b451ba37c9796ebdc1355faca1fe1b99ff5238cdc5b.json,sha256=Aw19lQ1qJZWQVAyuXkJLEUTECb8-AOda5y-IUzNxpFY,1456
1363
1361
  xinference/web/ui/node_modules/.cache/babel-loader/0f130ad0b650f6c87c8678f5b5a766a9539bad1a26f67cb0462ce468b5cadc2d.json,sha256=yCSTVZ_eNRZrULnaWjUNE7Q8BPSxWe0kom7rG1k-d84,1602
@@ -1557,6 +1555,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/12d34efbef62d08525e0b1a6521c7
1557
1555
  xinference/web/ui/node_modules/.cache/babel-loader/12d3d3e61079713c82322e436d0d188274ec2e160489007b04facedfb18ca8ea.json,sha256=F7cO372aa6UfXXBG6QuddrY6WUkFhhNoINh4BDjgyFc,1344
1558
1556
  xinference/web/ui/node_modules/.cache/babel-loader/12d9910498e04dc27f4dab7f101f23e9f78ab3ec0d52d9c9c5adbf0b0d56712b.json,sha256=CoiTG49zJlKULV2hoUgYoNDNx1GJn_EmKplC4fKsmHM,1696
1559
1557
  xinference/web/ui/node_modules/.cache/babel-loader/12da966f84472c881ea980bec44b2e1e7f8b3609a98dafe32e1155143e27389e.json,sha256=jE273ShkPRoV1X5DlreHnbXzHV78nbUwyYL_6RyqDD0,1140
1558
+ xinference/web/ui/node_modules/.cache/babel-loader/12e02ee790dbf57ead09a241a93bb5f893393aa36628ca741d44390e836a103f.json,sha256=4r0SOuZcNrN4YOatbgAKUKEsJQoXtvv25gNKU1S-Pvo,80373
1560
1559
  xinference/web/ui/node_modules/.cache/babel-loader/12e2171ec6f8c0ba2e6af95bf09fbdc6fb8d80bd4661ef95a555176c3bbb4c3a.json,sha256=wfkhMvhvaFkYfFDsimUk--86GdR2u_BbegRNcX4EzAo,1085
1561
1560
  xinference/web/ui/node_modules/.cache/babel-loader/12ecd49fd7bb3daf76f2827e7a5e83e95de15031a6b619b855d4955b7a8c59ad.json,sha256=cfHM4rcbpjtUUjoRaDJmajfYPvn0MskDxsE8t-1_PJA,1902
1562
1561
  xinference/web/ui/node_modules/.cache/babel-loader/12efca6ed9ec73bf07c46375e62cbc63c302cb4c4ff10a06b1d0f99314f7b3aa.json,sha256=DJDWAbnYdNF_eJ4CORn7K2UAtrpOzcdq_RxxxSIBZUo,1193
@@ -1852,6 +1851,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/18ee64a4e09cf8b49b4af9c3c2d45
1852
1851
  xinference/web/ui/node_modules/.cache/babel-loader/18f35c8bce52b4671064eddaf4e1fb3a594cbce483cad516aa7cb3290c97a4c5.json,sha256=G0Tn9hrbBCCWd1H6H3QoV2sx3PaHNSCSVk0B9KnHJT0,1195
1853
1852
  xinference/web/ui/node_modules/.cache/babel-loader/18f65640270951764aa240e86423b105acd193a051f995a636ca0e2a99f65f0b.json,sha256=C6RfhbLaVG2jQ50d6FtzxqjH7FRa3FGIVzbOTODShl4,1384
1854
1853
  xinference/web/ui/node_modules/.cache/babel-loader/18f81e756819d316bbd3cdf671e2245ceb156196f883807e069484c732e90128.json,sha256=EKgh5hKXKmFJho_j0BNQ6FgDU0oD52KZF3Nh0zUhN3M,2287
1854
+ xinference/web/ui/node_modules/.cache/babel-loader/18fa271456b31cded36c05c4c71c6b2b1cf4e4128c1e32f0e45d8b9f21764397.json,sha256=7Bvd-pnHQSTKg-ChbhI-_I3va-Etgm4fMbhxm0ELkFM,2777
1855
1855
  xinference/web/ui/node_modules/.cache/babel-loader/18fb940ad1c21b829c1834bb3881dcddbcb9ff594f09afebca2a6fbe5d3bc366.json,sha256=ZVEpXWzQ5yRvlzZ5grSCcY0LB7UbdmPf-P_qQk9g2HY,2262
1856
1856
  xinference/web/ui/node_modules/.cache/babel-loader/19011aa0d4e1a3cacdcc3488a6b3d688e255bebd1fda92191d7b9836b4114e53.json,sha256=GWeyQ8ujBwNJT3tPLHoVw_dv-Tqt9_Lrt-lZqJskczU,1640
1857
1857
  xinference/web/ui/node_modules/.cache/babel-loader/1906939d2d20cc3ce1741b5a47d2830c0dd0e58c74d6942b7cf2db3753c7c367.json,sha256=HAbbh3xoeprbPXRk-MO3ifl1MQe2DXHNkpJjmqjQk5c,1537
@@ -2902,6 +2902,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/2fc189e202eae477881f2c10d59b1
2902
2902
  xinference/web/ui/node_modules/.cache/babel-loader/2fc8e4cdea909fdcb1ada0d21b488911edee695ed5ca0c18c876f0505451ee7a.json,sha256=VOdrB5mZjuySA7TEmXCoas-wUADB0B2EBPN6ZVIBwWo,1426
2903
2903
  xinference/web/ui/node_modules/.cache/babel-loader/2fd18d65da9fbb1a18fe819308c9daf1921acc644c53949c50770eb653a8c6fb.json,sha256=_bzUIw1Apuhz8Ylbh8c3mjMSMk8nQFuoU_3_S59sIpw,1598
2904
2904
  xinference/web/ui/node_modules/.cache/babel-loader/2fd8d435d25c6018b095eea3d6d4ad5e85f4b7b9f3b017d6b08b60e8bcc9cf8d.json,sha256=BIvru61ynUq4vbgtEnZynljG0kv0jmkL3Zqk6ulgztY,2618
2905
+ xinference/web/ui/node_modules/.cache/babel-loader/2fdc61dcb6a9d1fbcb44be592d0e87d8c3f21297a7327559ef5345665f8343f7.json,sha256=lp668J986pSxK6fvKgBkALkdQ5ZUuYkLiO8ynmOH-Mo,6749
2905
2906
  xinference/web/ui/node_modules/.cache/babel-loader/2ff4f5a23fead4fb48c3bbf26d5369ae79e6de56e6251f3d9046d61fbcde02b7.json,sha256=0GqyXVYfvI8zFXnonK_4zIR7rowzRogdaGiykU7DkdM,1329
2906
2907
  xinference/web/ui/node_modules/.cache/babel-loader/2ff76ec00267b5b389d0908cfa950a64796d19bedccf6395601f3217e169b3b5.json,sha256=INkaAHK1A9DqQHC0_fIH5CL659opNm9Jega0u3dc3nU,2082
2907
2908
  xinference/web/ui/node_modules/.cache/babel-loader/2ffade481b2ea5baa4a13772d89d66ddb07b833293d2fa58a316a37ee1445437.json,sha256=RxTIGzl3HY3HsmlTiPPvixutt04_vcZEEf4XvRunqoQ,1049
@@ -3561,6 +3562,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/3d46cda78855b594d94dbe5af0d98
3561
3562
  xinference/web/ui/node_modules/.cache/babel-loader/3d4892f4c02bac7d3c66b3d3ea58b3692f4b7a93adacb692f29ffbcefaa8ba6b.json,sha256=EVA86-fTVjJ3gqmjAbGS-w33HBs96nKZUnTrji5WgIk,1788
3562
3563
  xinference/web/ui/node_modules/.cache/babel-loader/3d4c55fb485a06c859383e364c9caf093a827a8dea74c9c6edf0160a1847eb7c.json,sha256=NuGr3nRXp2kE-bOUuR6_3fgeMtH81J1ZENCkUG9bhqU,1258
3563
3564
  xinference/web/ui/node_modules/.cache/babel-loader/3d5044cf335b17b846e340f72f4f8f088c54a891b56ef999f33a36a7249a2cc9.json,sha256=Pt0SV2qFtrlzxwzKlmXPcxC1ttlxY3zFVlY-QcHt-L0,1307
3565
+ xinference/web/ui/node_modules/.cache/babel-loader/3d596a3e8dd6430d7ce81d164e32c31f8d47cfa5f725c328a298754d78563e14.json,sha256=zryG1uM9xUx1Bj-2dMW4AwkbVpD8J_j-ZKuXnQkJA7A,238499
3564
3566
  xinference/web/ui/node_modules/.cache/babel-loader/3d59eeb9e8f1da165bb38cc6eb60c9050c7b9d729e21d3f1f9e214dc44099af2.json,sha256=IGLSliUPB_qzqHlz7tRclhQCM8_U8SkwEzBrasv7dsE,1252
3565
3567
  xinference/web/ui/node_modules/.cache/babel-loader/3d627879fcf67b5e23905e9795d157dac39ba8cc02977e1e29c317dd54ffb803.json,sha256=8DqHl5-th3qDpAvAvxXw7UA7IbK5xi1BvGM5ZmXm9qY,1943
3566
3568
  xinference/web/ui/node_modules/.cache/babel-loader/3d645dabc20e9ed970ded1a707fb81dcac29f998ba708da9325b6d321a87a331.json,sha256=LRO7ONCteecctdWw83bAPg67oRzPqMWrKb-q2SK2JOM,2367
@@ -4496,7 +4498,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/51548cdcd9dc83266096e58c17eaa
4496
4498
  xinference/web/ui/node_modules/.cache/babel-loader/5164d5a1d6d84d1a2a85ce7ee6fa37412ab29ebd7a082e99c3fae1ff08a6361b.json,sha256=eGYgrVI9UGPObQe1llxLC4VFumD9Yis_ZsbC901r71I,7775
4497
4499
  xinference/web/ui/node_modules/.cache/babel-loader/5168c8f4e90b1a3b4eaf8aa78f1f40a4cdc07a6e586eb74d2cec8ca3524565e4.json,sha256=1RV7ErzSwTMQNnOWN7jnLWe5UUHZTXRDcLjAMT-a32A,1049
4498
4500
  xinference/web/ui/node_modules/.cache/babel-loader/516f82615733837f2f595a67a462f702d003ad1485d2cc382c3a240f97436210.json,sha256=6ZrQa7wWoO90QjahGTj6OC2KqnN1sIC-IZ_yY9qw5uU,3019
4499
- xinference/web/ui/node_modules/.cache/babel-loader/51709f5d3e53bcf19e613662ef9b91fb9174942c5518987a248348dd4e1e0e02.json,sha256=h0jp0n9YJ8c9v1019ldHZiZPlHq9RuH8oRwK3u4SRoE,5888
4500
4501
  xinference/web/ui/node_modules/.cache/babel-loader/51730f62e3d10c5c48addb53713c2a6feffb47287ab47323faf98c5c0b2a26a9.json,sha256=1KsuqowIOEv4_M81j310dO9OmTpjzJ_MZu70ROwddHE,1169
4501
4502
  xinference/web/ui/node_modules/.cache/babel-loader/5176b521b7eeed18755621b7f8938d5e87f8c29819906d55ccea85a0e496e078.json,sha256=CpwN9HnN9DGwG94Eh-0D20BupBtGI2-vxn-yfc-8oB0,1024
4502
4503
  xinference/web/ui/node_modules/.cache/babel-loader/51791bea0919b1d5e43cad813dffb96ea165888a89806e748504f2112cf1c393.json,sha256=qkKnZHhjpfq4SCluwWiuvq9dJWCFBLhyZf9E0N9TuuI,1344
@@ -5010,6 +5011,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/5bfb820f69dfc04a4993b7090bf47
5010
5011
  xinference/web/ui/node_modules/.cache/babel-loader/5c00283a6fbb0e6ae22b666ccb37c986a6b269bbc1cbe962d6f40a5df75b11af.json,sha256=etGzllHfNXIWGoIlAtS53yvp0PCiTnKR1TOKv3iSN-o,1556
5011
5012
  xinference/web/ui/node_modules/.cache/babel-loader/5c05e11fc5a7475ebd3427f20a7a2feb7f42ddbb1f48a13f3a236a1dcaf00831.json,sha256=aahh_1EGeWSqVOLU2iwybu72Id8SpozpkG6n0VvAzu8,1603
5012
5013
  xinference/web/ui/node_modules/.cache/babel-loader/5c07a46affaa31bbea5d19eecfcbd656af5ce9dd7c7a3a9a8384d7210d21c180.json,sha256=OSRP5iAGwyuzJTk4PiCSAOjprgXzvxFOJwRRsAVDeD4,1364
5014
+ xinference/web/ui/node_modules/.cache/babel-loader/5c08e2cd07809ed3e41486b16652253404cbb63a3ff8d0366ee50f57e2413cea.json,sha256=soGI3_kUtbGbV6t8TG3Nug3wTll-Xahi9ZdzISsLHgM,17191
5013
5015
  xinference/web/ui/node_modules/.cache/babel-loader/5c0c94a8c5ea216f513701ff66bb717096e4f08c9d1133dc8c04f6fe0a86027e.json,sha256=BNXhy34ndO0Q6RhD42JWc3D6T6nOwCB225uoYQI4o0I,1383
5014
5016
  xinference/web/ui/node_modules/.cache/babel-loader/5c0fb1d13fcafcaec0933fd52e295a6ee59c67a5f5b5bfce9276693b16613c1e.json,sha256=KP_hG3aOfeEMKc13RwvxFedXKcwhrqy_neaa359gH6g,1074
5015
5017
  xinference/web/ui/node_modules/.cache/babel-loader/5c2307007caf7113727f4d99aed80bfd4c88a7398598b3acc25753471cf03046.json,sha256=iAo5B4KaBge4vDxXgvw2ge5aiRsVJXut41j9rDjCvrk,1161
@@ -5565,6 +5567,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/6787f58bf89cc8ee822b4e38ae8e2
5565
5567
  xinference/web/ui/node_modules/.cache/babel-loader/67904e597b0e59e63d781539384eafc75fd7fde386c3be9c7287c0c89ff8740b.json,sha256=XbxLVCDqUcW3yHPl_hp8AWmF9NuJCC01ZRIJgzDVVLY,1458
5566
5568
  xinference/web/ui/node_modules/.cache/babel-loader/67921acc335e590fdec5f7ed60ade97ac903fc9a776b016f0b6465dc903edd20.json,sha256=hbq5Ad9X3HB3SxFi14xaRyt_5kX7e7gbuMWHhdL3lts,669
5567
5569
  xinference/web/ui/node_modules/.cache/babel-loader/679580048cda0f4f3e8efdeabe9845d948921cd3e12ac2a8cbc48a9fce7a2777.json,sha256=TXZbb5TWDowgYrnYOyoEYaNwslCbL_06pfb-Hb706U8,1212
5570
+ xinference/web/ui/node_modules/.cache/babel-loader/6798e126f3bc5f95a4c16a9c2ad52ffe77970c62406d83e20604dfda7ffd2247.json,sha256=uSOGHG22MvzpU1RljzCBhnTXgzDTA6h0ZgQO2Idn76E,13824
5568
5571
  xinference/web/ui/node_modules/.cache/babel-loader/67a2b78605ab98beae7c8e767a124ba95928dfa5a825c45a483ac5c18eff5d67.json,sha256=JrY6R1DrO3jJQYuMSK211NLT9QDJH2Vtm0jC9VQeZ5o,1074
5569
5572
  xinference/web/ui/node_modules/.cache/babel-loader/67a615733b8c3767eaee7ecb1073669c76e0a3baf2b144034ff95f4e8764be2c.json,sha256=I6c4ZBMnjHUsu0O-m-lW3UURB7w0Wz7slD0ZnYBhMtc,417
5570
5573
  xinference/web/ui/node_modules/.cache/babel-loader/67aa5fd2bf85c5c9b45c76cf6e11f91df772ba27b63d626a72b35ddfba386c2d.json,sha256=fmYaGiqnEP5SwHnz-I0r4CSco2vxFZ1VbRWblCl2AqU,2081
@@ -6800,7 +6803,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/81496b7ff01d97dd5510b9a10401f
6800
6803
  xinference/web/ui/node_modules/.cache/babel-loader/814e9d2caac0a6776bae84db2b0cd47b1825b5927834ba3f03efe61c49925a52.json,sha256=D10zd34zys5Xp9vunlYZ5LyIjVUNA-zI3hCBK5IHzhM,1897
6801
6804
  xinference/web/ui/node_modules/.cache/babel-loader/81513ae04f6eb443d160fc7c12680156271de28408701c8653d6888aedf1198e.json,sha256=ac6Rp6Rjr8KY_Jxrfm9MtTzktwa4ovWCFNBxEMHaELg,314
6802
6805
  xinference/web/ui/node_modules/.cache/babel-loader/8155a35306c438d7eb9ae5fd0f79650f92f62224a3d026a1e86774eb1669379b.json,sha256=3mM-8123G4DYT58PVWz_CZLl6TfV2QrwH0jTKySIAmI,30352
6803
- xinference/web/ui/node_modules/.cache/babel-loader/8157db83995c671eb57abc316c337f867d1dc63fb83520bb4ff351fee57dcce2.json,sha256=oSCUrqxskpnfnbGMXK4XlUA6QEMeyZ8kUUeHH4m9Bpo,39793
6804
6806
  xinference/web/ui/node_modules/.cache/babel-loader/8158b370d00b61bb082011830a433e6a7ef64afa7f27a3c052ddf8f71b745269.json,sha256=OF09Axl_BlYK9FXKiIeYxWYtmBbcH8-ljzNYO2GHGeM,12759
6805
6807
  xinference/web/ui/node_modules/.cache/babel-loader/815a3eb0ea876c42a2ba8353b7f915de01958be32f5efdaf974841f9a2d08952.json,sha256=9VCaonvW5zDhbd3r5crz9Hosj5HyCdt7rUZ5TwAsYvg,1763
6806
6808
  xinference/web/ui/node_modules/.cache/babel-loader/815c5d8a13acba36c8c62c5894ee1df7b38f576fd1622a83ebed44bb74e4e6f0.json,sha256=-pCx4NVz7k2celhd6sZPKScixuTTd7UT6ozZwpnOd-A,1627
@@ -6948,6 +6950,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/84620c70172ef6d9dda1ff8c37859
6948
6950
  xinference/web/ui/node_modules/.cache/babel-loader/846828992047b539dc44d65dc88d06d45f4f25e60fa65c5815b840e1f95a5610.json,sha256=NytuV8Al9lZSLUVWYbzR3e90MJ15MHosrK82PIx_dfg,1073
6949
6951
  xinference/web/ui/node_modules/.cache/babel-loader/8469e42a6f8d93fcf2176af8b5145b1cfdd6a0b8b96d301c27fd9a7e56aec812.json,sha256=4k24EcgXcOjP0HrjGm_TDowDs3RzAqwprqhv0n4EDH0,1413
6950
6952
  xinference/web/ui/node_modules/.cache/babel-loader/846cfc4c2c91a5d98523b5dcae87829da0c9b20c304aa29ec0ab41a798419509.json,sha256=xTDeuiNbi97a6I9utMEgJQbHcC_QfYSl-Gu9OysYpzA,1305
6953
+ xinference/web/ui/node_modules/.cache/babel-loader/8472e58a31720892d534f3febda31f746b25ec4aa60787eef34217b074e67965.json,sha256=wa6BrowvTHPAjRGRUqBQy07I4Prt-KgjkJYMOs6qcCI,39773
6951
6954
  xinference/web/ui/node_modules/.cache/babel-loader/8477a9a6b340f5b3b8388b526f57ff0fbfdbfbce7c14a0f88ec03b014bbf535e.json,sha256=HMC3fe4KzXkLRWI8CiszigsRZjAxGJ32loxo7MMnNUs,1465
6952
6955
  xinference/web/ui/node_modules/.cache/babel-loader/847c21791b961b79acbd5221ad11c3044b6b82dd6d0577e30b67586e312f0c04.json,sha256=y8o3k1j7Rnli_oHmuG3WD256tVe4bWNNwHFpDNh9FcM,1500
6953
6956
  xinference/web/ui/node_modules/.cache/babel-loader/848420a85c5edebcbc50a27d6e8ebf83410ef6a64d35a82e89c34397a036d694.json,sha256=N-n6thqWZqy0g8Fi3jNdXU4tY1waHlRZPaPGlOgg4Ko,3702
@@ -7512,7 +7515,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/8f80825f6d64872d4a6b4320382b2
7512
7515
  xinference/web/ui/node_modules/.cache/babel-loader/8f817b65d67e4f8d4cf30d844b3147404d4780db7371bb1e89dfc7024873f0ed.json,sha256=ogNW2JiKejpBA4BZU02aHnM9YA9zk1Ujd65yDX_EXRU,1346
7513
7516
  xinference/web/ui/node_modules/.cache/babel-loader/8f879bccfa2c4d94fe80a2288e5f7823acb528219b894b44bb7f1790a985c163.json,sha256=atljFEbGzWsVWmqAfa_uSbkJYu9Y2BEN_mpUeIBayeM,1579
7514
7517
  xinference/web/ui/node_modules/.cache/babel-loader/8f8ff3e98dadc8dc532c189d0cae42422a459a4ad8e972de4abd619245a935ac.json,sha256=e0eSlO910iCv67ceA5XP8w8eccMP6WXoCBzGMJA4DOQ,2892
7515
- xinference/web/ui/node_modules/.cache/babel-loader/8f9af2979e45d4648f0cfae108363e58ee421c29a9d4e7329b6f06d9adfd4133.json,sha256=sBL0OIXnlU6Bzouz5VwIXfH0mg4pGGY8AnMG6nDNY1k,16796
7516
7518
  xinference/web/ui/node_modules/.cache/babel-loader/8fac6f9bd697c0b9c51da075c398deb20d5ba4060b1c9b4736696d954cf6e45f.json,sha256=ZVuAck-As0dWy9M78N_Rk3RtlgUZ8qC3PmC9YrPcYfw,1053
7517
7519
  xinference/web/ui/node_modules/.cache/babel-loader/8fad51f2c920895c5dc8b0203ba3dde9450b1faa042f07031fa7cccdc93cbd93.json,sha256=W6xQUO_mswqeTdl9T67tMBVOP4dpG94I7RGJvvic3DA,1755
7518
7520
  xinference/web/ui/node_modules/.cache/babel-loader/8fb87438d22de01015a58bad547a760319d06002faaf2295a412f888cf59fb72.json,sha256=hVoJ4oajxHwEAWw0Fn9Og5CPGuIOCqe9Jtr22F--qOg,9169
@@ -8139,7 +8141,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/9c66b74bcfcaca60e466026eceb80
8139
8141
  xinference/web/ui/node_modules/.cache/babel-loader/9c68165e2826626b57788d35ff06107d190740e8f0ebb27cf6e57742d59b5f46.json,sha256=hcwDwARoPxenfxs2M5vrLAiyXiLz-Lsq4YzXj6WoHyU,5768
8140
8142
  xinference/web/ui/node_modules/.cache/babel-loader/9c69a44e61ed7ea858874f26fbb64d780717a2633c79346fd13bda07cb712ddd.json,sha256=iaB9NmmLtX4N2VcJaA957YpDYumODD2Las4fpB91NpE,1890
8141
8143
  xinference/web/ui/node_modules/.cache/babel-loader/9c73a86f025daf9473460d4416c486c39e0c3a47cf9fb055d67e0f1951d89927.json,sha256=W6Tz1V3I5Ji6sArulO5vi423xyvFqTWb6P0zBxxvOio,1502
8142
- xinference/web/ui/node_modules/.cache/babel-loader/9c8b1a86e7c65b2b2599a205e30920652d6c2105f926508ef5bcf29a3ef4ce76.json,sha256=fFDj0kPoxIYoBBkdtioGNfvnuXYx3LI3xxXULEGQ9SM,12641
8143
8144
  xinference/web/ui/node_modules/.cache/babel-loader/9c8b3603004b778bdfc748ac451bd8177638aee95c314cbc2b1e7b10b1840a43.json,sha256=CchK7zHKncxgoeEgQZ4GgAi1EEDhenZ7JCn31FAK9Kk,1789
8144
8145
  xinference/web/ui/node_modules/.cache/babel-loader/9c8d93447911be11b24f7d14b2aff6c636a75ac4eb5e5c777a95626b4b649b00.json,sha256=cuvdh-fbUz6SUWzc05IJML3Dx18KtRrvNHWW7NUZTz0,3586
8145
8146
  xinference/web/ui/node_modules/.cache/babel-loader/9c8e5139b576cb0ed721c8e58f99e612d8312ce2d66fde7b82dd3ea0b08ae02a.json,sha256=PEEXkDgIN4bMF7_dVzX1XIO17ihaefl74Ak2TnFZAwI,1546
@@ -9330,6 +9331,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/b5fe93ed1dbccea08a4e179a8ba7e
9330
9331
  xinference/web/ui/node_modules/.cache/babel-loader/b6073c036323f672b0bf138aec9258de0064a67f040e2af3e68fc3fc2285c431.json,sha256=KgZuFOLzSy7bkkhxDHMVhd07JxkuU0a3ec2XVgjNmYc,1364
9331
9332
  xinference/web/ui/node_modules/.cache/babel-loader/b61054d920f25ff3a9245b8ad7e02ec9dbdf7513ad07d3c574384652243661f2.json,sha256=De5pMGA_Mfxa2NexLkccwaHDzkmqWdGEMLgEt1JA3-0,1843
9332
9333
  xinference/web/ui/node_modules/.cache/babel-loader/b612fc17f01872f9b7f91a5ebe49098f1ecb43f5c6cb301d964e99f56dfcfa18.json,sha256=YUk-h1VxbP_Of8HnAHiQ7kb91Wd2DHZU5mKjx84qwI4,1159
9334
+ xinference/web/ui/node_modules/.cache/babel-loader/b617f7d21a95045fc57b26a9373551740f1978a826134cbf705c3a1bf8714a93.json,sha256=pmKFRR08FCRz4LJzVSNlsu0DVuS5hSPQLkFK1bOofRk,3078
9333
9335
  xinference/web/ui/node_modules/.cache/babel-loader/b618069a3dcff5fe68d12bcc2e3c56cd0fc98944582474b329dfa031902744ff.json,sha256=6afToXHSdPI7pCRx7dJ7ljtSRHXYtzuHXBHG7A7ACJw,2432
9334
9336
  xinference/web/ui/node_modules/.cache/babel-loader/b61e2ade4c5658dae5a128b8273fa24d7c0916fe9bf4739533ebae873e3e8e5e.json,sha256=qBMPeaGWD3360vJRpRD30ghf3FUq9IZZSrAGxTRJEu0,558
9335
9337
  xinference/web/ui/node_modules/.cache/babel-loader/b6221b0a2614a383a507bbaaf93322b3cf86ca834f0287a0077b7a1904a3fb2b.json,sha256=46asD1KrHf0CWA0UGbPfIXvkR9Y2lesmkO6zO-dg20s,1255
@@ -9433,7 +9435,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/b84024367e25497f2c8138ddf6d64
9433
9435
  xinference/web/ui/node_modules/.cache/babel-loader/b841ca803b4502a792489ad73297aa9dfdba66f298cef7bfd9e6a79d038305f1.json,sha256=pEh1_6vqs2LCJabWPh9sMZcMLU0ixG0M-ZR9bLGKxbo,1254
9434
9436
  xinference/web/ui/node_modules/.cache/babel-loader/b84428be4437d7b6f23e1091070b17beb2ed0a0de3857a51c60cc0db0d6dfa91.json,sha256=16xAjwm4Kwdu_FqprZJ4geHT_0ajmYo9CADaE_Cw2cs,1220
9435
9437
  xinference/web/ui/node_modules/.cache/babel-loader/b847399de707e46b815e7e722a25eb18952fd32f313af7647538ed7f6dc7c478.json,sha256=6ydN_kCgCSVN0xI9dfPn2zmMDJDrUxLrC9_NNTQ0ZE0,1267
9436
- xinference/web/ui/node_modules/.cache/babel-loader/b8551e9775a01b28ae674125c688febe763732ea969ae344512e64ea01bf632e.json,sha256=4bAslDBWxSafPjwysSC9LBxwhJZykmPNJgLRRP3AxQ4,1635
9437
9438
  xinference/web/ui/node_modules/.cache/babel-loader/b859cbd02593af8ff23305b1138748f928d7980c62691e532ba3f91fe456fdbc.json,sha256=eG_US8_i_Ublpge9XAatIE9Uz0owaVHfR7lKJOnuUt0,1305
9438
9439
  xinference/web/ui/node_modules/.cache/babel-loader/b85e80c2a2b0b0624751e55c27b6610db1af59806d1343808910ffe53062f326.json,sha256=JrwNv_5UtQqkqzVDxJktnh3xyP2dbOq9f4g8eCeJBmc,1940
9439
9440
  xinference/web/ui/node_modules/.cache/babel-loader/b86ba0ee2ab72f064c2db342ac077166919452235b2a5a97d39ef34f9baacbb4.json,sha256=iWl6OmYs6jKbe9mZ4hZ-PVAsNcRxej3suKLMx0EzEgo,2042
@@ -9846,6 +9847,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/c140b55a7766a12a23707cb0ebdbf
9846
9847
  xinference/web/ui/node_modules/.cache/babel-loader/c14314c1c97f643544dd0029c7f8caa28fe25674478f9cce855d91500022b101.json,sha256=wPN2hR6dSP9vQmfxhI6WaNJYlvSXvk0AfYaK1-Ljn-I,1751
9847
9848
  xinference/web/ui/node_modules/.cache/babel-loader/c14e13813229d3aa0145e57b38b5a1a15058ce36f0beb60954dd51fe3d3edcbc.json,sha256=7acWpRK232dyqk9SkM-gYgE--alqnR1aHwp4bm2WNUg,1854
9848
9849
  xinference/web/ui/node_modules/.cache/babel-loader/c14fcd013599df564b66c521ce32f65db25577a7f233b267e1cd7ab9a488e94f.json,sha256=8ER62vYXJ_sG-wll2pkHA6Fj-4Y_-rnyf3AVskyv5Ng,1815
9850
+ xinference/web/ui/node_modules/.cache/babel-loader/c1506cb142151366074975f30fa1ff9cd6e5e978b62a4b074dfc16fe08d70d75.json,sha256=5KFcnTWFDHyK5o6Fu7T0jQJZCQDu3Y1urdOB2Przv_E,1449
9849
9851
  xinference/web/ui/node_modules/.cache/babel-loader/c152f4d1ccb679f1fca29f798a82dfbfce7413f0733e5224cd561de0c0ce7770.json,sha256=Pifqq0AaHlhCv_xSOYw2WTcg5iGxpD2BZDIx_6eDqfg,1070
9850
9852
  xinference/web/ui/node_modules/.cache/babel-loader/c1544f05f5518327276099e63727b834e44175b2b71abd14169a1778a25e013d.json,sha256=t05iHWzA41tFj3161pOh5-DSIl-BVAdoARzGqBHep8s,1326
9851
9853
  xinference/web/ui/node_modules/.cache/babel-loader/c15608a3fce9f156ac9e55d46e9981c0c712c717e69de231256a2e790ecb0c03.json,sha256=QaNkVZUgdJhbBeYGDVFgGr5P5lJtuPB4XPpLd9jkbjA,1032
@@ -10044,6 +10046,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/c5bc5a91d9fa32a1b18527549791d
10044
10046
  xinference/web/ui/node_modules/.cache/babel-loader/c5c2790c776a41100739fef93e3deec3309e83a39d427276016bcf0ed950ed50.json,sha256=IhGkvYOwlFsG0kmtgiYT6rE4KZuO47DKZxvo8OeZaTs,1159
10045
10047
  xinference/web/ui/node_modules/.cache/babel-loader/c5c4416f324a2d5366f3852367f303946eed7deeb93d67cdff5c97b2533a5fbd.json,sha256=pAOJtRvUse8_U4LdBlv6zp_oFf62ELb6ePXkLrmNUqs,1241
10046
10048
  xinference/web/ui/node_modules/.cache/babel-loader/c5c4a89f089e811188d1c692760ac3ec46fd0c0a5974f1cd3a68baebc308926c.json,sha256=57HGpqlzTSSSoVOP5izSaMlZ9lKzRkWCAKjtpKoG0uU,1262
10049
+ xinference/web/ui/node_modules/.cache/babel-loader/c5c7c2cd1b863ce41adff2c4737bba06eef3a1acf28288cb83d992060f6b8923.json,sha256=vaC0tQPmh9a_pB-J60v5lw8BBUbB_0jF5o9ihgs3Mgc,14238
10047
10050
  xinference/web/ui/node_modules/.cache/babel-loader/c5c8653f5a1d257d01b65a1619d77886f2d1496f39cf4dbd28a3a0e81d0b3879.json,sha256=iV6nNvtSm4RMzdZyMElHuJQDuc5OyImVZocuHaQ-s7E,2107
10048
10051
  xinference/web/ui/node_modules/.cache/babel-loader/c5d0d618974d3d53ab912c106adcbc1612c1e960c6331ee302774741f9b8db09.json,sha256=_5bfCcOCu-PjsOLRx52P299ht-CwE-QWpPV2Hx8GQa8,1381
10049
10052
  xinference/web/ui/node_modules/.cache/babel-loader/c5d5aafa0dc7f71216fa003bd047de830b5e033cea8e0613869c7fb670090762.json,sha256=50xB0CybhPWHnL02LkDuSwA26bZl7CZ5zxHXTMI0bEk,1186
@@ -11591,7 +11594,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/e4b1f2602036fff6720e5fb0fb7e2
11591
11594
  xinference/web/ui/node_modules/.cache/babel-loader/e4b6be327a9e24aa0f546d2e13c80fee68b0536d684c8959ba5e356c68b4f12f.json,sha256=9QGUQfDo08d-QwBv4ZnmwilZPHEzurCnmId1W_7Fn4I,1908
11592
11595
  xinference/web/ui/node_modules/.cache/babel-loader/e4b7d612e62cdf9d02d5c367a0d1d81122d1b496afe6ccbddc4025eccc6114ac.json,sha256=9OzrhFJbiVSPYf7vYquDA4mRizlhPBnUko6q4TOd_Lc,1267
11593
11596
  xinference/web/ui/node_modules/.cache/babel-loader/e4b83c01d96fd4db9bdab65ac50ac72dc5e25fed9806cc221e2e19d7afcb647f.json,sha256=8GY9qACau9lJhPMInbJsIbq9tFVGpt1FaXHGeO1suCQ,1661
11594
- xinference/web/ui/node_modules/.cache/babel-loader/e4ba658c6b3b0490910acdae0c535a892257efb61539a24adf8038fc653bd22f.json,sha256=H16g3J5hdwMMuvGFP5E-4QLzBy2oUVXCRBMjPWOl044,225983
11595
11597
  xinference/web/ui/node_modules/.cache/babel-loader/e4bcb23c8914f54fb19af468570dd01350d41526e8be73dc7e94ca5abc1b7007.json,sha256=S1bdG3vSzcr26X_u27qOA_MqqKzcLIU1EfJMXGHALT8,3068
11596
11598
  xinference/web/ui/node_modules/.cache/babel-loader/e4c15316fe578d7f2c6a790ffb0c7de090e8e8d6245db7cf3310b1ef0a64c8ca.json,sha256=rq_3ROMdR55WThJHeiL6mojge9FhMUwcdvShBEg9RZk,2191
11597
11599
  xinference/web/ui/node_modules/.cache/babel-loader/e4c1712fa88f4e541850fb9b4d183015f8ff23337ae86978eceeb5954e901ca7.json,sha256=g3vQH7yxBITM-FgWhc4DurA6ijtRTkvkv8flWhIYB3w,2426
@@ -12132,7 +12134,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/efd06c9b72302b6b58b3563d82d45
12132
12134
  xinference/web/ui/node_modules/.cache/babel-loader/efd90630b30899f1f75400c2fae3b571c18ed6294840859b8a39595df6e6978f.json,sha256=uZgR_vvec1oaq8GfnvZzJKJIQ9vAm6MANBq-7I34ZXo,737
12133
12135
  xinference/web/ui/node_modules/.cache/babel-loader/efda6a63c1848c0ce167e1b973dc4f7f9592eca1162c90645b03bd98d321ba70.json,sha256=KMi7VGHfajydwYL8yBUhnOaXdP30Jbk1Pcx6z93PY5A,1762
12134
12136
  xinference/web/ui/node_modules/.cache/babel-loader/efe4b1c80ad6358eb47fa8b6d2caf49f9b2296348bc4cdd712ca1758f8f55b0d.json,sha256=fSBSIWmn-d3WczyNVUnrgkKyUzrdTONmyTbGpZha314,1324
12135
- xinference/web/ui/node_modules/.cache/babel-loader/efe7cd132c27a8f9fd5352a394c491fd5fb0da0348cf9fcbd923164a32365eab.json,sha256=Myq5ZxeTVXrcDy1WBR4HMcUy35mzzYaqFyqh-t6lC2A,2302
12136
12137
  xinference/web/ui/node_modules/.cache/babel-loader/efea6594182cee0d93c801f2910632919e3552042fef51d3ebea79aa51b76e25.json,sha256=gQosRxYmYBCwuCrRIF1SBgPezsHeroXmcPMA4sLzCoM,2086
12137
12138
  xinference/web/ui/node_modules/.cache/babel-loader/efeaaadb07d6dcf8a039b42072d72840a568c63cfad8953b191af9b20701dc6b.json,sha256=BJAxjH9znwnXoJCf70zdZNKtKVNvNuqYmYUqtYb3DeU,1987
12138
12139
  xinference/web/ui/node_modules/.cache/babel-loader/eff683273a9fddddb4d220a0ee3ddd832687dadef5cdd63a2a5d5a0d80d55ce3.json,sha256=7_r-lLmKca1p7WkubkeBLI01cBJpTonI0WK_7yb1ckQ,1775
@@ -12151,7 +12152,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/f04b85fd2567c088561ff54219724
12151
12152
  xinference/web/ui/node_modules/.cache/babel-loader/f04b8659a5d4c759ae1dc03c99d3aa47069d926cf6c69ed1079e8cfae675150d.json,sha256=6EeLM-IONJG6WeOoO0_4eohmamysvPTlfE7R_IBE2Pw,1387
12152
12153
  xinference/web/ui/node_modules/.cache/babel-loader/f04cc8160028d390f6226ea385e51117728b6ff5af12bb6045b49f7f24a1c441.json,sha256=cyXug2k7F10Dtfn_nOfPW2QyqwvfIDna6g1VcCq6M_w,1297
12153
12154
  xinference/web/ui/node_modules/.cache/babel-loader/f04da9ca845f9ae70b9502dc59ed3aa4f1f84b9658ff04f18ff001e8564bfe77.json,sha256=oD3gRBgnnvv7rTEr_EkK72aQl8_5LkiWOkInifnI66c,1165
12154
- xinference/web/ui/node_modules/.cache/babel-loader/f04f666b77b44d7be3e16034d6b0074de2ba9c254f1fae15222b3148608fa8b3.json,sha256=tNVK4_jku_R-DX7M76M-6bhS8P2ZEIQFzZ4Jdwp60os,19199
12155
12155
  xinference/web/ui/node_modules/.cache/babel-loader/f05218f3e78ea53f8e484c7ea465dd1a6a59bce502a134a7e454d68030b112ea.json,sha256=pr708OjlFqQzlV4xbJp8bDY1Q9BvcoVPefXp8tLdt00,2205
12156
12156
  xinference/web/ui/node_modules/.cache/babel-loader/f05db010582e06034fa213ddc74b25a00e6c33b14cfc02fbe9d024148644558b.json,sha256=1DjTYgaFYfSpExHYu9M4SB9SCaQima386qVichzRu6M,1232
12157
12157
  xinference/web/ui/node_modules/.cache/babel-loader/f05ff460602f9056c79216d1e567478c5de3604822e0fe2f0093004cc1e00dea.json,sha256=IAEZ900XB4aOvSzHyvzTeWibNgRQhHDPCS1boS0YMds,53011
@@ -12217,7 +12217,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/f187d297f29bc381bc5efecb585b1
12217
12217
  xinference/web/ui/node_modules/.cache/babel-loader/f18b3ea9c0f7d13b80c5c1297279436e82915572aca6be88bbc3b95fed22274d.json,sha256=hNS1b2pXKoYtv9PXAdnH_h0Ly2Tc2M6R-6ijR9ULmcw,1214
12218
12218
  xinference/web/ui/node_modules/.cache/babel-loader/f18f328401042cf85d296c5cae3094ec5842107e41e8ef94c67c0e5cf2c4e4c4.json,sha256=s1DxjaAQ5l6ggFtMv_pJAypmCWSKCFe4UAMhLmfpVIo,1424
12219
12219
  xinference/web/ui/node_modules/.cache/babel-loader/f1984065fd21377830668930bec02aa5dcefebaffba4c3e41ecd0fcc45a101eb.json,sha256=LNhOUlbV6hb18ZYSEuGORuu10DnNVTsk5R60BoO_d2E,2096
12220
- xinference/web/ui/node_modules/.cache/babel-loader/f199e8173f6409a5802ed44acb95f218388131136504b2e9132129e150c92f9a.json,sha256=wAQTqHDnF0pFv87urp7bg6fvvWr5n-LecjPdDXdAVLM,12573
12221
12220
  xinference/web/ui/node_modules/.cache/babel-loader/f1a47a618b4a3acf242f8c8e7d781468d2e09033d8487cf6e7fca222117bf810.json,sha256=0qVUc2X2Jv4CVDC9JlvNv9iYjpIVvThs8mycAie-qhM,907
12222
12221
  xinference/web/ui/node_modules/.cache/babel-loader/f1a8ac4d6fbf7c5d6366b8238061d664907cb4078a1166315ab9e441a1f469b2.json,sha256=Q0ZIp2YNp5FGxNGaLkbdZ9WHQjzmKL27JV-J4B35iIk,1382
12223
12222
  xinference/web/ui/node_modules/.cache/babel-loader/f1a9946d0952779f611ebf19eabcf728b34de2d81373a49f24207f0e5d2b00ee.json,sha256=EDE_rzWaDd41rc6UJfgw28-HQ3077zq6QX023KdhXhk,1099
@@ -15784,11 +15783,11 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
15784
15783
  xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
15785
15784
  xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
15786
15785
  xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
15787
- xinference/web/ui/src/locales/en.json,sha256=yXLbaCDzurwn0YIYjGbThkG9n-G5BPDpf10hndO3gnc,8993
15788
- xinference/web/ui/src/locales/zh.json,sha256=smH85pmHLN7Vo3uunNRCo29mJaIkt-xlYYPbXZjlPWQ,8727
15789
- xinference-1.5.0.post2.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15790
- xinference-1.5.0.post2.dist-info/METADATA,sha256=c3V7qqG3G__mOOH8PoL_ljDVRjJlQ-gqh5jFNz61XUI,24840
15791
- xinference-1.5.0.post2.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
15792
- xinference-1.5.0.post2.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15793
- xinference-1.5.0.post2.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15794
- xinference-1.5.0.post2.dist-info/RECORD,,
15786
+ xinference/web/ui/src/locales/en.json,sha256=ue1A_MrBJs6kxQkCDajqQoiZAozS41zNq5Us-KhdI2A,9181
15787
+ xinference/web/ui/src/locales/zh.json,sha256=cz-vYznol3gMRIJxSMdFJQeqSiNMelBum5dn6f06ISA,8882
15788
+ xinference-1.6.0.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15789
+ xinference-1.6.0.dist-info/METADATA,sha256=NqLuH_OG3P9w9IohBI3-ouMnTcQOnG1g9YOwXLWORKw,25418
15790
+ xinference-1.6.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
15791
+ xinference-1.6.0.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15792
+ xinference-1.6.0.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15793
+ xinference-1.6.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (79.0.0)
2
+ Generator: setuptools (80.7.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5