xinference 0.14.4.post1__py3-none-any.whl → 0.15.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 (149) hide show
  1. xinference/_compat.py +51 -0
  2. xinference/_version.py +3 -3
  3. xinference/api/restful_api.py +5 -39
  4. xinference/client/restful/restful_client.py +3 -24
  5. xinference/conftest.py +1 -1
  6. xinference/constants.py +5 -0
  7. xinference/core/cache_tracker.py +1 -1
  8. xinference/core/chat_interface.py +8 -14
  9. xinference/core/event.py +1 -1
  10. xinference/core/model.py +82 -31
  11. xinference/core/scheduler.py +37 -37
  12. xinference/core/status_guard.py +1 -1
  13. xinference/core/supervisor.py +11 -10
  14. xinference/core/utils.py +80 -22
  15. xinference/core/worker.py +17 -16
  16. xinference/deploy/cmdline.py +8 -16
  17. xinference/deploy/local.py +1 -1
  18. xinference/deploy/supervisor.py +1 -1
  19. xinference/deploy/utils.py +1 -1
  20. xinference/deploy/worker.py +1 -1
  21. xinference/model/audio/cosyvoice.py +86 -41
  22. xinference/model/embedding/core.py +52 -31
  23. xinference/model/image/stable_diffusion/core.py +18 -1
  24. xinference/model/llm/__init__.py +21 -11
  25. xinference/model/llm/llama_cpp/core.py +16 -33
  26. xinference/model/llm/llm_family.json +619 -1297
  27. xinference/model/llm/llm_family.py +31 -52
  28. xinference/model/llm/llm_family_csghub.json +18 -35
  29. xinference/model/llm/llm_family_modelscope.json +573 -1119
  30. xinference/model/llm/lmdeploy/core.py +56 -88
  31. xinference/model/llm/mlx/core.py +46 -69
  32. xinference/model/llm/sglang/core.py +33 -18
  33. xinference/model/llm/transformers/chatglm.py +167 -305
  34. xinference/model/llm/transformers/cogvlm2.py +36 -63
  35. xinference/model/llm/transformers/cogvlm2_video.py +33 -223
  36. xinference/model/llm/transformers/core.py +49 -50
  37. xinference/model/llm/transformers/deepseek_vl.py +53 -96
  38. xinference/model/llm/transformers/glm4v.py +55 -111
  39. xinference/model/llm/transformers/intern_vl.py +39 -70
  40. xinference/model/llm/transformers/internlm2.py +32 -54
  41. xinference/model/llm/transformers/minicpmv25.py +22 -55
  42. xinference/model/llm/transformers/minicpmv26.py +158 -68
  43. xinference/model/llm/transformers/omnilmm.py +5 -28
  44. xinference/model/llm/transformers/qwen2_vl.py +208 -0
  45. xinference/model/llm/transformers/qwen_vl.py +34 -86
  46. xinference/model/llm/transformers/utils.py +32 -38
  47. xinference/model/llm/transformers/yi_vl.py +32 -72
  48. xinference/model/llm/utils.py +195 -489
  49. xinference/model/llm/vllm/core.py +153 -100
  50. xinference/model/rerank/core.py +41 -8
  51. xinference/model/rerank/model_spec.json +7 -0
  52. xinference/model/rerank/model_spec_modelscope.json +7 -1
  53. xinference/model/utils.py +1 -31
  54. xinference/thirdparty/cosyvoice/bin/export_jit.py +64 -0
  55. xinference/thirdparty/cosyvoice/bin/export_trt.py +8 -0
  56. xinference/thirdparty/cosyvoice/bin/inference.py +5 -2
  57. xinference/thirdparty/cosyvoice/cli/cosyvoice.py +38 -22
  58. xinference/thirdparty/cosyvoice/cli/model.py +139 -26
  59. xinference/thirdparty/cosyvoice/flow/flow.py +15 -9
  60. xinference/thirdparty/cosyvoice/flow/length_regulator.py +20 -1
  61. xinference/thirdparty/cosyvoice/hifigan/generator.py +8 -4
  62. xinference/thirdparty/cosyvoice/llm/llm.py +14 -13
  63. xinference/thirdparty/cosyvoice/transformer/attention.py +7 -3
  64. xinference/thirdparty/cosyvoice/transformer/decoder.py +1 -1
  65. xinference/thirdparty/cosyvoice/transformer/embedding.py +4 -3
  66. xinference/thirdparty/cosyvoice/transformer/encoder.py +4 -2
  67. xinference/thirdparty/cosyvoice/utils/common.py +36 -0
  68. xinference/thirdparty/cosyvoice/utils/file_utils.py +16 -0
  69. xinference/thirdparty/deepseek_vl/serve/assets/Kelpy-Codos.js +100 -0
  70. xinference/thirdparty/deepseek_vl/serve/assets/avatar.png +0 -0
  71. xinference/thirdparty/deepseek_vl/serve/assets/custom.css +355 -0
  72. xinference/thirdparty/deepseek_vl/serve/assets/custom.js +22 -0
  73. xinference/thirdparty/deepseek_vl/serve/assets/favicon.ico +0 -0
  74. xinference/thirdparty/deepseek_vl/serve/examples/app.png +0 -0
  75. xinference/thirdparty/deepseek_vl/serve/examples/chart.png +0 -0
  76. xinference/thirdparty/deepseek_vl/serve/examples/mirror.png +0 -0
  77. xinference/thirdparty/deepseek_vl/serve/examples/pipeline.png +0 -0
  78. xinference/thirdparty/deepseek_vl/serve/examples/puzzle.png +0 -0
  79. xinference/thirdparty/deepseek_vl/serve/examples/rap.jpeg +0 -0
  80. xinference/thirdparty/fish_speech/fish_speech/configs/base.yaml +87 -0
  81. xinference/thirdparty/fish_speech/fish_speech/configs/firefly_gan_vq.yaml +34 -0
  82. xinference/thirdparty/fish_speech/fish_speech/configs/lora/r_8_alpha_16.yaml +4 -0
  83. xinference/thirdparty/fish_speech/fish_speech/configs/text2semantic_finetune.yaml +83 -0
  84. xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text-data.proto +24 -0
  85. xinference/thirdparty/fish_speech/fish_speech/i18n/README.md +27 -0
  86. xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/.gitignore +114 -0
  87. xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/README.md +36 -0
  88. xinference/thirdparty/fish_speech/fish_speech/webui/css/style.css +161 -0
  89. xinference/thirdparty/fish_speech/fish_speech/webui/html/footer.html +11 -0
  90. xinference/thirdparty/fish_speech/fish_speech/webui/js/animate.js +69 -0
  91. xinference/thirdparty/fish_speech/tools/sensevoice/README.md +59 -0
  92. xinference/thirdparty/matcha/VERSION +1 -0
  93. xinference/thirdparty/matcha/hifigan/LICENSE +21 -0
  94. xinference/thirdparty/matcha/hifigan/README.md +101 -0
  95. xinference/thirdparty/omnilmm/LICENSE +201 -0
  96. xinference/thirdparty/whisper/__init__.py +156 -0
  97. xinference/thirdparty/whisper/__main__.py +3 -0
  98. xinference/thirdparty/whisper/assets/gpt2.tiktoken +50256 -0
  99. xinference/thirdparty/whisper/assets/mel_filters.npz +0 -0
  100. xinference/thirdparty/whisper/assets/multilingual.tiktoken +50257 -0
  101. xinference/thirdparty/whisper/audio.py +157 -0
  102. xinference/thirdparty/whisper/decoding.py +826 -0
  103. xinference/thirdparty/whisper/model.py +314 -0
  104. xinference/thirdparty/whisper/normalizers/__init__.py +2 -0
  105. xinference/thirdparty/whisper/normalizers/basic.py +76 -0
  106. xinference/thirdparty/whisper/normalizers/english.json +1741 -0
  107. xinference/thirdparty/whisper/normalizers/english.py +550 -0
  108. xinference/thirdparty/whisper/timing.py +386 -0
  109. xinference/thirdparty/whisper/tokenizer.py +395 -0
  110. xinference/thirdparty/whisper/transcribe.py +605 -0
  111. xinference/thirdparty/whisper/triton_ops.py +109 -0
  112. xinference/thirdparty/whisper/utils.py +316 -0
  113. xinference/thirdparty/whisper/version.py +1 -0
  114. xinference/types.py +7 -49
  115. xinference/web/ui/build/asset-manifest.json +6 -6
  116. xinference/web/ui/build/index.html +1 -1
  117. xinference/web/ui/build/static/css/{main.4bafd904.css → main.632e9148.css} +2 -2
  118. xinference/web/ui/build/static/css/main.632e9148.css.map +1 -0
  119. xinference/web/ui/build/static/js/main.9cfafbd6.js +3 -0
  120. xinference/web/ui/build/static/js/{main.eb13fe95.js.LICENSE.txt → main.9cfafbd6.js.LICENSE.txt} +2 -0
  121. xinference/web/ui/build/static/js/main.9cfafbd6.js.map +1 -0
  122. xinference/web/ui/node_modules/.cache/babel-loader/01d6d198156bacbd436c51435edbd4b2cacd47a79db929105eba30f74b67d48d.json +1 -0
  123. xinference/web/ui/node_modules/.cache/babel-loader/10c69dc7a296779fcffedeff9393d832dfcb0013c36824adf623d3c518b801ff.json +1 -0
  124. xinference/web/ui/node_modules/.cache/babel-loader/59eb25f514afcc4fefd1b309d192b2455f1e0aec68a9de598ca4b2333fe2c774.json +1 -0
  125. xinference/web/ui/node_modules/.cache/babel-loader/68bede6d95bb5ef0b35bbb3ec5b8c937eaf6862c6cdbddb5ef222a7776aaf336.json +1 -0
  126. xinference/web/ui/node_modules/.cache/babel-loader/77d50223f3e734d4485cca538cb098a8c3a7a0a1a9f01f58cdda3af42fe1adf5.json +1 -0
  127. xinference/web/ui/node_modules/.cache/babel-loader/a56d5a642409a84988891089c98ca28ad0546432dfbae8aaa51bc5a280e1cdd2.json +1 -0
  128. xinference/web/ui/node_modules/.cache/babel-loader/d9ff696a3e3471f01b46c63d18af32e491eb5dc0e43cb30202c96871466df57f.json +1 -0
  129. xinference/web/ui/node_modules/.cache/babel-loader/f5039ddbeb815c51491a1989532006b96fc3ae49c6c60e3c097f875b4ae915ae.json +1 -0
  130. xinference/web/ui/node_modules/.package-lock.json +37 -0
  131. xinference/web/ui/node_modules/a-sync-waterfall/package.json +21 -0
  132. xinference/web/ui/node_modules/nunjucks/node_modules/commander/package.json +48 -0
  133. xinference/web/ui/node_modules/nunjucks/package.json +112 -0
  134. xinference/web/ui/package-lock.json +38 -0
  135. xinference/web/ui/package.json +1 -0
  136. {xinference-0.14.4.post1.dist-info → xinference-0.15.0.dist-info}/METADATA +8 -8
  137. {xinference-0.14.4.post1.dist-info → xinference-0.15.0.dist-info}/RECORD +141 -87
  138. xinference/model/llm/transformers/llama_2.py +0 -108
  139. xinference/web/ui/build/static/css/main.4bafd904.css.map +0 -1
  140. xinference/web/ui/build/static/js/main.eb13fe95.js +0 -3
  141. xinference/web/ui/build/static/js/main.eb13fe95.js.map +0 -1
  142. xinference/web/ui/node_modules/.cache/babel-loader/0b11a5339468c13b2d31ac085e7effe4303259b2071abd46a0a8eb8529233a5e.json +0 -1
  143. xinference/web/ui/node_modules/.cache/babel-loader/213b5913e164773c2b0567455377765715f5f07225fbac77ad8e1e9dc9648a47.json +0 -1
  144. xinference/web/ui/node_modules/.cache/babel-loader/5c26a23b5eacf5b752a08531577ae3840bb247745ef9a39583dc2d05ba93a82a.json +0 -1
  145. xinference/web/ui/node_modules/.cache/babel-loader/978b57d1a04a701bc3fcfebc511f5f274eed6ed7eade67f6fb76c27d5fd9ecc8.json +0 -1
  146. {xinference-0.14.4.post1.dist-info → xinference-0.15.0.dist-info}/LICENSE +0 -0
  147. {xinference-0.14.4.post1.dist-info → xinference-0.15.0.dist-info}/WHEEL +0 -0
  148. {xinference-0.14.4.post1.dist-info → xinference-0.15.0.dist-info}/entry_points.txt +0 -0
  149. {xinference-0.14.4.post1.dist-info → xinference-0.15.0.dist-info}/top_level.txt +0 -0
@@ -1,15 +1,15 @@
1
1
  xinference/__init__.py,sha256=muQ9V9y11BcIqlZhhc06oDf193H7bwDIa8e_wSoDKI8,986
2
- xinference/_compat.py,sha256=SQAjZMGxtBIce45qtW7ob7RWzA0zhv2yB3AxT0rb0uU,1778
3
- xinference/_version.py,sha256=SWa_VIrv2KTuOeewT3nuOJ-Z2Kwggx2lYdj4Fh7s6UM,504
4
- xinference/conftest.py,sha256=FF-ZkqkfOxQw4hz_8G7p5aB7gFdsJlr6u2ZdFuuauAA,9744
5
- xinference/constants.py,sha256=FZwKBlSwUMb1_qKMZWfkz9z6nrgdgOhO-g7S_Qn3cis,3319
2
+ xinference/_compat.py,sha256=xFztCfyrq3O_4bssL_ygghYkfxicv_ZhiX2YDDWHf-k,3571
3
+ xinference/_version.py,sha256=TnCH-EyS6hlxuKdxS7pNdOIHsY4zNoewd7mLlJN8yfc,498
4
+ xinference/conftest.py,sha256=56HYQjsAJcQrpZSmskniPqH9dLoW-i3Oud6NVTtc4io,9752
5
+ xinference/constants.py,sha256=f8RxXrnnhoEYSwhiDSp8nKeUMF-KE4GyerMg-pa3Vv4,3582
6
6
  xinference/device_utils.py,sha256=zswJiws3VyTIaNO8z-MOcsJH_UiPoePPiKK5zoNrjTA,3285
7
7
  xinference/fields.py,sha256=0UtBFaDNzn1n9MRjyTkNrolsIML-TpZfudWOejqjni8,5245
8
8
  xinference/isolation.py,sha256=uhkzVyL3fSYZSuFexkG6Jm-tRTC5I607uNg000BXAnE,1949
9
- xinference/types.py,sha256=S6bp6XOhjNy4LlI6Hxp1uCkKX3dimiEjkzxNHfc6hcs,13932
9
+ xinference/types.py,sha256=xbqUw50FTBrYLnjps6bhGvr7NDGR5RyMpjuK0zef1dY,12435
10
10
  xinference/utils.py,sha256=VSOJMFd9H7kce98OtJZbcDjjpfzRpHAFs8WU0xXPBM8,717
11
11
  xinference/api/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
12
- xinference/api/restful_api.py,sha256=LBUumfTmPdBaTuW3XVA4P9h6FyndMvZYtQr-JSxC39Y,77101
12
+ xinference/api/restful_api.py,sha256=la8fzWiiGHRe8QHarZIsWDaTkaiAL3rUeWHi8JzYj_U,75741
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,35 +18,35 @@ xinference/client/__init__.py,sha256=Gc4HOzAy_1cic5kXlso7hahYgw89CKvZSJDicEU461k
18
18
  xinference/client/common.py,sha256=iciZRs5YjM2gYsXnwACPMaiBZp4_XpawWwfym0Iyu40,1617
19
19
  xinference/client/handlers.py,sha256=OKl_i5FA341wsQf_0onSOPbbW6V861WJrSP7ghtDc8c,527
20
20
  xinference/client/restful/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
21
- xinference/client/restful/restful_client.py,sha256=3He6Tj6GUJ3IVc_CjDDX1pzKUSomEOSK5oE_2Zj2VBk,51649
21
+ xinference/client/restful/restful_client.py,sha256=RtzbTbYM9jOTey7UZ-vzTEFKv1N_b-tT3MdJ_kazUZQ,50720
22
22
  xinference/core/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
23
- xinference/core/cache_tracker.py,sha256=2hk8ANOYruhxAt4MPz482tYEQcvYBh_B7sq0eYd0rTU,6963
24
- xinference/core/chat_interface.py,sha256=iOc44reuewD7w2AtQUJWHU0yWdkhleS0KZbqnDW1_TA,20944
25
- xinference/core/event.py,sha256=Lkx_-Ohwyzyt-MBbkrZy9N-7aeYs-wux0fDtZpa2SJY,1632
23
+ xinference/core/cache_tracker.py,sha256=3ubjYCU5aZToSp2GEuzedECVrg-PR4kThTefrFUkb9g,6971
24
+ xinference/core/chat_interface.py,sha256=tM4hQPZ0UVcmE4_-auXWkq2z0rWmZBwwXNwbbl5zvGQ,20666
25
+ xinference/core/event.py,sha256=42F38H2WOl6aPxp2oxX6WNxHRRxbnvYRmbt4Ar7NP4U,1640
26
26
  xinference/core/image_interface.py,sha256=B_unlVzesE-shlsQg6Q2UCD12NnyHWr2OefkYNwsWlA,10539
27
27
  xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
28
- xinference/core/model.py,sha256=7JB0-sCCkAgGHpwGHUaZNey7yadm_1QlbgBChNM4CCQ,27836
28
+ xinference/core/model.py,sha256=r47g2z9x_F28bDFHNEk9ymfvxhIMLTGCdoUjbw16UYg,29506
29
29
  xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
30
- xinference/core/scheduler.py,sha256=X5lWhzkgTgZgIU-RKz1ytFIju4kE9voII0y0KYUaym4,15651
31
- xinference/core/status_guard.py,sha256=fF5hisvfn6es9DV6Z6RRD6V_S_uLcb8lHM6PArGgb04,2820
32
- xinference/core/supervisor.py,sha256=BhL-VCUvfazH_UQ8n99vCgapwt_ZB73KWwZy9NY6rPw,52253
33
- xinference/core/utils.py,sha256=LqPrez5dGELRQDSwOD5EP8XHb-aUKAdyszS-QpNouuw,6401
34
- xinference/core/worker.py,sha256=nQtk9v5wVl0zgdFrn5af1QqLWEnDZkrmIIQ6Y2WFS8A,46152
30
+ xinference/core/scheduler.py,sha256=qONNFqAlnYDcmmzPO5jfU-r0aZ1Lhhpn1oSaA5CAGTE,15485
31
+ xinference/core/status_guard.py,sha256=4an1KjUOhCStgRQUw1VSzXcycXUtvhxwiMREKKcl1UI,2828
32
+ xinference/core/supervisor.py,sha256=QiYw2orkRx_x76-kq2GVhf-vVLWr2ZI2I9xu6ydeauI,52300
33
+ xinference/core/utils.py,sha256=p3ptQMdzKu9WxdUJ2EdDTXvPDl53BGwiNuVWuhaE4EU,8536
34
+ xinference/core/worker.py,sha256=IvcagHkXpMKjTvZl9svXko5hRuKN3czhbi5phGv-6No,46264
35
35
  xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
36
- xinference/deploy/cmdline.py,sha256=PNp5_Y9_ZMceTHiwbKcj7EEKQo6lpaOVMVfkGxx9190,48489
37
- xinference/deploy/local.py,sha256=vlAvhcl8utP1DjW4MJpBgD4JLHQV-1Xebmdd8j9M8IM,3946
38
- xinference/deploy/supervisor.py,sha256=fMHeEGigQ72PD9JEFmZ5Xudn25Uj4DhD2OVIlAu_YpA,2978
39
- xinference/deploy/utils.py,sha256=DnDjRqiAA77CzAax1laAmNXJM4PFoUxQhRaobmss3fI,6695
40
- xinference/deploy/worker.py,sha256=Av3qU1b0tdxfkds3Mc2Qiqy9c_xSD0Tp3cToWoXqTpo,2966
36
+ xinference/deploy/cmdline.py,sha256=YNXbPIT9zJIp5EQzl_rH5KwDDYqBd2CbaOVF8hA0lws,48120
37
+ xinference/deploy/local.py,sha256=gcH6WfTxfhjvNkxxKZH3tcGtXV48BEPoaLWYztZHaeo,3954
38
+ xinference/deploy/supervisor.py,sha256=68rB2Ey5KFeF6zto9YGbw3P8QLZmF_KSh1NwH_pNP4w,2986
39
+ xinference/deploy/utils.py,sha256=71xnPSjjF3XDZIYmlJ59Fbr7mswWERtNdjfdYGwyT_I,6703
40
+ xinference/deploy/worker.py,sha256=VQ71ClWpeGsyFgDmcOes2ub1cil10cBjhFLHYeuVwC4,2974
41
41
  xinference/deploy/test/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
42
42
  xinference/deploy/test/test_cmdline.py,sha256=m8xDzjtDuAJy0QkvYVJIZDuTB29cmYBV0d231JyRCPU,7714
43
43
  xinference/model/__init__.py,sha256=J7cdxnDxbr-4c8JREXWEIZ8MkB_VokXVaEOsI7ycjho,1101
44
44
  xinference/model/core.py,sha256=WQakLJgxrJMbTGn9AVaw-Tas7QL5M8cJsuYpGgH-io8,4706
45
- xinference/model/utils.py,sha256=4rseD7ckXDwhzIFbsXoJPPfV0I1BB5PT96qs9rMQ-Xk,12634
45
+ xinference/model/utils.py,sha256=-eGdgTgCJYowL9VpJaXb6T8RVKOUpfzwyQHOJ0qaeM8,11958
46
46
  xinference/model/audio/__init__.py,sha256=G4n-MyzdarFVOndPRkEyZZrCwqFIG8yIsky6_5dife0,3433
47
47
  xinference/model/audio/chattts.py,sha256=rMH6-9M8boZdpUSgxaAge-LraE79nRs6mVc0nPLHd5A,4585
48
48
  xinference/model/audio/core.py,sha256=2QexrIh3hDoaNeWh5rOMas9q4zDCZTaazsLRdQ7D5Zw,6512
49
- xinference/model/audio/cosyvoice.py,sha256=kN5rWV7nEcG-xAozlXxsXcJ_PtUuRKiRT8Pz5wUFvQY,5077
49
+ xinference/model/audio/cosyvoice.py,sha256=QhECyo5UuPOEv6F08tT9ToLsEL7v0cCtNPKNP1lkT-4,6460
50
50
  xinference/model/audio/custom.py,sha256=8GXBRmTtR-GY03-E91nlRGTIuabCRzlt20ecU6Un6Y8,4985
51
51
  xinference/model/audio/fish_speech.py,sha256=9BQ6ohOaetV3bfNm9Er_MSx0DwK8FhAsASe57iBXmC0,7105
52
52
  xinference/model/audio/funasr.py,sha256=65z7U7_F14CCP-jg6BpeY3_49FK7Y5OCRSzrhhsklCg,4075
@@ -55,7 +55,7 @@ xinference/model/audio/model_spec_modelscope.json,sha256=club_Pb1BdFPu5EOR5oVkts
55
55
  xinference/model/audio/utils.py,sha256=pwo5cHh8nvhyBa9f-17QaVpXMSjmbpGbPYKwBBtEhGM,717
56
56
  xinference/model/audio/whisper.py,sha256=-UY0xSEHMi5FuDzUrEA19eXF89nJMrgRr74PcDkTo90,7854
57
57
  xinference/model/embedding/__init__.py,sha256=1GmvQsbeeVUT-VRaRGetf8UT4RQgLWIzfp5kfX5jw-k,3567
58
- xinference/model/embedding/core.py,sha256=sP_R5Zc9Gx2zUdb3sE6phx-zdCa4PgXzbQbO8SuKwIM,17601
58
+ xinference/model/embedding/core.py,sha256=5LvIJMDJYguhXa_U0n1yx_B88QmHU_34bFqYgHximRk,18269
59
59
  xinference/model/embedding/custom.py,sha256=757KncqhsOWVypHZFtuhBP_xy-UTNaFdy0BuZRfuIV8,3848
60
60
  xinference/model/embedding/model_spec.json,sha256=jhM2MVaxhihFvShVs18xx0vuneBfAVDUCFyaJ9IgIh8,6889
61
61
  xinference/model/embedding/model_spec_modelscope.json,sha256=FYMBk4zE__lvjU0tiT5aNW1QYd1cr2Gj39BShG2h2PU,6010
@@ -73,48 +73,48 @@ xinference/model/image/model_spec.json,sha256=dt0BVh4OGwuwNuh1TLZNoJ5UcQP4UQQMtA
73
73
  xinference/model/image/model_spec_modelscope.json,sha256=Tl44o5EJnxJhSItQIf4iLK73Bs_1heAubW_pX2C4ZGA,3984
74
74
  xinference/model/image/utils.py,sha256=gxg8jJ2nYaDknzCcSC53WCy1slbB5aWU14AbJbfm6Z4,906
75
75
  xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
76
- xinference/model/image/stable_diffusion/core.py,sha256=1P7BbBKc1bLJuh0S88v4Q8cBKNUX6PNO1Gcomv5nlbo,12607
77
- xinference/model/llm/__init__.py,sha256=hkyu2aFm1GU6VUcPq4t4u-3k57rNDXOveDjPrbMpe7k,11788
76
+ xinference/model/image/stable_diffusion/core.py,sha256=tAX2h737SBrVfZb3f6RTc0OMG9CutdnmEYyQln6KT8I,13262
77
+ xinference/model/llm/__init__.py,sha256=z4tjqQiuhJoyAMis61mUq4zxqAIX14L9HzNMSfrJhC0,12143
78
78
  xinference/model/llm/core.py,sha256=f4nKVPTAseivij6mbL2yXEKxrzllKm-_i2ttSqckTCg,8157
79
- xinference/model/llm/llm_family.json,sha256=XnWU4i00VB0nT5hPOHFpBVr_5NcdwozNbN9s_XXeEjY,190276
80
- xinference/model/llm/llm_family.py,sha256=3FI9UYlWnArtUR1NqwLPIAT077u0pf8TSMpKBQL-e-U,38147
81
- xinference/model/llm/llm_family_csghub.json,sha256=fqIodnCl2_VUpX1NaBdVYApG2LRkXMhUxLNhLt8C7W8,3057
82
- xinference/model/llm/llm_family_modelscope.json,sha256=1-to5OOgJEsmhwErurfTX0DRNhWP2PnwBA2XonC1H5Y,125262
79
+ xinference/model/llm/llm_family.json,sha256=2wPtO1XtcEoPbkd77B-mNta5PmH2CtLYTUaKFt8lUUo,243814
80
+ xinference/model/llm/llm_family.py,sha256=8L6RPsvUlm6Pu6QWdrzWquf1nUKmzd5kKESw8YPWF88,37409
81
+ xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
82
+ xinference/model/llm/llm_family_modelscope.json,sha256=-4x6RWE2QAB4hHaUpIJe8GKJHp-7RdHbZc0yH8jvW7o,172228
83
83
  xinference/model/llm/memory.py,sha256=NEIMw6wWaF9S_bnBYq-EyuDhVbUEEeceQhwE1iwsrhI,10207
84
- xinference/model/llm/utils.py,sha256=boZBoSuxHko_hlj5tY6AsvSgOEw9isZ0yP4oYllk5VI,35808
84
+ xinference/model/llm/utils.py,sha256=ssechEe61VlVF4GlwcmOwPRskol_A9SPsWIKdTufmbo,21160
85
85
  xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
86
- xinference/model/llm/llama_cpp/core.py,sha256=sTwUY6a14bCXgAbFMNmDM2ToQMj-iAk-0KHnFJGz3tU,11755
86
+ xinference/model/llm/llama_cpp/core.py,sha256=vjuTapwbn-ZjUX-8WA0nFyicE4UGUSehU_csSetvcZw,10928
87
87
  xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
88
- xinference/model/llm/lmdeploy/core.py,sha256=-oG8jYXIkzNLUMl0tR0MxFykQhPFCai002x_KE_ZeVM,20714
88
+ xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc3ua8yPTI,19835
89
89
  xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
90
- xinference/model/llm/mlx/core.py,sha256=rxZ7aS9QoapJJ0jBOct4ckj5KsftWlND0n6Qlbs3A-w,14485
90
+ xinference/model/llm/mlx/core.py,sha256=9mTUllTBQf5pnblATWNw6mKKjivQ5u8Xp5q5U4KDYEY,13661
91
91
  xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
92
- xinference/model/llm/sglang/core.py,sha256=AIG5YzM956VsGSJ8chx1bCvVbtq_mccyAwmFo59kZPU,15951
92
+ xinference/model/llm/sglang/core.py,sha256=aayKEuJJByWwWrhUaBlv33087V3mquUdw_8BAOInXYc,16534
93
93
  xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
94
- xinference/model/llm/transformers/chatglm.py,sha256=h0LgHWWoLk96VnW0ZS4o9QGntQWDScGmGmJoIVwKkK4,22118
95
- xinference/model/llm/transformers/cogvlm2.py,sha256=hPghq5UUgJ80g5JC1FbH_MUmFssmkkchgp7Xife2HFQ,16811
96
- xinference/model/llm/transformers/cogvlm2_video.py,sha256=1gYBHTz5ZrvcsMroDmIRQ3bc03Qq-JL_rO2VSHlu9Ms,18876
94
+ xinference/model/llm/transformers/chatglm.py,sha256=BRCWvf-VlL-u7qN_uWi5h1d8KDoYmNcd5J-0OdVImp8,17818
95
+ xinference/model/llm/transformers/cogvlm2.py,sha256=wqWM6AhVQssgkUOcVX2N7RU7kjnAu55r6ZlUjh9iJro,15942
96
+ xinference/model/llm/transformers/cogvlm2_video.py,sha256=dupPGQur8xGie5roA1ibpTIIZNoO-KMynvr7303pyl0,11809
97
97
  xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
98
- xinference/model/llm/transformers/core.py,sha256=eDUZwIao0i8I_67zp5tAY2VLmGkg47yik7CZf9rTJdM,30914
99
- xinference/model/llm/transformers/deepseek_vl.py,sha256=yiOJd2GHrVTTFvyZ7hLV-O-YsCfqRAEHK46ah-zqq3I,11562
100
- xinference/model/llm/transformers/glm4v.py,sha256=L9rTyuwd0VriudlqH6FkNAugWNy3eOasFYMy59KuNeo,15706
101
- xinference/model/llm/transformers/intern_vl.py,sha256=ogWYnNl6FOT4KvY3M3d364twC5ZlQT6_xxlK_UgBKoc,19256
102
- xinference/model/llm/transformers/internlm2.py,sha256=9x_mPhCQifmBVNoIQ_z3DXtI2qRsA_3wOckRsGmDDog,7831
103
- xinference/model/llm/transformers/llama_2.py,sha256=Nr2yaNxmoDmPhIw_p0lwN76iB4jxh7NGKDoK-YaIZiY,3836
104
- xinference/model/llm/transformers/minicpmv25.py,sha256=NLuJpeTmqnc8Cn_13-bSjVmtqSUbtxXd20j-sOOWP84,7879
105
- xinference/model/llm/transformers/minicpmv26.py,sha256=BlmsIqjrD4oHewaskGTemOAN8Dr2S0V7YmFoZQXffZs,9603
106
- xinference/model/llm/transformers/omnilmm.py,sha256=3vF8963CbSOrTZhkiNrzAI-p14b57s8QiR_aGBM1oMY,5724
107
- xinference/model/llm/transformers/qwen_vl.py,sha256=4JukyB0YVH0TcyV8sIErhbRRJgNdrB4jSxx1mFBnIQ8,15592
98
+ xinference/model/llm/transformers/core.py,sha256=2OKT6en6wZceAJxy0Ba4vjqLMU7ux5DJ0G6-FL4fDQA,30872
99
+ xinference/model/llm/transformers/deepseek_vl.py,sha256=eb-UH6g1Vr-jaZnGSkn_Ud4WYBzDuYR24CV_tAvo9iM,10397
100
+ xinference/model/llm/transformers/glm4v.py,sha256=Uz7y2A_cSDeVVfe4D31h9LGqtUJ51plckt6jmnm_z7c,13841
101
+ xinference/model/llm/transformers/intern_vl.py,sha256=3K0_2ng4zBgsnobzV7AfDEq7NzZu676JfNM54oE3AXQ,18222
102
+ xinference/model/llm/transformers/internlm2.py,sha256=nRrmbH9bJl_wLcCH4zSy0EeKeP_ht-b8bVvbG2pMgV0,7228
103
+ xinference/model/llm/transformers/minicpmv25.py,sha256=8fcmQo5VAst0vniV2-N6109Nq0sA56O2vWVxMvdZWxo,6766
104
+ xinference/model/llm/transformers/minicpmv26.py,sha256=QRO5gnxuFMiJDNZ-v3os1A_4bn4fzrDvYjAOhdPQ4Lw,13392
105
+ xinference/model/llm/transformers/omnilmm.py,sha256=MBsh-qaDnjtrtTRrAR7ArgHyupfpowwntuTuOj7xGkA,5124
106
+ xinference/model/llm/transformers/qwen2_vl.py,sha256=k1KsMZqr_yT8A2Cbf_jT43yzNAHQVmoYsv7c9-wlrhI,7556
107
+ xinference/model/llm/transformers/qwen_vl.py,sha256=JfMuiEqYuRIlDv5cIiRbLCd4DJQRgwCFoxc0JTJTGgs,14028
108
108
  xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
109
- xinference/model/llm/transformers/utils.py,sha256=EMHeihMi6MWL9j1m2CUB1Pcniv-fJjDOcoMs8e5oEbE,27936
110
- xinference/model/llm/transformers/yi_vl.py,sha256=JeraCcpwzscLrqNq4fIGVohFbgEYHJYR6YAvvTzU7Pc,10116
109
+ xinference/model/llm/transformers/utils.py,sha256=qob4wDMN98LKzYdDcQe8rFVA5_mX4i5XeVgm3HSq9iI,28505
110
+ xinference/model/llm/transformers/yi_vl.py,sha256=w4EpUHpmT9P1u5yEv1Pm3Ico92nqZZv3fO4NEKXteK4,8913
111
111
  xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
112
- xinference/model/llm/vllm/core.py,sha256=DMuA6iGZei1UYadMsT4KPUssl3kuvzGoyldptTn7ie8,26441
112
+ xinference/model/llm/vllm/core.py,sha256=AJe7fXGrhahYf2moEzhro7JCywNvSPO9x5WLjrWAje8,27905
113
113
  xinference/model/rerank/__init__.py,sha256=wRpf1bOMfmAsuEKEGczMTB5fWEvuqltlJbIbRb-x8Ko,3483
114
- xinference/model/rerank/core.py,sha256=G3SMm7BlMk3r8zyDs5FwwTCemlWHYspuZtTh8pWpdmg,12231
114
+ xinference/model/rerank/core.py,sha256=_6kqYc488sbj_yub8AkZnDi4Xcibc4Q_MunrdMkHrqo,13264
115
115
  xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
116
- xinference/model/rerank/model_spec.json,sha256=zZHVUq9B5vwTQOzXOXNK3pgGpQVrMG9npAYwftqFZ3I,1608
117
- xinference/model/rerank/model_spec_modelscope.json,sha256=vSSC0aWy_DHnNDzzBcMWr2pqdISDmPS95FtD_YfMmn4,1275
116
+ xinference/model/rerank/model_spec.json,sha256=XZNIiWj7AQsn_Ts7N-LKL4jd6BAW7EVG37Owhhwbit8,1773
117
+ xinference/model/rerank/model_spec_modelscope.json,sha256=BXkhPUdLOjo_ZT3o9suViT_Oh1_ev0JdLIUMG3rsoSc,1419
118
118
  xinference/model/rerank/utils.py,sha256=MJAFL47G3r3zLVGXKoi0QLTgU3Xr4Ffv72Ipn--psew,713
119
119
  xinference/model/video/__init__.py,sha256=mRhOhzMxzcPFdA5j4niAxH_j9dXLtT9HmchuICrdET8,2160
120
120
  xinference/model/video/core.py,sha256=PMqyWhhBWO77VjpEvTC7EQrGmyLWxJ_-Mm1VRqb2dNY,6031
@@ -124,42 +124,44 @@ xinference/model/video/model_spec_modelscope.json,sha256=U8p6IqNLbY5Safxwpa6dCfn
124
124
  xinference/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
125
  xinference/thirdparty/cosyvoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
126
  xinference/thirdparty/cosyvoice/bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
127
- xinference/thirdparty/cosyvoice/bin/inference.py,sha256=1A6V5MKal3hbV9Ge-euZFzvnwrjQzJdiqb27Lsz5TPg,5386
127
+ xinference/thirdparty/cosyvoice/bin/export_jit.py,sha256=WWPad_PGBT_C0AJ4w_ki5EJxGr9gX5fmK0kUsnhgnGs,2343
128
+ xinference/thirdparty/cosyvoice/bin/export_trt.py,sha256=cjek1s4asmBUOMfNpi1gVMlkbn1sn2E3MXe_vDxyR-E,623
129
+ xinference/thirdparty/cosyvoice/bin/inference.py,sha256=nq5doMD1JCgwVgh1o35pp-8O9njOxezJvnjvWVsNMCA,5533
128
130
  xinference/thirdparty/cosyvoice/bin/train.py,sha256=984UhhoGC5SO5fE3sL_k28Sndz9ElzUAO8FBqRYF9DM,5212
129
131
  xinference/thirdparty/cosyvoice/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
130
- xinference/thirdparty/cosyvoice/cli/cosyvoice.py,sha256=JZcBcDl-8esxu_5AWljG3bUPBhs0GikBpF4cSEB0_9o,4204
132
+ xinference/thirdparty/cosyvoice/cli/cosyvoice.py,sha256=h9XEzKSqyg-5rj79D_H4hQRHNr05boGo82zjGntsr6s,5429
131
133
  xinference/thirdparty/cosyvoice/cli/frontend.py,sha256=5ZRsZjVYSSEEC7iGQG62zFCzbhjygNPxKeR0Ougf86M,8997
132
- xinference/thirdparty/cosyvoice/cli/model.py,sha256=ch5OExpMLgcEVKdM4-FnOT1yuOh1cj-cdJo_VOONFh4,3660
134
+ xinference/thirdparty/cosyvoice/cli/model.py,sha256=R4YAp0OIqzf9dPxZeQef4r-t7f44vKLI5Fblpcy4Dns,10178
133
135
  xinference/thirdparty/cosyvoice/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
134
136
  xinference/thirdparty/cosyvoice/dataset/dataset.py,sha256=o4y725HGw4wOQ6ZKMIXUiXPJJuNlVCuat5yLKrfw50A,5233
135
137
  xinference/thirdparty/cosyvoice/dataset/processor.py,sha256=Dd0r4VxbcR2o7cgCtYVPd_VxEc1uNIxCB7euLn0FxiM,13008
136
138
  xinference/thirdparty/cosyvoice/flow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
139
  xinference/thirdparty/cosyvoice/flow/decoder.py,sha256=4RXtRZwEgTZ_21m6TcYtYzjBtOR5GyaSfZKBjVB1bhc,8878
138
- xinference/thirdparty/cosyvoice/flow/flow.py,sha256=I963uxLcL8csoN9qRG9I9T1zUBCt5DThaJAa4a32L_Y,5724
140
+ xinference/thirdparty/cosyvoice/flow/flow.py,sha256=44ZtlRw4aBb8YFo2ejeOTUJ-BMyVVI2k0XFVjhtppwU,6065
139
141
  xinference/thirdparty/cosyvoice/flow/flow_matching.py,sha256=TMhnw1sUSJeJ1zLc-PcD9GWRNTGju6lv_zY23Y95vgo,5882
140
- xinference/thirdparty/cosyvoice/flow/length_regulator.py,sha256=zGeA2yr3pj5VAw76taTDa7_bu33RuZTpFy2a1VZe64k,1841
142
+ xinference/thirdparty/cosyvoice/flow/length_regulator.py,sha256=jjgY29-djOCv61-h0lth5a8mpWoL5nDo5BKgc_uU73w,2890
141
143
  xinference/thirdparty/cosyvoice/hifigan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
144
  xinference/thirdparty/cosyvoice/hifigan/f0_predictor.py,sha256=4Ter1WnuSRA7wytzQfEtu-3PuA-Qrg3ywR5Hs7fsV74,1976
143
- xinference/thirdparty/cosyvoice/hifigan/generator.py,sha256=uMlis-YTgXcVqYkGr7ZJVri25xFQFUbf5y9tVWQdRaA,14736
145
+ xinference/thirdparty/cosyvoice/hifigan/generator.py,sha256=cEDILcx6BD7Ihpb-XG-xFGhjT43FsadBXX6JkIb6e3A,15010
144
146
  xinference/thirdparty/cosyvoice/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
- xinference/thirdparty/cosyvoice/llm/llm.py,sha256=PTt0BtDpfQg9IT4sFLtyPs_EcF9mqSWWctqMfJsDuO4,9184
147
+ xinference/thirdparty/cosyvoice/llm/llm.py,sha256=PZD7gm6YTfwiHwt8h3OGiSkQ695drKfVUHciTKR4ucA,9253
146
148
  xinference/thirdparty/cosyvoice/transformer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
149
  xinference/thirdparty/cosyvoice/transformer/activation.py,sha256=pKlsrqn3sFERKG3l6nYL39-cTlNEj1NCCFfcBKUEQMI,3089
148
- xinference/thirdparty/cosyvoice/transformer/attention.py,sha256=QcK4hxfGnKa5F8ETBrpF0o15PeGDsbVBtxn3IdoATq0,14196
150
+ xinference/thirdparty/cosyvoice/transformer/attention.py,sha256=QdJpstXjo5UsClOPRkgK_4Vwdn64joBFLzZ0Ns72KLE,14389
149
151
  xinference/thirdparty/cosyvoice/transformer/convolution.py,sha256=619B8ySpciXHO5xDCvi7IxvXc4bvGEULsP0yn0aatOE,5230
150
- xinference/thirdparty/cosyvoice/transformer/decoder.py,sha256=POqI_m6odD_pzhKIs1A-i281vbLSXSvIn80BoPUPF9s,16591
152
+ xinference/thirdparty/cosyvoice/transformer/decoder.py,sha256=2wQscn4OZTrJJHM7H7FeaXkv_YDJ089iJIN0VV1Yocw,16580
151
153
  xinference/thirdparty/cosyvoice/transformer/decoder_layer.py,sha256=uVZiq3LsawsPUMOhX77PFvrLeG0yO0rKHQY7nCHA1k4,4807
152
- xinference/thirdparty/cosyvoice/transformer/embedding.py,sha256=861_rmBYSXt8BGtlE_fREEXjWr5U7NXROaJIVHHjzkM,11316
153
- xinference/thirdparty/cosyvoice/transformer/encoder.py,sha256=XWo-ofoMP5y-CnV_7somIdpXyUiKTsSmSqiRAXY-k9A,21400
154
+ xinference/thirdparty/cosyvoice/transformer/embedding.py,sha256=LLSnAPvJBIUDeV7vRhyVBZuWXDRmJ73dlZug9aJfodw,11398
155
+ xinference/thirdparty/cosyvoice/transformer/encoder.py,sha256=J_nXSZcgNy--Z3TQkLif8GPH7PiPk6TXWye7GtspGKU,21434
154
156
  xinference/thirdparty/cosyvoice/transformer/encoder_layer.py,sha256=8eMmGrfnPyXmXwrWLcxhX-mL8sj1eHaLXBhFnBkNDy8,9595
155
157
  xinference/thirdparty/cosyvoice/transformer/label_smoothing_loss.py,sha256=24gEzxwg4a-_bDPeSDZYmxlH2IF5fQLVB8KoqNT0D90,3459
156
158
  xinference/thirdparty/cosyvoice/transformer/positionwise_feed_forward.py,sha256=boA447zIyght3KUI-5udQL86uYvrq89clJNdAyMp0Pg,4219
157
159
  xinference/thirdparty/cosyvoice/transformer/subsampling.py,sha256=MfwDR6hRq8EgXf1M9oCZwMQWWJw-maB7JQ6GMM7OGdA,12666
158
160
  xinference/thirdparty/cosyvoice/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
159
161
  xinference/thirdparty/cosyvoice/utils/class_utils.py,sha256=PnVIVrqHzyv9FA4mvpkHcvABQboGubVVELE_QVI40YA,2582
160
- xinference/thirdparty/cosyvoice/utils/common.py,sha256=plT5c9yqr0BsaOUlub8UUcITDp2x29MoYXphjnFkV4Y,3414
162
+ xinference/thirdparty/cosyvoice/utils/common.py,sha256=xGxkyedwKLr08T0NXTP1PgdgKfgMfepDfHzuebJw5CM,5146
161
163
  xinference/thirdparty/cosyvoice/utils/executor.py,sha256=3SpBSW9iJ4wSRHv-qLEd3G_tMEL01b6ZAZC48hyqeEI,5114
162
- xinference/thirdparty/cosyvoice/utils/file_utils.py,sha256=L9m_Cgx5EY1Fly7OXuVven1ynGR4rbuUbiyH5fKpxUA,1477
164
+ xinference/thirdparty/cosyvoice/utils/file_utils.py,sha256=5b-KWbUTxGD7bIguqSssTXGqHZfadnFbTaMPxCEdnxk,2021
163
165
  xinference/thirdparty/cosyvoice/utils/frontend_utils.py,sha256=v5CBGTaebwT4e4TFf33PmwRtFx9bACylpU88ycBursU,4042
164
166
  xinference/thirdparty/cosyvoice/utils/mask.py,sha256=kAauQRdlhQGrC0BjvYFpicLOlVKDp3V3ZCnLbbTMaHU,8351
165
167
  xinference/thirdparty/cosyvoice/utils/scheduler.py,sha256=BYzf1Ugnbba26wnoSfv_yq9FZaAJHLTn1q6QjgvZJQY,24940
@@ -181,6 +183,17 @@ xinference/thirdparty/deepseek_vl/serve/app_modules/gradio_utils.py,sha256=qnwUB
181
183
  xinference/thirdparty/deepseek_vl/serve/app_modules/overwrites.py,sha256=XWBmZ-4puSoOMFcygF91U8xRN2cV8cqbGNTSK4IXwJU,3214
182
184
  xinference/thirdparty/deepseek_vl/serve/app_modules/presets.py,sha256=7qXSVm-UvZQYdLlfTMxVsm42LmklK7hbvNSvOLl-x-Y,3435
183
185
  xinference/thirdparty/deepseek_vl/serve/app_modules/utils.py,sha256=OzrxNSM8oNLKYYCWAWEXpptrht0OVXoQdjSboUCjo1s,7492
186
+ xinference/thirdparty/deepseek_vl/serve/assets/Kelpy-Codos.js,sha256=TSVPz9Nt8UT1Ck6NeLuc6lKY_St-VIf0rg1WhOsywrY,3760
187
+ xinference/thirdparty/deepseek_vl/serve/assets/avatar.png,sha256=M5UhHvq3k7iaTledkL1gaw60NeJWau31S-xYXkNqjnE,62075
188
+ xinference/thirdparty/deepseek_vl/serve/assets/custom.css,sha256=QO8UtXA8bnyX2fyKb01oyqV98Yseyefe_dwA0lYWIlw,9195
189
+ xinference/thirdparty/deepseek_vl/serve/assets/custom.js,sha256=q4eMFbj5FErECrTQR5iGM-zma8ZFMNLXPAS7CLavrEE,1144
190
+ xinference/thirdparty/deepseek_vl/serve/assets/favicon.ico,sha256=KNq3G9QZD0HH3lEGFeka_LpSrXzmgm-_hrITIFvmK0U,15406
191
+ xinference/thirdparty/deepseek_vl/serve/examples/app.png,sha256=Avpx-wdhzPJoYKBHb3tm_1GEIeRiTpEyu2ZUYE64oLY,82836
192
+ xinference/thirdparty/deepseek_vl/serve/examples/chart.png,sha256=WBaRJTWF6di4-SXDX_KGIh1ld72FCPVKc__nqS5KZTQ,157103
193
+ xinference/thirdparty/deepseek_vl/serve/examples/mirror.png,sha256=aOxvSLp8qydR5XOY4Ex3c6guuiSspLOtQ-TzoCguWEY,271847
194
+ xinference/thirdparty/deepseek_vl/serve/examples/pipeline.png,sha256=arKg2cb0zaqyS_-ECjwJBqRV_tUcVdRy2HcfX0H2e2c,37834
195
+ xinference/thirdparty/deepseek_vl/serve/examples/puzzle.png,sha256=q6sgDl6qAIWRd9wR27O2VYBqZFEV3I29d_IPgAfOPpk,194014
196
+ xinference/thirdparty/deepseek_vl/serve/examples/rap.jpeg,sha256=AL_pk3nX1ChriPT-FokcDukkpU8RFqtC_q_vxwl4ScI,57320
184
197
  xinference/thirdparty/deepseek_vl/utils/__init__.py,sha256=u8C--egJMT_DDm0JG3frXGSQNNv6cfIAumPhghzkxhk,1091
185
198
  xinference/thirdparty/deepseek_vl/utils/conversation.py,sha256=7oITA8TsIuOfumVZ8hcoDpA6dm1jz7n8-VXPe_7-4YA,11702
186
199
  xinference/thirdparty/deepseek_vl/utils/io.py,sha256=HQqLoONZF4nl1E9oMrm7_2LwU8ZSh1C9htm7vLN4YfI,2751
@@ -192,14 +205,20 @@ xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=8Q-M1wBr6z77pQLvZy
192
205
  xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py,sha256=LYHvlvb9463UMJ3stVzBilVpLtdiLCteuzMIB5ypHS0,70
193
206
  xinference/thirdparty/fish_speech/fish_speech/callbacks/grad_norm.py,sha256=pzuUxUnXWAa9U6XKcvQpnGoUZhMmFQKimSqYH-WajIQ,3436
194
207
  xinference/thirdparty/fish_speech/fish_speech/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
208
+ xinference/thirdparty/fish_speech/fish_speech/configs/base.yaml,sha256=7_yXj9Y9SNhI7wiQeFvoLArtp9gqJCF-f43JGQ-TwCI,2544
209
+ xinference/thirdparty/fish_speech/fish_speech/configs/firefly_gan_vq.yaml,sha256=GIXMnG0n8MtPEScIbwDvSiBAeKB1RlRswcwftQFYAbw,1021
210
+ xinference/thirdparty/fish_speech/fish_speech/configs/text2semantic_finetune.yaml,sha256=_Dc9W3H46MXKyUHQEZPTYHNwlt_dNWA-Bodq2542MYs,1991
195
211
  xinference/thirdparty/fish_speech/fish_speech/configs/lora/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
212
+ xinference/thirdparty/fish_speech/fish_speech/configs/lora/r_8_alpha_16.yaml,sha256=a9QVkN2A64_0l8XUfwV1fgW5eZi9124L5pHdsN9ZgII,98
196
213
  xinference/thirdparty/fish_speech/fish_speech/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
197
214
  xinference/thirdparty/fish_speech/fish_speech/datasets/concat_repeat.py,sha256=y9pAty3Sa3gyfAERSaubmMNRdUzyAw4zzoDyXzuGGxQ,1498
198
215
  xinference/thirdparty/fish_speech/fish_speech/datasets/semantic.py,sha256=FHpdQj3awN-21w3f96xL0Z6DvEnOpW7qES8_ZjdHBt8,16727
199
216
  xinference/thirdparty/fish_speech/fish_speech/datasets/vqgan.py,sha256=NMOaBOYPvHuMPwyRx5ahJh0pkhPauEFVWMGFi2Vl7L8,4012
200
217
  xinference/thirdparty/fish_speech/fish_speech/datasets/protos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
218
+ xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text-data.proto,sha256=1ruMlbx5JfQ-_QAzzwPnBZ5zrdOPTRlEovVgpRwnn3w,392
201
219
  xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_pb2.py,sha256=GFnBeGCTFtWJTdNXQx0hzPpxagzleSyWxN3pE22-E2g,1758
202
220
  xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_stream.py,sha256=v9i3jbIC6KFTSLvSVso8-3mBDufSOwE7IAr4-5RXgQ0,781
221
+ xinference/thirdparty/fish_speech/fish_speech/i18n/README.md,sha256=pXQy_jPFXyTBQSni4JSFH1JtsoqOe7vOfWpRtOPGz6w,1483
203
222
  xinference/thirdparty/fish_speech/fish_speech/i18n/__init__.py,sha256=u9r_HCtTmYcU64L62Gg9lLANvGybfb0-ETw8Ob-fnxY,43
204
223
  xinference/thirdparty/fish_speech/fish_speech/i18n/core.py,sha256=8Ks8wGog73U-AZqlzGltfx61KALGTh7uCIXnQHDnDOw,1036
205
224
  xinference/thirdparty/fish_speech/fish_speech/i18n/scan.py,sha256=1mdXKPeR0d3bTcFZWhX6ODWUJbbiOHO73MBDEJlTmUY,3751
@@ -226,6 +245,8 @@ xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/wavenet.py,sh
226
245
  xinference/thirdparty/fish_speech/fish_speech/text/__init__.py,sha256=3lYfSw4Xb3Qh0p8FsjX4ToOJNsm7ZxN3XPh_xFKXoUQ,102
227
246
  xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=CTNqZJRf8KSvIcAZbIA0t6BSbDeBlJDnHsOs4JQWKpo,1399
228
247
  xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=GRwZepmtWAfcyOWjCsBfXhC3_l4LP5CIKS5t3m8enuA,3799
248
+ xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/.gitignore,sha256=04gWbPAivQzTV7w2eOgkk3xcMZLuti1pkLwy_mW7k6M,1274
249
+ xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/README.md,sha256=9tZNujydXU0DlgpnsJTfMI880mgh41l6UvqqQQKbcPk,890
229
250
  xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
230
251
  xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_class.py,sha256=m4d9b6Mr30ChJ4NzWbWQwAG2PtnTjEAkMB5_wGtINAs,4390
231
252
  xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_constant.py,sha256=EBvR_-At1FbsbSmryn5ch41UND-ob3K-dLunpceM4LU,976
@@ -251,6 +272,9 @@ xinference/thirdparty/fish_speech/fish_speech/utils/utils.py,sha256=GaL7k1geF-D5
251
272
  xinference/thirdparty/fish_speech/fish_speech/webui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
273
  xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py,sha256=uIWcCXHyF7Oqo7uyq8li0fpVL6q-t-ITk2k3ma5WjU0,3972
253
274
  xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=yCmMEMtchR9lCnaBMLyzLInp_9MGQNEPyPp0sxnK_6E,46882
275
+ xinference/thirdparty/fish_speech/fish_speech/webui/css/style.css,sha256=CLXPzePjropDNCfg2jptIwJRMIWPuc5jfd2aLGadMD0,2617
276
+ xinference/thirdparty/fish_speech/fish_speech/webui/html/footer.html,sha256=ofq4m93dF0Z_lXn2J6nLBwXwdugBOPIzjzFGBbr1C58,348
277
+ xinference/thirdparty/fish_speech/fish_speech/webui/js/animate.js,sha256=AG2umxvH9ly6ZxJDxV4sfz1A9Q3_unA7LnkKv05X-i4,2690
254
278
  xinference/thirdparty/fish_speech/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
255
279
  xinference/thirdparty/fish_speech/tools/api.py,sha256=Voi8YlyENsYNI9cOZ_FhbOTRbE0XENoXqHYRRtoCf1Y,14806
256
280
  xinference/thirdparty/fish_speech/tools/auto_rerank.py,sha256=HeVUTG0yh4suJ2Ijnazml0ybIHZIbVhciAc8sul0Nxc,4033
@@ -270,6 +294,7 @@ xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=czEjxx_RnHzfwN8
270
294
  xinference/thirdparty/fish_speech/tools/llama/merge_lora.py,sha256=fQSKyLIGV8B1xDuzxCWVMu8WSO_wbYqR_mwLfFNTnJk,3277
271
295
  xinference/thirdparty/fish_speech/tools/llama/quantize.py,sha256=kyFK1FuszL6erStml8jqxqDR43LjgcjlT1d3LeHwTz8,16606
272
296
  xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py,sha256=MuFdqOsU2QHq8cSz7pa4PAsjZyrJrghCZQR2SrpplTQ,2025
297
+ xinference/thirdparty/fish_speech/tools/sensevoice/README.md,sha256=KD334P_t33hZcbxKFIOpQIrcuBMahpc1prBMht_s1Nw,2457
273
298
  xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
274
299
  xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py,sha256=abg8hFiVcWwhJYT_E8De-vYRUQOs1u0Zxxgz1nj1790,22739
275
300
  xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py,sha256=gLpuvycuY2_QyOqBbwfBCtDQ9CdEQovcBOvmbHvHqjo,10182
@@ -292,6 +317,7 @@ xinference/thirdparty/llava/model/clip_encoder/builder.py,sha256=D1d2_hW2V1kT4jn
292
317
  xinference/thirdparty/llava/model/clip_encoder/clip_encoder.py,sha256=ieNXVeV1UFIxbcMufZewxofnSSP9t5dBhMFLfMJcFN4,2789
293
318
  xinference/thirdparty/llava/model/multimodal_projector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
294
319
  xinference/thirdparty/llava/model/multimodal_projector/builder.py,sha256=URP051uhGLWqC6ERsqjn2MiQDNYzOoQ6EJEcB-Z0RzM,1933
320
+ xinference/thirdparty/matcha/VERSION,sha256=f7mwzXAlOzRR8MEjLrm-_Gb1spjefQ7GevSwcvXLJTg,8
295
321
  xinference/thirdparty/matcha/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
296
322
  xinference/thirdparty/matcha/app.py,sha256=bBOG1VM5L8X64aF8rH4iddu45dje9lmkyr5ubAq_4-4,13992
297
323
  xinference/thirdparty/matcha/cli.py,sha256=QfYJNwcmItevYGsbQAQc4zQSNsiRPwNu1rqyS9xH66U,15592
@@ -299,6 +325,8 @@ xinference/thirdparty/matcha/train.py,sha256=eKFZFkaSvmdfMNhOAcvp63kp-Wvj_9IE47m
299
325
  xinference/thirdparty/matcha/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
300
326
  xinference/thirdparty/matcha/data/text_mel_datamodule.py,sha256=aC9ULlp2re5fKBh6wTXMth7KFp3-ki3vOI9EwKfynhA,9206
301
327
  xinference/thirdparty/matcha/data/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
328
+ xinference/thirdparty/matcha/hifigan/LICENSE,sha256=O9q6VLyqH7GrTBZ_mo5Fb4j5bGcYuAJpJek4Sx8u5tU,1068
329
+ xinference/thirdparty/matcha/hifigan/README.md,sha256=zTwOh2M5Rkayb6_Fjto--1yK8SEUSqHhflrAMl4ODYY,5570
302
330
  xinference/thirdparty/matcha/hifigan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
303
331
  xinference/thirdparty/matcha/hifigan/config.py,sha256=cxS_YTK_UoO2uma_Ue8QRFtNA6ldSEt1EL36u2-NgCc,779
304
332
  xinference/thirdparty/matcha/hifigan/denoiser.py,sha256=Q2juI2a3QTqce6fuvqWQnShoV671kVW2JsQyoqwwvLI,2644
@@ -334,6 +362,7 @@ xinference/thirdparty/matcha/utils/utils.py,sha256=5TN-PISzsjI_CgnRX3PSPBVsFhRL8
334
362
  xinference/thirdparty/matcha/utils/monotonic_align/__init__.py,sha256=_s_INV7vL_N9mhYtZADAk11CsSGP8kykn0fEyyM73ts,646
335
363
  xinference/thirdparty/matcha/utils/monotonic_align/core.pyx,sha256=t2jJamslaDGkFZnWhdUQ0qs4T4gjntMOAXSPMtZaq0w,1236
336
364
  xinference/thirdparty/matcha/utils/monotonic_align/setup.py,sha256=bf0d0cvGRaACC22qq0sqgZEBBhz4qzDlMqBxOyTKC2g,207
365
+ xinference/thirdparty/omnilmm/LICENSE,sha256=WYLj56GZNvkMgbPWkCNpWlTFbbaeXKVEvUTrzw82stk,11337
337
366
  xinference/thirdparty/omnilmm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
338
367
  xinference/thirdparty/omnilmm/chat.py,sha256=oi0I-yVkvvnW_Vqj-iQzKaPUbGJ__EBn1we9AHlaGn4,6784
339
368
  xinference/thirdparty/omnilmm/constants.py,sha256=bq6C4oIANqwTtt5G7sjJUdRlLyTa-_urOHMJN7VBmU4,84
@@ -345,18 +374,36 @@ xinference/thirdparty/omnilmm/model/resampler.py,sha256=a4zxggEqFDU-T-vE-6iUZ3Pr
345
374
  xinference/thirdparty/omnilmm/model/utils.py,sha256=u2ulK2vb-FgAoAPBPWEO8fb_owles1Uuh57LMrX2D-I,16467
346
375
  xinference/thirdparty/omnilmm/train/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
347
376
  xinference/thirdparty/omnilmm/train/train_utils.py,sha256=L4JtFWDKtdEcQYpGW-UV6GCswTqHkiskK3phM9J-xUM,5634
348
- xinference/web/ui/package-lock.json,sha256=VRHwHWSkiT0Lqgxhkf8smmeNjX6TZyN3nVV7PTOtEEI,758814
349
- xinference/web/ui/package.json,sha256=f25NnkHMpRO-_AVrukE6ESoB2XsOOhcE3hnXzpqu3vU,1997
350
- xinference/web/ui/build/asset-manifest.json,sha256=GmEBeNiL7e4HGYqMQ1Q6SLUxe9ztWpKqt9ySHyBjB1w,453
377
+ xinference/thirdparty/whisper/__init__.py,sha256=NZaWcMHAfd_FFUed1OavzCHHIsKACyM1XsVR9Ngwgco,6901
378
+ xinference/thirdparty/whisper/__main__.py,sha256=xRnVhsOmtjn2TlnS1v1rWRpn7Nc5-XJ0kpEfxM5NVFo,35
379
+ xinference/thirdparty/whisper/audio.py,sha256=2TslvajXAWMHZPNI0wI9H2209OpeFwjVVu0rEdKwHfI,4932
380
+ xinference/thirdparty/whisper/decoding.py,sha256=lAhP7cWvdMq_jhiDqFVScABXCB8A6maa1JQ17LKQOds,32155
381
+ xinference/thirdparty/whisper/model.py,sha256=F__Sp7jNzihoVQu0FE65enypO7tWQIGSohiSuvxkSAo,10847
382
+ xinference/thirdparty/whisper/timing.py,sha256=yvIb5X42w0xLyHcATsxCLAMXMiJ0-_2Xs8xJlmy-u7I,12638
383
+ xinference/thirdparty/whisper/tokenizer.py,sha256=O0jjYafpW07ANWym1yu6Y1d4qhAmkVMTbue8NMrjC4U,12338
384
+ xinference/thirdparty/whisper/transcribe.py,sha256=DNamWcWAnOQbIbgpemGw4XVZHwikS6Es9JfRt12QyQ4,29302
385
+ xinference/thirdparty/whisper/triton_ops.py,sha256=FkyDF7qsWkFWFSBuSJ4SvHvetsQ7pPyhuyDGJvjNyVc,3474
386
+ xinference/thirdparty/whisper/utils.py,sha256=M2Bs2c_iEuqSstPnQweG-Wc7uvbdvVCxnY1ohC0Yyx4,11449
387
+ xinference/thirdparty/whisper/version.py,sha256=GQqOw79NGH9DxhOv1_eFdAo-iUle8T-0tqXnqoiX-nQ,25
388
+ xinference/thirdparty/whisper/assets/gpt2.tiktoken,sha256=MGzSfwPBpxTspxCOA9ZrfcBCq-jCWLRMGZp-2YON2TA,835554
389
+ xinference/thirdparty/whisper/assets/mel_filters.npz,sha256=dFCucHI6XvnTQePO5ijHywF382zkLES37SvzMl8PbUw,4271
390
+ xinference/thirdparty/whisper/assets/multilingual.tiktoken,sha256=s0s2DbtJPngeR5eUWG1mFwBnDWVWQAHyMCSXHR8voSY,816730
391
+ xinference/thirdparty/whisper/normalizers/__init__.py,sha256=8Y_Nzkyu5_LoDkwBqwRX06CAqHKilIlULG0jxLC7pXI,130
392
+ xinference/thirdparty/whisper/normalizers/basic.py,sha256=rVZ7Og4dA8zAw1_HRv1oMMNSkP5O12dOthzhV7o9OA0,1936
393
+ xinference/thirdparty/whisper/normalizers/english.json,sha256=Zgf5SL6YJNLhsvoiI82UwGxFr6TgXqDj1eHyvf_eJGU,56128
394
+ xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc3yhvWzWuMhQzRnp2dM6IQdA,20868
395
+ xinference/web/ui/package-lock.json,sha256=r6y_nAa8SfAETbx3ysAKcRf2SznsSAxpLwtArCJbCCI,760153
396
+ xinference/web/ui/package.json,sha256=fkEgsboguEVK9yuRrJjN7Alhyo38qV1Ih83qQFVr6SQ,2023
397
+ xinference/web/ui/build/asset-manifest.json,sha256=JsxJcqvCpABiTFNq_q10da2D6JO8Y_joqMCvvu55lzA,453
351
398
  xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
352
- xinference/web/ui/build/index.html,sha256=cozeS5oW6fIMT5XZVPTYWWaIcEojlhsxqCXPfaqZuJs,650
353
- xinference/web/ui/build/static/css/main.4bafd904.css,sha256=B1LOr0CAJXDztw7bSsJMTmEwdzqnciZOYjgeBSO25cQ,3910
354
- xinference/web/ui/build/static/css/main.4bafd904.css.map,sha256=rIbo5tZ_vpOnVcUwFk29B6UpEffrfphEQ3XKUAuG49E,7794
355
- xinference/web/ui/build/static/js/main.eb13fe95.js,sha256=KPmUh1JX6dw26YMXgWi35i5c9zt-FHrknlHdbya6CLk,1018981
356
- xinference/web/ui/build/static/js/main.eb13fe95.js.LICENSE.txt,sha256=rbybPZZs56fvnjMiAklb5AB-cE9DLmWrrraygrxIG3I,2279
357
- xinference/web/ui/build/static/js/main.eb13fe95.js.map,sha256=5IlqjUt6aijMhC_vzL5G70GR25_dgHWZcPisfveWmsw,4548219
399
+ xinference/web/ui/build/index.html,sha256=J054Qn5sLoQmemY-NjU9PWBw9WqYstwZfHAsSqaaudw,650
400
+ xinference/web/ui/build/static/css/main.632e9148.css,sha256=kAvPreUFdldbBGi1QIU27zXMVz0FeJy9r_44xvcKTng,4285
401
+ xinference/web/ui/build/static/css/main.632e9148.css.map,sha256=NWLzj-DfnQkz2ciD71N1fhP3agE1cAG1_Zi-GRduIPc,8520
402
+ xinference/web/ui/build/static/js/main.9cfafbd6.js,sha256=72b9Vu0dzh_WT50XLN4pNadBijqiVBe_HtnEBAbZcn4,1118249
403
+ xinference/web/ui/build/static/js/main.9cfafbd6.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
404
+ xinference/web/ui/build/static/js/main.9cfafbd6.js.map,sha256=3zWzFpEyqnm9RDj9gC8DflznhwvS68CX15Y0UYOnL2M,4908759
358
405
  xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
359
- xinference/web/ui/node_modules/.package-lock.json,sha256=WiP_oZxr7uJB4aS9uYoecACPrtJtrahbersM1_S3NqQ,756764
406
+ xinference/web/ui/node_modules/.package-lock.json,sha256=_V6n9fLvF1laSHVMZb9Z6wwLvUphwXM7kuMW2TD5FX4,758073
360
407
  xinference/web/ui/node_modules/.cache/babel-loader/00012b59e7dc64a18400bdddb660faa295258241c0b9cd15c78cdba63b858ed8.json,sha256=FhiSQ9MQv6bT7TkLBlXXskoaG2HCKhsuTXXlkDV-pM4,668
361
408
  xinference/web/ui/node_modules/.cache/babel-loader/000791038e4133db461021f1018491323a006cca7a53e09c2ac35032bc36d8b6.json,sha256=bke3WZZjPsJqMKVeHZ7xOSiE8x3fy4fe9nzvylycWOE,1374
362
409
  xinference/web/ui/node_modules/.cache/babel-loader/000b04fb1614a5dc3f850972c0b1e78aaa2fd8745590f01cce053cbb9e272a5f.json,sha256=_lNTM16wSHJj0KrTh3ZZ6C6_tLbRNL8uRchyx4lPE2s,1529
@@ -448,6 +495,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/01d0efe16185a45201232a3b0195c
448
495
  xinference/web/ui/node_modules/.cache/babel-loader/01d11d55e8123666553e77ed73e2be79eab730f930733ce9ae0b6f77d68a24bb.json,sha256=R7L_1xyL7FE-XCcW5a7nrR5rCwUpK4p5Iqk5JyIwA4Y,1214
449
496
  xinference/web/ui/node_modules/.cache/babel-loader/01d29f559aca7ac4f0173fa2fc0109bb25075796bc55344b9ea67de7225bae45.json,sha256=tnzKkXfR7IZAWbG9F3yB4tzTZFDcLGXk9qm7UWJEq9k,1180
450
497
  xinference/web/ui/node_modules/.cache/babel-loader/01d2f7c798017979f45345f233c15de936d699ca0503cba19e1d9a27d8bcbdc5.json,sha256=4jpn23HRCP-SDZ0FNwzkRWAZLefEvrjIGZGZnmJ4ABg,1358
498
+ xinference/web/ui/node_modules/.cache/babel-loader/01d6d198156bacbd436c51435edbd4b2cacd47a79db929105eba30f74b67d48d.json,sha256=nGGo547CKcOY8tu0NbOTESY629aVkJwG_XSBAZTUEtQ,110954
451
499
  xinference/web/ui/node_modules/.cache/babel-loader/01dd081b12a8c7ea283dc0a1c441a06ecbcd46ecd8b906a835b79bd26d91d18f.json,sha256=m_OmC-ml3p88AiK-w8x_jxE-Mx4ZDydBKh8x8GoyBmM,4037
452
500
  xinference/web/ui/node_modules/.cache/babel-loader/01e1206a2e529c33335aedf53a5cfc56961cb20236612fca7223b4d8cb46f9f5.json,sha256=eOcxatBPdGM9rAGyy9cyXZyAPQOsCoEa6Z9LgZBujN4,801
453
501
  xinference/web/ui/node_modules/.cache/babel-loader/01e3beb0d20ce88796ce79b39c732ad1c2e79137981202ca317911211939978d.json,sha256=WYsuMdWmdLV3KkvWDiAgszXPAVHyNVSK8lSlr8xKs9M,1996
@@ -887,7 +935,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/0af4ed4bca091198332466dce20ec
887
935
  xinference/web/ui/node_modules/.cache/babel-loader/0af76ce20a3e1586290fd96a51f63526f2c8ed20f74cd8de61c16654f9569eb9.json,sha256=LiAPN5-xeOy449akIEG8MdZCHTBsvskyL_OLZzoF0Xo,1583
888
936
  xinference/web/ui/node_modules/.cache/babel-loader/0afcc720cb35a14f0b33c205fec3b11fd55cf3399235a1d06cd8cec677395264.json,sha256=Pq53_KvONK7fvnKKJVMMKIzM_5PinBDRpru31etgEyM,1193
889
937
  xinference/web/ui/node_modules/.cache/babel-loader/0afd8b16ac2fcffb5ee738dc6a640efe2104bc4143c96091ad045fc97a49ca09.json,sha256=NN3q2usOfQl-G5G9OCxkjsWC7_lI8ywLjiDdYbZuzfQ,1615
890
- xinference/web/ui/node_modules/.cache/babel-loader/0b11a5339468c13b2d31ac085e7effe4303259b2071abd46a0a8eb8529233a5e.json,sha256=S0PA-IvlNCBUtsRPKH-5SbuO4ERptKQNlMILCSwW2jA,1998
891
938
  xinference/web/ui/node_modules/.cache/babel-loader/0b12be86c1a5e6fa9599fb77c8920e02458ffe49eecc8371d355d3989397632f.json,sha256=vPvii7k-WOe2ORNmC6tQnwE2VFOsAyY5GFoMuE1bWwQ,1875
892
939
  xinference/web/ui/node_modules/.cache/babel-loader/0b28feb35c1940e36c28b18b293e875ca9e41a146ba87dd64c924bd740d6eecf.json,sha256=IZpKnG5j_QMW8fBuPidRMXmZdGbshhm9gVdWPHpeE_4,1167
893
940
  xinference/web/ui/node_modules/.cache/babel-loader/0b2f532cc9009e86e32599b2beca958e35430434392f8a6c4780e7abb0d0bf6e.json,sha256=NAbdjDIHiMC8TeIpxHYugaZ0_sOkAoxYRk8D2nxbclk,6475
@@ -1164,6 +1211,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/10bb2ca3cd674b7163c255f86ae46
1164
1211
  xinference/web/ui/node_modules/.cache/babel-loader/10bc4c19dbc541222ac2aa5526d6a48357e0e6392b662b8dd9d7102dd26354cb.json,sha256=Dnuq-bUzHwoiCs_cVSMbu9ySdRtSG-RdDhWim2ff-sU,15021
1165
1212
  xinference/web/ui/node_modules/.cache/babel-loader/10bccf147040828299cbb62ebd6923c0140ba982a63c0140207bea31928afb98.json,sha256=l0Vzw6Zd0Z19CHj7x-VLwmSLSEE0HmN7yVxeLR5ONzU,2099
1166
1213
  xinference/web/ui/node_modules/.cache/babel-loader/10c0d90df252c8d8a3bed6d66eac9552fdd281fe4e8f3f5b7f31c43070d641d8.json,sha256=4DCrINFVDkI7JCxjoU_eR09QibycSuS11oT10hdkyUU,1703
1214
+ xinference/web/ui/node_modules/.cache/babel-loader/10c69dc7a296779fcffedeff9393d832dfcb0013c36824adf623d3c518b801ff.json,sha256=pDy243dqTLxdktxvtZvgbr0B0ys2nuXRZokpYLkaluM,2253
1167
1215
  xinference/web/ui/node_modules/.cache/babel-loader/10d4387e3d07de38b8043fb5b85dd96bde76ecc473bc10593bb257c3dcfd1e0a.json,sha256=P4iQBloL0JtgrtwHbP56XZ_Eka_LCvAnVA4n5ygnb24,1169
1168
1216
  xinference/web/ui/node_modules/.cache/babel-loader/10dc7661741dfc88df5538bbf835870ae47b1a18f36c2f7b9650651e7304ce72.json,sha256=RL8wNkW7xFiUJDHqfOdwlzMzxEoOmvNuymO62p3PwBA,1892
1169
1217
  xinference/web/ui/node_modules/.cache/babel-loader/10dcd9443f1f97c66fa2d1d8bc95c089a26b764158f5b53a145840e9a293a718.json,sha256=lvhWhZEcGvfRdKK6XsH8inobLEu_9-j8nqSTG_yLIlo,1838
@@ -1986,7 +2034,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/2134190110cdf71394821b79d74c9
1986
2034
  xinference/web/ui/node_modules/.cache/babel-loader/2135271a3422b58bbbb73ea0522c4ad3e85a5d5759eb5a5276c6945210217ba5.json,sha256=ATXIRvW1Bhv11Qf94LRLZOlhmemxehaS3X7AESpQ16Q,3476
1987
2035
  xinference/web/ui/node_modules/.cache/babel-loader/213599cbf80c03eb12b4253070a9ead5056d5e969db67deae77d29840132781d.json,sha256=aiJrmF4NNVwd0UnZy4mDk_JTYOON272_XJ5WInibiBU,1358
1988
2036
  xinference/web/ui/node_modules/.cache/babel-loader/2139e4cd9ab639967af2de06782119c5289f9f929414ff5b7bdcfdee79f63821.json,sha256=Dw4pZWctb75WN-B3HjY9N2zBxYbg2TSt2NppOTJcsAY,1674
1989
- xinference/web/ui/node_modules/.cache/babel-loader/213b5913e164773c2b0567455377765715f5f07225fbac77ad8e1e9dc9648a47.json,sha256=lR42yeGi2x99W893Ueph-olExsVWbQJFDUSdTaamYs4,38167
1990
2037
  xinference/web/ui/node_modules/.cache/babel-loader/21415ee75cee791b86f63613e1f044be20f420a8d8e12447b555811c6b72230a.json,sha256=PZZVDlxodpkrKPvno5RLbfI1QdJP8T8jKzR0zIYho4A,1470
1991
2038
  xinference/web/ui/node_modules/.cache/babel-loader/21443176cb70827bc4ad999f21e75f8336a3da1d46c98a67cd0a4a9318ebfac2.json,sha256=ZkL6mqNA7xbnOIDvM6RWjVGRRsExKM02py9WRy_zbHo,1594
1992
2039
  xinference/web/ui/node_modules/.cache/babel-loader/214a4ca727fe07615a26a71a75e7cc65d4a96935083ab8e887e37a9a546912c7.json,sha256=arjz1T91PFV6GDdtyQDRIJvQerx03hP6fxhV_34BxJA,1300
@@ -4623,6 +4670,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/59d7c51e2656b581ffd10c0affff6
4623
4670
  xinference/web/ui/node_modules/.cache/babel-loader/59df1384033e89d592d1a265f981ffa7aabd25c4d7a1752c87d7c88ef13edc87.json,sha256=vLj2K33jtdS4ACUGUq_mh7N_obtlZ1WDWj7-jQCpv9I,1197
4624
4671
  xinference/web/ui/node_modules/.cache/babel-loader/59e1297d4bf1a3f0bda54890e8877ae45b73be367eeb9e9a189a79d7be2db74c.json,sha256=PInf2mMMdWK6_sZy-kp7Tf1-4ZhmLvy3K-VCcUIHqYo,1128
4625
4672
  xinference/web/ui/node_modules/.cache/babel-loader/59e458616e72c12bd2b88ab2f450de2bd8edf84103a8bb676c38bb1a9cc5f76e.json,sha256=hSYjCXJ1aurlIwrKKBLxErDu0wdIPllXJpPXVHaI4cQ,991
4673
+ xinference/web/ui/node_modules/.cache/babel-loader/59eb25f514afcc4fefd1b309d192b2455f1e0aec68a9de598ca4b2333fe2c774.json,sha256=Ys4zHFTXfrZlIESFRN_UcvfqCXFrENFP998g17C_Gh8,10600
4626
4674
  xinference/web/ui/node_modules/.cache/babel-loader/59ed2ee09c899267f2de5626e98853dafd2c34e7b831036ea466ee6578b62ef1.json,sha256=01z-8ACah8bWyaqNUQFHHeFCeZRZbZ-mUThpq3vfW_w,1377
4627
4675
  xinference/web/ui/node_modules/.cache/babel-loader/59f05b847f267d1c05e43c0a5b7155a9600762e7a2b027c07a40ec13d688deec.json,sha256=OrzkscNc1Y8t332YatE5-AYdtPhWRYRCtkN4eGmW-k8,1426
4628
4676
  xinference/web/ui/node_modules/.cache/babel-loader/59f3a22c87ca60562679025a1aadc66e86d31c3900bdd993d00e85c888f3d1b0.json,sha256=gstd9Xg8d37hAplKFR-e57DYxxxzoHWpqW0k4vQ_KNI,1343
@@ -4722,7 +4770,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/5c0c94a8c5ea216f513701ff66bb7
4722
4770
  xinference/web/ui/node_modules/.cache/babel-loader/5c0fb1d13fcafcaec0933fd52e295a6ee59c67a5f5b5bfce9276693b16613c1e.json,sha256=KP_hG3aOfeEMKc13RwvxFedXKcwhrqy_neaa359gH6g,1074
4723
4771
  xinference/web/ui/node_modules/.cache/babel-loader/5c2307007caf7113727f4d99aed80bfd4c88a7398598b3acc25753471cf03046.json,sha256=iAo5B4KaBge4vDxXgvw2ge5aiRsVJXut41j9rDjCvrk,1161
4724
4772
  xinference/web/ui/node_modules/.cache/babel-loader/5c264df2d9ef4d1f7255f086ec2b82131348a08206f1c2bf85ea7380095668b3.json,sha256=iAZ-LuGid160MbDFZda46Iz1kneDvFeCSPtQAISkeek,17078
4725
- xinference/web/ui/node_modules/.cache/babel-loader/5c26a23b5eacf5b752a08531577ae3840bb247745ef9a39583dc2d05ba93a82a.json,sha256=5IH9YntoMuqLSXENJrsTwezn9Rq_f40ssO8_tQawL1Y,98489
4726
4773
  xinference/web/ui/node_modules/.cache/babel-loader/5c2e7b8a81f8cdf0245cad55e5f24161dc6d2d9d87958929efaee83dd644a168.json,sha256=qWL5C4IuWph15wKW1FEUPVQt0n_hMdJCi8Ygaq8RuqI,1267
4727
4774
  xinference/web/ui/node_modules/.cache/babel-loader/5c46789931671a7a2a50792a769f5f5c8de4a3f29c0200dd44dbd5b3d5c138e5.json,sha256=ySjnyhdVM4wi1PVFKpad94Y3ls5FtSZAZClAmo6x_tA,1435
4728
4775
  xinference/web/ui/node_modules/.cache/babel-loader/5c4736ce0f6849573877bc016e6a4f9a3b98cc8e6382a37c730dd23be8edd585.json,sha256=qDV60Gy_nJuLDkXMebGQ-cJkWM6idVnT-lhWpbfNpk8,1177
@@ -5319,6 +5366,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/68a54642bd6509a081364775600c1
5319
5366
  xinference/web/ui/node_modules/.cache/babel-loader/68ac7bbbe5bfd57746b0e7a2425474a5932318eb594d9f82ca01641072132dce.json,sha256=i8qilyyqBQdQITKr0s-JzoxBxUC3veVQG-idYcxYoRg,1563
5320
5367
  xinference/web/ui/node_modules/.cache/babel-loader/68b10b0f8d3801a3cee5e30b0cf812217904541746d52fc289b485eafedec263.json,sha256=hg9Nw3byqJOmfseskWXccnedp7Oq2rExDmZJmmU2ed8,1197
5321
5368
  xinference/web/ui/node_modules/.cache/babel-loader/68b75a38655e5d78ebb9603d2710f8d47d71496118000fbb134c95b31188e4e7.json,sha256=g_SGCCOMZJTR4tLP7Tk47TaWTZY6GMCLXmwdQrkSoKE,3092
5369
+ xinference/web/ui/node_modules/.cache/babel-loader/68bede6d95bb5ef0b35bbb3ec5b8c937eaf6862c6cdbddb5ef222a7776aaf336.json,sha256=ciyFFTIqh0mUtRXbx_3WXfa64o2X6wDXBl0AURGbXwE,38373
5322
5370
  xinference/web/ui/node_modules/.cache/babel-loader/68bf1a17f0a20977a34769785b286faa0d532328ec4a026cd6bd9274cc1342fc.json,sha256=Yd8sVkmcPtjbe44F_kswqLjPABupu-LNVCmPPcxXVrE,1290
5323
5371
  xinference/web/ui/node_modules/.cache/babel-loader/68c0f04071e3e041aa7111308d8daf22c13e9d7997ab3ca54844dd1c4a3050bc.json,sha256=HZuQcSdr62dsb9-zpTiWrgy9dhr9Gluybv-_YkWM4xQ,981
5324
5372
  xinference/web/ui/node_modules/.cache/babel-loader/68c5e9fbb63fa86be575623f325bfbf334f688df6efd555b82ef2c960c138cab.json,sha256=YNQPeiSfXbAAWuLEWqxT3EOfgRlzrH6bRw5Ab_2MUeI,1142
@@ -6022,6 +6070,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/77c7f0ca7038cf72e2bdcfa59d54c
6022
6070
  xinference/web/ui/node_modules/.cache/babel-loader/77c857d7321eb7c9abd76c65969e9264aa57359178906039c323471a40dd37bc.json,sha256=GuEFmvPIpUixVrkQUzpcaSBNjvbQNwrHA2Nu9CsYhwo,1717
6023
6071
  xinference/web/ui/node_modules/.cache/babel-loader/77c9b46084c699d598a19005df285fc5ff8966ab2448ed1edeed7b129f3a9f53.json,sha256=5S7J3ITp6gw-Hm-qWn80fbHOjWVy66a8iaq_z3eUEGk,2337
6024
6072
  xinference/web/ui/node_modules/.cache/babel-loader/77d0ee70e78db503afcdeea5d871cacc8efb030c362c46002079abf7904236e4.json,sha256=smCvGlWAJ37Gaiosvou4CB_E0EbBLIfTrXlKFVPmKyk,1746
6073
+ xinference/web/ui/node_modules/.cache/babel-loader/77d50223f3e734d4485cca538cb098a8c3a7a0a1a9f01f58cdda3af42fe1adf5.json,sha256=FGpnxRq0H5-0zQd6vN8xZks62EVLfIuykjmhFjMXGUM,703199
6025
6074
  xinference/web/ui/node_modules/.cache/babel-loader/77e849e9a3ab2abd01dfce5de997af4bda7f3b69c5d21b4f63f528114c2dc88e.json,sha256=uFfRi50jbzSR8v2FMaSiKkqPxLXDwni5E-V-_Fp0HJ0,2343
6026
6075
  xinference/web/ui/node_modules/.cache/babel-loader/77fcab23c5c35e143f1c33213d29797f108ae588c93d72241b3e9a7eab33ccc6.json,sha256=NPjg0_5oTzlbX8uIJrKrRgsohLYMPuqRUCSl6M6XbEc,971
6027
6076
  xinference/web/ui/node_modules/.cache/babel-loader/780bce27cadc69abd2145c26db57703529a7842e31da4e9de87e773192deb390.json,sha256=TCmEEDa5aQfnwJldnqbJUMdvCD8Vh4fk6O9EPimkHCU,1942
@@ -7591,7 +7640,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/976b00aea099053fa3def71d0c1ae
7591
7640
  xinference/web/ui/node_modules/.cache/babel-loader/9778428b3001a4f5b3e1b879d5e7ad9da03f934aaa2e0514f8a7e2f289bb6233.json,sha256=hZBcAN8cI-Glida1s4vz3-OT4ZfpvXp2bGkSJExkIYo,1703
7592
7641
  xinference/web/ui/node_modules/.cache/babel-loader/977c629e83c6cc2b921e834e3123c489c55587a146d5e024994cf73acb04d166.json,sha256=HiqCyAQxad3-yBoYsjWyspmP0Sbhoz8bNgQ_XasAV_k,1295
7593
7642
  xinference/web/ui/node_modules/.cache/babel-loader/9787c77f71841a2b5dfcd43487a24584616e7dc6ac75eded5a2809abead1f347.json,sha256=kCTaPNyJ1Tr7b7aV2HLxXNcUnLhS9W72YA0aKCztvjY,1212
7594
- xinference/web/ui/node_modules/.cache/babel-loader/978b57d1a04a701bc3fcfebc511f5f274eed6ed7eade67f6fb76c27d5fd9ecc8.json,sha256=XYQi3I5erkTr3p8K0djX77kUEo5gOcgcyXi5XG77aFw,14704
7595
7643
  xinference/web/ui/node_modules/.cache/babel-loader/979af993386f6e8af8ea16be73ab8d4083aef8eda684e21ee1df263ad024981b.json,sha256=1VD8AalJEA7k_keCuqkCV4Z6shpxbCB2Cn5cUga-oqY,1126
7596
7644
  xinference/web/ui/node_modules/.cache/babel-loader/979e397d9fba3a2136493926f6058e95f2b965fb9f5a3b415124b61019262187.json,sha256=6R9IcVK4xB-_MJmEXQ-64fiTrsn936A2Zl5Xe_GU3oI,3889
7597
7645
  xinference/web/ui/node_modules/.cache/babel-loader/979e488ecb67250f6f322e1f2cfc17987c2d0a07bdd747d1dad9b674cf1c6519.json,sha256=7cqAJ2feqiIw5Irg9AmMkcDY0PLLuhBk-yjwglE3xos,1483
@@ -8253,6 +8301,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/a555289d29d89d4a3305399cda25c
8253
8301
  xinference/web/ui/node_modules/.cache/babel-loader/a55ac753f37a5df5441013ab6870df43e355c66af25a36b6e5d4db0d05e264b1.json,sha256=pXDPnCDBpZ6VlUuzEebNQ_uGXwo1rTLgReeJ9h5vQ_8,2293
8254
8302
  xinference/web/ui/node_modules/.cache/babel-loader/a5633d866ea3f6e91b7ef660810b7a80680cb0e1ab79276caadbf2fa58a59d70.json,sha256=cdQqs9J7F_K2DFCEOzDfdT3lNSdJ7VDCIH5XTU4AA4c,1476
8255
8303
  xinference/web/ui/node_modules/.cache/babel-loader/a56d21207b16ff98e4934ce188ee2a60ed68c60df35b69d9af9c64a5f5ae87a0.json,sha256=mDtGchpAOH-CwIbME5K84plcTs0D_GTbSiiG5Ugs_R0,1080
8304
+ xinference/web/ui/node_modules/.cache/babel-loader/a56d5a642409a84988891089c98ca28ad0546432dfbae8aaa51bc5a280e1cdd2.json,sha256=fAJht6_62-9hjahDSzOMaaxs_b9H4Yrql9lLzp3lVEM,2151
8256
8305
  xinference/web/ui/node_modules/.cache/babel-loader/a572a40cfaa528000c8ba9620f6ccf98dbfc43eefe45c5003f68ec7d5907327b.json,sha256=punKcPVfeScTQmNlefudyEBorv0XQZANFh0du-SO3-M,2012
8257
8306
  xinference/web/ui/node_modules/.cache/babel-loader/a576d7d10efd46bff8ea246b707bf56da193ff14262bf97d81530043621ad7ab.json,sha256=3uUL2KQZSOpNF51EGCE85jbIMPEyCl-iDPBBk_5O_bc,2125
8258
8307
  xinference/web/ui/node_modules/.cache/babel-loader/a578606a94fd0c61bc243695c736eea125452e43e0abf3d5a5fb7e0d6382eba6.json,sha256=8cLpDpfEumYughBamUuf6eIa4nNWgchKoJgGQNjsZbI,1256
@@ -10730,6 +10779,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/d9ec1b8e0b0c0a8dfa7c36b211d76
10730
10779
  xinference/web/ui/node_modules/.cache/babel-loader/d9f05556f6a34b25444654fbfe4848b03c210df55f46436dd319dcdc8eaf2361.json,sha256=s4JKZPh91gk5D8k-VKCvHLAqL1UZ7XiGILQ4o2FOl7M,1330
10731
10780
  xinference/web/ui/node_modules/.cache/babel-loader/d9f5224556e236ac29cea029655445c66d64b41cdb7e53cf9174c1fa5ff9a44d.json,sha256=yxGJ9coX7_92Q0U630DOxEPRWuwgAs812UyJPPBUMPQ,2025
10732
10781
  xinference/web/ui/node_modules/.cache/babel-loader/d9fbcf20e6dce614fadb2511cee62eabe07123482ea8d3efc93ef457e3abde11.json,sha256=EAKNkp66K8cXcNE0EeSvFZV0_lQSOV6_q_5Lw1JBinM,1387
10782
+ xinference/web/ui/node_modules/.cache/babel-loader/d9ff696a3e3471f01b46c63d18af32e491eb5dc0e43cb30202c96871466df57f.json,sha256=DeKlAOi1A3FoQQaj4k_9yNdDyeAajIvncABG0YsZ-sc,2024
10733
10783
  xinference/web/ui/node_modules/.cache/babel-loader/d9ffee132bf165b256ca6fd7ac4e0e9fbfa2308a42e27a6a97c6867d66ab5aa9.json,sha256=emfJFnyQ2EBEZm3utDVQd_meCbxUG-GSB2lbxhu-O7c,1219
10734
10784
  xinference/web/ui/node_modules/.cache/babel-loader/da0094ac906f975df905429d43ded149a47732f63464ac23132e030283d71422.json,sha256=iZLRzqOPgf08_xqYSxtBKL3X6DuUREXCvZh8T61ZEAc,1603
10735
10785
  xinference/web/ui/node_modules/.cache/babel-loader/da069f2efa1f5c065f5060573c58d408a0a392aa2aebfc853edac456890def23.json,sha256=2REZRZqgI6y1gQZA-Le8FYnQMkHDNOUd7w5vUQ-7dwc,1446
@@ -12057,6 +12107,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/f4f343b04d11666f98f14a31e2a1b
12057
12107
  xinference/web/ui/node_modules/.cache/babel-loader/f4fc407c14fb0e71fec7f6993086752a43887f8a7bf7e7989846e60904b5e1c2.json,sha256=KoWp9emzLVKyh0AdeWCqgtAJctr1TxkTLoix6JNxfEA,1363
12058
12108
  xinference/web/ui/node_modules/.cache/babel-loader/f4fdaad59db5ed92a1c678affaf34b036740b5345d0cc696ae81c8fe5c60949b.json,sha256=4pk4GFrSiEVlWRwOTUA1oyQvYxdMsbykunwN3y4Qok4,1394
12059
12109
  xinference/web/ui/node_modules/.cache/babel-loader/f501fca5d4064783cb26d01e00f3b8c97e23781c59b9018a810f7cbdb8b203a4.json,sha256=cw5LNX7lTybhK8nAqz95Ju9h4YRBLulpA8zvrwJsK5g,1598
12110
+ xinference/web/ui/node_modules/.cache/babel-loader/f5039ddbeb815c51491a1989532006b96fc3ae49c6c60e3c097f875b4ae915ae.json,sha256=XfXnMNV-QdWUJboPH_CLcTEfwJCynkJwW6k6IwX0CA8,14626
12060
12111
  xinference/web/ui/node_modules/.cache/babel-loader/f5166236bc3e182f8bfd009c91200dba9d7cf96c0002eb83fe4ffc17586dd531.json,sha256=ieblslAPgYaHbU-Yi_nRmNDm9xgdkmRa6ehWwiswOjA,1043
12061
12112
  xinference/web/ui/node_modules/.cache/babel-loader/f519c4de4494e4cbfec0261d864c14d67d3dd97f937ad42f4e856c9ade0cd097.json,sha256=OVVaC1LtZacvN21gLcZmeeconK68h2bL3bDn78JGYK8,1829
12062
12113
  xinference/web/ui/node_modules/.cache/babel-loader/f51a6ad07f134e87af4ca8cb2a95b8f21048ad48380d369f001ce87fd97886c6.json,sha256=SgcKRCCbTPp0TgoAbxPTIMyqp3Z6dJb33VeE5Ff2K6I,1254
@@ -13410,6 +13461,7 @@ xinference/web/ui/node_modules/@webassemblyjs/wasm-parser/package.json,sha256=lm
13410
13461
  xinference/web/ui/node_modules/@webassemblyjs/wast-printer/package.json,sha256=4nRkIQ6oFwpcCrh-8OaQlTWlhzZLtM-M_wcnivrKrVw,730
13411
13462
  xinference/web/ui/node_modules/@xtuc/ieee754/package.json,sha256=oeMKBfXDKGTXyOPieh9TKw5fPr79DT2iSCs2mis4im8,1178
13412
13463
  xinference/web/ui/node_modules/@xtuc/long/package.json,sha256=fH9JzXzn_KeHyY_LnOOGgrxiSha1qEehrcUvcT2dvOY,846
13464
+ xinference/web/ui/node_modules/a-sync-waterfall/package.json,sha256=VjI90VUfsOZjNOQ6agFw6ygQ8kVRaS80ZBCho3vgYro,629
13413
13465
  xinference/web/ui/node_modules/abab/package.json,sha256=TtCLzWMTEb4dZ_-1-z_cLX2VexmaQHiewxWc7hG7OpQ,989
13414
13466
  xinference/web/ui/node_modules/accepts/package.json,sha256=5XFtXZOdsIxcKOxq6G7We-UyD5EIniZz_KHFuHbleqM,1157
13415
13467
  xinference/web/ui/node_modules/acorn/package.json,sha256=8txHnHp0xuh9HNQim9PwqDnPIud23jSCcxOKwybmaWE,1059
@@ -14607,6 +14659,8 @@ xinference/web/ui/node_modules/normalize-url/package.json,sha256=DY2NIvCHKp0p98X
14607
14659
  xinference/web/ui/node_modules/npm-run-path/package.json,sha256=ZFiauqOFXj76BkbpIKbbtYqaWgKMYMPYRA-naC18J-c,712
14608
14660
  xinference/web/ui/node_modules/nth-check/package.json,sha256=Tm2PSjqBcMAxRl550wo_R8l-EVlE1tZW3QhwhrLaBPE,2455
14609
14661
  xinference/web/ui/node_modules/nth-check/lib/esm/package.json,sha256=EjnU2IXcrUIgGiftkyT48Pdgt4cA2Nuc7TmlEc_-fq4,18
14662
+ xinference/web/ui/node_modules/nunjucks/package.json,sha256=QvRbFuEav2DeBPPtTy7YhWOsOBsc4cZULrBjJg93bKo,3138
14663
+ xinference/web/ui/node_modules/nunjucks/node_modules/commander/package.json,sha256=_IA4VbdYTqhkTN5BtGGe-vqpNacvywkXzlpTJRlVbwM,1132
14610
14664
  xinference/web/ui/node_modules/nwsapi/package.json,sha256=qJboSOm_4sSr-VVMxz_SjWKT0ZxoRpTcuUmt6FCSe6k,877
14611
14665
  xinference/web/ui/node_modules/object-assign/package.json,sha256=WZC7_6I1_Gdd69kl1Q9sP0iitFJtjJ91VcreyQKdDX8,764
14612
14666
  xinference/web/ui/node_modules/object-hash/package.json,sha256=-Gs6ihgHj7v3HqHPRGgSnmCVZvhgudk_mfY9wlQ5Yus,1271
@@ -15454,9 +15508,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
15454
15508
  xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
15455
15509
  xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
15456
15510
  xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
15457
- xinference-0.14.4.post1.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15458
- xinference-0.14.4.post1.dist-info/METADATA,sha256=NGJbWc4QbGVktWm0Qgvv9vka0Eun_lf0GUAdCyXb1tI,18763
15459
- xinference-0.14.4.post1.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
15460
- xinference-0.14.4.post1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15461
- xinference-0.14.4.post1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15462
- xinference-0.14.4.post1.dist-info/RECORD,,
15511
+ xinference-0.15.0.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15512
+ xinference-0.15.0.dist-info/METADATA,sha256=uQs5S_HFq7LC3eJBkaAbXj9dcJbM_gQcKSF3pfXE1pM,18757
15513
+ xinference-0.15.0.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
15514
+ xinference-0.15.0.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15515
+ xinference-0.15.0.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15516
+ xinference-0.15.0.dist-info/RECORD,,