xinference 1.1.0__py3-none-any.whl → 1.2.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 (210) hide show
  1. xinference/_compat.py +2 -0
  2. xinference/_version.py +3 -3
  3. xinference/api/restful_api.py +72 -66
  4. xinference/core/model.py +78 -25
  5. xinference/core/supervisor.py +81 -10
  6. xinference/core/utils.py +12 -8
  7. xinference/core/worker.py +32 -0
  8. xinference/model/audio/core.py +5 -0
  9. xinference/model/audio/cosyvoice.py +25 -3
  10. xinference/model/audio/f5tts.py +15 -10
  11. xinference/model/audio/f5tts_mlx.py +260 -0
  12. xinference/model/audio/fish_speech.py +35 -111
  13. xinference/model/audio/model_spec.json +19 -3
  14. xinference/model/audio/model_spec_modelscope.json +9 -0
  15. xinference/model/audio/utils.py +32 -0
  16. xinference/model/image/core.py +69 -1
  17. xinference/model/image/model_spec.json +145 -4
  18. xinference/model/image/model_spec_modelscope.json +150 -4
  19. xinference/model/image/stable_diffusion/core.py +45 -13
  20. xinference/model/llm/__init__.py +2 -0
  21. xinference/model/llm/llm_family.json +143 -0
  22. xinference/model/llm/llm_family.py +15 -36
  23. xinference/model/llm/llm_family_modelscope.json +148 -0
  24. xinference/model/llm/mlx/core.py +37 -32
  25. xinference/model/llm/transformers/cogagent.py +272 -0
  26. xinference/model/llm/transformers/core.py +2 -0
  27. xinference/model/llm/transformers/qwen2_vl.py +12 -1
  28. xinference/model/llm/utils.py +28 -3
  29. xinference/model/llm/vllm/core.py +48 -9
  30. xinference/model/llm/vllm/xavier/__init__.py +13 -0
  31. xinference/model/llm/vllm/xavier/allocator.py +74 -0
  32. xinference/model/llm/vllm/xavier/block.py +112 -0
  33. xinference/model/llm/vllm/xavier/block_manager.py +71 -0
  34. xinference/model/llm/vllm/xavier/block_tracker.py +116 -0
  35. xinference/model/llm/vllm/xavier/engine.py +247 -0
  36. xinference/model/llm/vllm/xavier/executor.py +132 -0
  37. xinference/model/llm/vllm/xavier/scheduler.py +422 -0
  38. xinference/model/llm/vllm/xavier/test/__init__.py +13 -0
  39. xinference/model/llm/vllm/xavier/test/test_xavier.py +122 -0
  40. xinference/model/llm/vllm/xavier/transfer.py +298 -0
  41. xinference/model/video/diffusers.py +14 -0
  42. xinference/model/video/model_spec.json +15 -0
  43. xinference/model/video/model_spec_modelscope.json +16 -0
  44. xinference/thirdparty/cosyvoice/bin/average_model.py +92 -0
  45. xinference/thirdparty/cosyvoice/bin/export_jit.py +12 -2
  46. xinference/thirdparty/cosyvoice/bin/export_onnx.py +112 -0
  47. xinference/thirdparty/cosyvoice/bin/export_trt.sh +9 -0
  48. xinference/thirdparty/cosyvoice/bin/inference.py +5 -7
  49. xinference/thirdparty/cosyvoice/bin/train.py +42 -8
  50. xinference/thirdparty/cosyvoice/cli/cosyvoice.py +96 -25
  51. xinference/thirdparty/cosyvoice/cli/frontend.py +77 -30
  52. xinference/thirdparty/cosyvoice/cli/model.py +330 -80
  53. xinference/thirdparty/cosyvoice/dataset/dataset.py +6 -2
  54. xinference/thirdparty/cosyvoice/dataset/processor.py +76 -14
  55. xinference/thirdparty/cosyvoice/flow/decoder.py +92 -13
  56. xinference/thirdparty/cosyvoice/flow/flow.py +99 -9
  57. xinference/thirdparty/cosyvoice/flow/flow_matching.py +110 -13
  58. xinference/thirdparty/cosyvoice/flow/length_regulator.py +5 -4
  59. xinference/thirdparty/cosyvoice/hifigan/discriminator.py +140 -0
  60. xinference/thirdparty/cosyvoice/hifigan/generator.py +58 -42
  61. xinference/thirdparty/cosyvoice/hifigan/hifigan.py +67 -0
  62. xinference/thirdparty/cosyvoice/llm/llm.py +139 -6
  63. xinference/thirdparty/cosyvoice/tokenizer/assets/multilingual_zh_ja_yue_char_del.tiktoken +58836 -0
  64. xinference/thirdparty/cosyvoice/tokenizer/tokenizer.py +279 -0
  65. xinference/thirdparty/cosyvoice/transformer/embedding.py +2 -2
  66. xinference/thirdparty/cosyvoice/transformer/encoder_layer.py +7 -7
  67. xinference/thirdparty/cosyvoice/transformer/upsample_encoder.py +318 -0
  68. xinference/thirdparty/cosyvoice/utils/common.py +28 -1
  69. xinference/thirdparty/cosyvoice/utils/executor.py +69 -7
  70. xinference/thirdparty/cosyvoice/utils/file_utils.py +2 -12
  71. xinference/thirdparty/cosyvoice/utils/frontend_utils.py +9 -5
  72. xinference/thirdparty/cosyvoice/utils/losses.py +20 -0
  73. xinference/thirdparty/cosyvoice/utils/scheduler.py +1 -2
  74. xinference/thirdparty/cosyvoice/utils/train_utils.py +101 -45
  75. xinference/thirdparty/fish_speech/fish_speech/conversation.py +94 -83
  76. xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py +63 -20
  77. xinference/thirdparty/fish_speech/fish_speech/text/clean.py +1 -26
  78. xinference/thirdparty/fish_speech/fish_speech/text/spliter.py +1 -1
  79. xinference/thirdparty/fish_speech/fish_speech/tokenizer.py +152 -0
  80. xinference/thirdparty/fish_speech/fish_speech/train.py +2 -2
  81. xinference/thirdparty/fish_speech/fish_speech/webui/manage.py +1 -1
  82. xinference/thirdparty/fish_speech/tools/{post_api.py → api_client.py} +7 -13
  83. xinference/thirdparty/fish_speech/tools/api_server.py +98 -0
  84. xinference/thirdparty/fish_speech/tools/download_models.py +5 -5
  85. xinference/thirdparty/fish_speech/tools/fish_e2e.py +2 -2
  86. xinference/thirdparty/fish_speech/tools/inference_engine/__init__.py +192 -0
  87. xinference/thirdparty/fish_speech/tools/inference_engine/reference_loader.py +125 -0
  88. xinference/thirdparty/fish_speech/tools/inference_engine/utils.py +39 -0
  89. xinference/thirdparty/fish_speech/tools/inference_engine/vq_manager.py +57 -0
  90. xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py +2 -2
  91. xinference/thirdparty/fish_speech/tools/llama/generate.py +117 -89
  92. xinference/thirdparty/fish_speech/tools/run_webui.py +104 -0
  93. xinference/thirdparty/fish_speech/tools/schema.py +11 -28
  94. xinference/thirdparty/fish_speech/tools/server/agent/__init__.py +57 -0
  95. xinference/thirdparty/fish_speech/tools/server/agent/generate.py +119 -0
  96. xinference/thirdparty/fish_speech/tools/server/agent/generation_utils.py +122 -0
  97. xinference/thirdparty/fish_speech/tools/server/agent/pre_generation_utils.py +72 -0
  98. xinference/thirdparty/fish_speech/tools/server/api_utils.py +75 -0
  99. xinference/thirdparty/fish_speech/tools/server/exception_handler.py +27 -0
  100. xinference/thirdparty/fish_speech/tools/server/inference.py +45 -0
  101. xinference/thirdparty/fish_speech/tools/server/model_manager.py +122 -0
  102. xinference/thirdparty/fish_speech/tools/server/model_utils.py +129 -0
  103. xinference/thirdparty/fish_speech/tools/server/views.py +246 -0
  104. xinference/thirdparty/fish_speech/tools/webui/__init__.py +173 -0
  105. xinference/thirdparty/fish_speech/tools/webui/inference.py +91 -0
  106. xinference/thirdparty/fish_speech/tools/webui/variables.py +14 -0
  107. xinference/thirdparty/matcha/utils/utils.py +2 -2
  108. xinference/types.py +13 -0
  109. xinference/web/ui/build/asset-manifest.json +6 -6
  110. xinference/web/ui/build/index.html +1 -1
  111. xinference/web/ui/build/static/css/main.51a587ff.css +2 -0
  112. xinference/web/ui/build/static/css/main.51a587ff.css.map +1 -0
  113. xinference/web/ui/build/static/js/main.1eb206d1.js +3 -0
  114. xinference/web/ui/build/static/js/main.1eb206d1.js.map +1 -0
  115. xinference/web/ui/node_modules/.cache/babel-loader/03c4052f1b91f6ba0c5389bdcf49c43319b4076c08e4b8585dab312538ae290a.json +1 -0
  116. xinference/web/ui/node_modules/.cache/babel-loader/1786b83003b8e9605a0f5f855a185d4d16e38fc893dfb326a2a9cca206b4240a.json +1 -0
  117. xinference/web/ui/node_modules/.cache/babel-loader/17cbc181dd674b9150b80c73ed6a82656de0082d857f6e5f66d9716129ac0b38.json +1 -0
  118. xinference/web/ui/node_modules/.cache/babel-loader/185ceb8872d562e032b47e79df6a45670e06345b8ed70aad1a131e0476783c5c.json +1 -0
  119. xinference/web/ui/node_modules/.cache/babel-loader/2213d49de260e1f67c888081b18f120f5225462b829ae57c9e05a05cec83689d.json +1 -0
  120. xinference/web/ui/node_modules/.cache/babel-loader/26b8c9f34b0bed789b3a833767672e39302d1e0c09b4276f4d58d1df7b6bd93b.json +1 -0
  121. xinference/web/ui/node_modules/.cache/babel-loader/2b484da66c724d0d56a40849c109327408796a668b1381511b6e9e03baa48658.json +1 -0
  122. xinference/web/ui/node_modules/.cache/babel-loader/2cbbbce9b84df73330d4c42b82436ed881b3847628f2fbc346aa62e2859fd88c.json +1 -0
  123. xinference/web/ui/node_modules/.cache/babel-loader/2ec9b14431ed33ce6901bf9f27007be4e6e472709c99d6e22b50ce528e4b78ee.json +1 -0
  124. xinference/web/ui/node_modules/.cache/babel-loader/3b966db018f96be4a055d6ca205f0990d4d0b370e2980c17d8bca2c9a021819c.json +1 -0
  125. xinference/web/ui/node_modules/.cache/babel-loader/3eefb411b24c2b3ce053570ef50daccf154022f0e168be5ed0fec21394baf9f4.json +1 -0
  126. xinference/web/ui/node_modules/.cache/babel-loader/522b229e3cac219123f0d69673f5570e191c2d2a505dc65b312d336eae2279c0.json +1 -0
  127. xinference/web/ui/node_modules/.cache/babel-loader/52e45f17ba300580ea3fcc9f9228ccba194bb092b76f25e9255af311f8b05aab.json +1 -0
  128. xinference/web/ui/node_modules/.cache/babel-loader/5a0bc4631f936459afc1a3b1d3ec2420118b1f00e11f60ccac3e08088f3f27a8.json +1 -0
  129. xinference/web/ui/node_modules/.cache/babel-loader/611fa2c6c53b66039991d06dfb0473b5ab37fc63b4564e0f6e1718523768a045.json +1 -0
  130. xinference/web/ui/node_modules/.cache/babel-loader/6329bc76c406fe5eb305412383fbde5950f847bb5e43261f73f37622c365acb4.json +1 -0
  131. xinference/web/ui/node_modules/.cache/babel-loader/63c8e07687ea53a4f8a910ee5e42e0eb26cd1acbfbe820f3e3248a786ee51401.json +1 -0
  132. xinference/web/ui/node_modules/.cache/babel-loader/69b2d5001684174ec9da57e07914eed3eac4960018bceb6cbfa801d861301d7c.json +1 -0
  133. xinference/web/ui/node_modules/.cache/babel-loader/710c1acda69e561e30a933b98c6a56d50197868b15c21e2aad55ab6d46649eb6.json +1 -0
  134. xinference/web/ui/node_modules/.cache/babel-loader/720deca1fce5a1dc5056048fa8258fd138a82ea855f350b6613f104a73fb761f.json +1 -0
  135. xinference/web/ui/node_modules/.cache/babel-loader/76a23b92d26a499c57e61eea2b895fbc9771bd0849a72e66f8e633192017978b.json +1 -0
  136. xinference/web/ui/node_modules/.cache/babel-loader/858063f23b34dfe600254eb5afd85518b0002ec4b30b7386616c45600826e3b2.json +1 -0
  137. xinference/web/ui/node_modules/.cache/babel-loader/920b82c1c89124cf217109eeedbfcd3aae3b917be50c9dfb6bbb4ce26bdfd2e7.json +1 -0
  138. xinference/web/ui/node_modules/.cache/babel-loader/94d8b7aeb0076f2ce07db598cea0e87b13bc8d5614eb530b8d6e696c2daf6f88.json +1 -0
  139. xinference/web/ui/node_modules/.cache/babel-loader/9e917fe7022d01b2ccbe5cc0ce73d70bb72bee584ff293bad71bdff6695dee28.json +1 -0
  140. xinference/web/ui/node_modules/.cache/babel-loader/9f28fdb8399f1d0474f0aca86f1658dc94f5bf0c90f6146352de150692de8862.json +1 -0
  141. xinference/web/ui/node_modules/.cache/babel-loader/a0dfafa06b2bb7cba8cad41c482503f61944f759f4318139362602ef5cc47ccb.json +1 -0
  142. xinference/web/ui/node_modules/.cache/babel-loader/afb8084f539534cd594755ea2205ecd5bd1f62dddcfdf75a2eace59a28131278.json +1 -0
  143. xinference/web/ui/node_modules/.cache/babel-loader/b57b1438b77294c1f3f6cfce12ac487d8106c6f016975ba0aec94d98997e2e1e.json +1 -0
  144. xinference/web/ui/node_modules/.cache/babel-loader/b9917b0bf8e4d55ccbac1c334aa04d6ff3c5b6ed9e5d38b9ea2c687fa7d3f5a9.json +1 -0
  145. xinference/web/ui/node_modules/.cache/babel-loader/bbcc94b0149963d1d6f267ee1f4f03d3925b758392ce2f516c3fe8af0e0169fc.json +1 -0
  146. xinference/web/ui/node_modules/.cache/babel-loader/bdee44abeadc4abc17d41c52eb49c6e19a4b1a267b6e16876ce91bdeeebfc52d.json +1 -0
  147. xinference/web/ui/node_modules/.cache/babel-loader/beb112b70f4a56db95920a9e20efb6c97c37b68450716730217a9ee1a9ae92be.json +1 -0
  148. xinference/web/ui/node_modules/.cache/babel-loader/c88db97be0cdf440193b3995996e83510a04cb00048135485fc0e26d197e80b5.json +1 -0
  149. xinference/web/ui/node_modules/.cache/babel-loader/d49e5314d34310a62d01a03067ce1bec5da00abce84c5196aa9c6842fa79a430.json +1 -0
  150. xinference/web/ui/node_modules/.cache/babel-loader/d7664d18c4ddbad9c3a6a31b91f7c00fb0dde804608674a9860ee50f33e54708.json +1 -0
  151. xinference/web/ui/node_modules/.cache/babel-loader/d9072c318b819b7c90a0f7e9cc0b6413b4dbeb8e9859898e53d75ea882fcde99.json +1 -0
  152. xinference/web/ui/node_modules/.cache/babel-loader/db16a983bc08a05f0439cc61ca0840e49e1d8400eef678909f16c032a418a3d6.json +1 -0
  153. xinference/web/ui/node_modules/.cache/babel-loader/dc249829767b8abcbc3677e0b07b6d3ecbfdfe6d08cfe23a665eb33373a9aa9d.json +1 -0
  154. xinference/web/ui/node_modules/.cache/babel-loader/e242c583c2dbc2784f0fcf513523975f7d5df447e106c1c17e49e8578a6fc3ed.json +1 -0
  155. xinference/web/ui/node_modules/.cache/babel-loader/eac5f1296513e69e4b96f750ddccd4d0264e2bae4e4c449144e83274a48698d9.json +1 -0
  156. xinference/web/ui/node_modules/.cache/babel-loader/ed57202cb79649bb716400436590245547df241988fc7c8e1d85d132299542d2.json +1 -0
  157. xinference/web/ui/node_modules/.cache/babel-loader/f125bf72e773a14cdaebd0c343e80adb909d12e317ee5c00cd4a57442fbe2c62.json +1 -0
  158. xinference/web/ui/node_modules/.cache/babel-loader/f91af913d7f91c410719ab13136aaed3aaf0f8dda06652f25c42cb5231587398.json +1 -0
  159. xinference/web/ui/node_modules/.package-lock.json +67 -3
  160. xinference/web/ui/node_modules/@babel/runtime/package.json +592 -538
  161. xinference/web/ui/node_modules/html-parse-stringify/package.json +50 -0
  162. xinference/web/ui/node_modules/i18next/dist/esm/package.json +1 -0
  163. xinference/web/ui/node_modules/i18next/package.json +129 -0
  164. xinference/web/ui/node_modules/react-i18next/.eslintrc.json +74 -0
  165. xinference/web/ui/node_modules/react-i18next/dist/es/package.json +1 -0
  166. xinference/web/ui/node_modules/react-i18next/package.json +162 -0
  167. xinference/web/ui/node_modules/void-elements/package.json +34 -0
  168. xinference/web/ui/package-lock.json +69 -3
  169. xinference/web/ui/package.json +2 -0
  170. xinference/web/ui/src/locales/en.json +186 -0
  171. xinference/web/ui/src/locales/zh.json +186 -0
  172. {xinference-1.1.0.dist-info → xinference-1.2.0.dist-info}/METADATA +19 -11
  173. {xinference-1.1.0.dist-info → xinference-1.2.0.dist-info}/RECORD +178 -111
  174. xinference/thirdparty/cosyvoice/bin/__init__.py +0 -0
  175. xinference/thirdparty/cosyvoice/bin/export_trt.py +0 -8
  176. xinference/thirdparty/cosyvoice/flow/__init__.py +0 -0
  177. xinference/thirdparty/cosyvoice/hifigan/__init__.py +0 -0
  178. xinference/thirdparty/cosyvoice/llm/__init__.py +0 -0
  179. xinference/thirdparty/fish_speech/tools/__init__.py +0 -0
  180. xinference/thirdparty/fish_speech/tools/api.py +0 -943
  181. xinference/thirdparty/fish_speech/tools/msgpack_api.py +0 -95
  182. xinference/thirdparty/fish_speech/tools/webui.py +0 -548
  183. xinference/web/ui/build/static/css/main.5061c4c3.css +0 -2
  184. xinference/web/ui/build/static/css/main.5061c4c3.css.map +0 -1
  185. xinference/web/ui/build/static/js/main.4eb4ee80.js +0 -3
  186. xinference/web/ui/build/static/js/main.4eb4ee80.js.map +0 -1
  187. xinference/web/ui/node_modules/.cache/babel-loader/07ce9e632e6aff24d7aa3ad8e48224433bbfeb0d633fca723453f1fcae0c9f1c.json +0 -1
  188. xinference/web/ui/node_modules/.cache/babel-loader/1130403f9e46f5738a23b45ac59b57de8f360c908c713e2c0670c2cce9bd367a.json +0 -1
  189. xinference/web/ui/node_modules/.cache/babel-loader/131091b25d26b17cdca187d7542a21475c211138d900cf667682260e76ef9463.json +0 -1
  190. xinference/web/ui/node_modules/.cache/babel-loader/1f269fb2a368363c1cb2237825f1dba093b6bdd8c44cc05954fd19ec2c1fff03.json +0 -1
  191. xinference/web/ui/node_modules/.cache/babel-loader/331312668fa8bd3d7401818f4a25fa98135d7f61371cd6bfff78b18cf4fbdd92.json +0 -1
  192. xinference/web/ui/node_modules/.cache/babel-loader/40f17338fc75ae095de7d2b4d8eae0d5ca0193a7e2bcece4ee745b22a7a2f4b7.json +0 -1
  193. xinference/web/ui/node_modules/.cache/babel-loader/4de9a6942c5f1749d6cbfdd54279699975f16016b182848bc253886f52ec2ec3.json +0 -1
  194. xinference/web/ui/node_modules/.cache/babel-loader/822586ed1077201b64b954f12f25e3f9b45678c1acbabe53d8af3ca82ca71f33.json +0 -1
  195. xinference/web/ui/node_modules/.cache/babel-loader/8c5eeb02f772d02cbe8b89c05428d0dd41a97866f75f7dc1c2164a67f5a1cf98.json +0 -1
  196. xinference/web/ui/node_modules/.cache/babel-loader/8d33354bd2100c8602afc3341f131a88cc36aaeecd5a4b365ed038514708e350.json +0 -1
  197. xinference/web/ui/node_modules/.cache/babel-loader/9375a35b05d56989b2755bf72161fa707c92f28569d33765a75f91a568fda6e9.json +0 -1
  198. xinference/web/ui/node_modules/.cache/babel-loader/a158a9ffa0c9b169aee53dd4a0c44501a596755b4e4f6ede7746d65a72e2a71f.json +0 -1
  199. xinference/web/ui/node_modules/.cache/babel-loader/c7bf40bab396765f67d0fed627ed3665890608b2d0edaa3e8cb7cfc96310db45.json +0 -1
  200. xinference/web/ui/node_modules/.cache/babel-loader/d6c643278a0b28320e6f33a60f5fb64c053997cbdc39a60e53ccc574688ade9e.json +0 -1
  201. xinference/web/ui/node_modules/.cache/babel-loader/e42b72d4cc1ea412ebecbb8d040dc6c6bfee462c33903c2f1f3facb602ad742e.json +0 -1
  202. xinference/web/ui/node_modules/.cache/babel-loader/e64b7e8cedcf43d4c95deba60ec1341855c887705805bb62431693118b870c69.json +0 -1
  203. xinference/web/ui/node_modules/.cache/babel-loader/f5039ddbeb815c51491a1989532006b96fc3ae49c6c60e3c097f875b4ae915ae.json +0 -1
  204. xinference/web/ui/node_modules/.cache/babel-loader/f72f011744c4649fabddca6f7a9327861ac0a315a89b1a2e62a39774e7863845.json +0 -1
  205. xinference/web/ui/node_modules/.cache/babel-loader/feabb04b4aa507102da0a64398a40818e878fd1df9b75dda8461b3e1e7ff3f11.json +0 -1
  206. /xinference/web/ui/build/static/js/{main.4eb4ee80.js.LICENSE.txt → main.1eb206d1.js.LICENSE.txt} +0 -0
  207. {xinference-1.1.0.dist-info → xinference-1.2.0.dist-info}/LICENSE +0 -0
  208. {xinference-1.1.0.dist-info → xinference-1.2.0.dist-info}/WHEEL +0 -0
  209. {xinference-1.1.0.dist-info → xinference-1.2.0.dist-info}/entry_points.txt +0 -0
  210. {xinference-1.1.0.dist-info → xinference-1.2.0.dist-info}/top_level.txt +0 -0
@@ -1,15 +1,15 @@
1
1
  xinference/__init__.py,sha256=nmTTrYbIpj964ZF6ojtgOM7E85JBOj1EyQbmYjbj1jw,915
2
- xinference/_compat.py,sha256=vpf_M9Ou6d9qaq-hG5isJ-C8e8UdPZPqoWcPhabfNko,4135
3
- xinference/_version.py,sha256=SLrzKIb7ooL4naeDwsynitdnLtJxVgvVCnrnV7u3Ck4,497
2
+ xinference/_compat.py,sha256=URSJQLXrcsTO9B_4x0wVDPijYQDhuVJmZ95npID560w,4197
3
+ xinference/_version.py,sha256=GAClfR3cqBVqaVAxpzjZVxVh61ko4WPMyfwpihoTDXg,497
4
4
  xinference/conftest.py,sha256=vETDpRBVIlWbWi7OTwf7og89U25KyYGyI7yPIB3O8N8,9564
5
5
  xinference/constants.py,sha256=mEW4HDzjXtDXN61Mt6TtJrJ4ljbB6VUkh97e3oDbNx4,3905
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=gTU1em5fxg1m-7hxieWBMZvVkXZX4GZYmeT7XxXsYrU,2699
9
- xinference/types.py,sha256=t9SIU06Y1Y_lmXMfQmYAHmP8K6vTnD5Ly32z4KqriZE,12514
9
+ xinference/types.py,sha256=7BO7P1Cs6RYpP3l_WKBTzlvPr7q1I6Iz_fllqaIwI7E,12999
10
10
  xinference/utils.py,sha256=zYgf9bCvfbybRt3gEog6r5WJCpj0czZCf0qgRdYjkN8,720
11
11
  xinference/api/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
12
- xinference/api/restful_api.py,sha256=ygyJxXgdUNsDgUqU-pgPIgxp7C-UFKqN26aECz5MK30,92336
12
+ xinference/api/restful_api.py,sha256=NlWmA1pDu8oPybI9daU4pplQXkRD-NExTO2L_E4Y2zM,92876
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
@@ -25,14 +25,14 @@ xinference/core/chat_interface.py,sha256=Kiqs1XOXgYBlP7DOXLEXaFjbVuS0yC1-dXJyxrx
25
25
  xinference/core/event.py,sha256=42F38H2WOl6aPxp2oxX6WNxHRRxbnvYRmbt4Ar7NP4U,1640
26
26
  xinference/core/image_interface.py,sha256=5Iuoiw3g2TvgOYi3gRIAGApve2nNzfMPduRrBHvd1NY,13755
27
27
  xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
28
- xinference/core/model.py,sha256=Or_HJxmh6hJ3LVsxOBSk3T7wIzhYI9G2lZimrv9FZ0M,40819
28
+ xinference/core/model.py,sha256=2ohKVnm4CwLP4I-t7Cb1dx_47PxPrNYFbmIY8-FNSNM,43327
29
29
  xinference/core/progress_tracker.py,sha256=LIF6CLIlnEoSBkuDCraJktDOzZ31mQ4HOo6EVr3KpQM,6453
30
30
  xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
31
31
  xinference/core/scheduler.py,sha256=gdj3SyP_jelJ86vTRrgnFynhxz5JSwLRsQgx8PTtBi8,15671
32
32
  xinference/core/status_guard.py,sha256=4an1KjUOhCStgRQUw1VSzXcycXUtvhxwiMREKKcl1UI,2828
33
- xinference/core/supervisor.py,sha256=6DNERyU_Un-Xc9a1P2EyVmJiNOaKI7pBBNwiC4BA92s,53088
34
- xinference/core/utils.py,sha256=trVesJM9GLiDXYtyoVt23rV_AS3G-gAu2BZpBkSMn8w,11067
35
- xinference/core/worker.py,sha256=YIlaQosBRj_VStfZGPfWnT2ie13GW8K4NNEP5qz28lI,46402
33
+ xinference/core/supervisor.py,sha256=xr4zcluR2ahY6hX0yvRNGOv_1c470QfMXsdKC3mq2tU,56268
34
+ xinference/core/utils.py,sha256=RR3XDioh52Wy8vmAqhCZ6EQskr-HPDfUp0vCCAPIAvs,11302
35
+ xinference/core/worker.py,sha256=Sv4bp3odUw9s0PtwDGQPn4cVJCTZYJ8suVGrPLNoD1Y,47749
36
36
  xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
37
37
  xinference/deploy/cmdline.py,sha256=gPwp9IngaXCypUEnPDS_22U8GntsKr7qHDST7duyAoI,48478
38
38
  xinference/deploy/local.py,sha256=gcH6WfTxfhjvNkxxKZH3tcGtXV48BEPoaLWYztZHaeo,3954
@@ -46,15 +46,16 @@ xinference/model/core.py,sha256=_NEH4wkjjJgRDdLHNVY_hL3V0kT67CvTay89uIzx1Ns,4736
46
46
  xinference/model/utils.py,sha256=_yJ5h4RUzt7Kjs2WdjSzbVM3FTWEkX0ycOnXANZ9KVg,11394
47
47
  xinference/model/audio/__init__.py,sha256=KasWsaNPeij6sGpHKqXaUc_bxUw1yYbD7-fwxkcoAVE,3731
48
48
  xinference/model/audio/chattts.py,sha256=ny3DZTCTt2MzdkLw994_QHZ_4qIEUZcNexNJkCejCyo,4998
49
- xinference/model/audio/core.py,sha256=j3H4IAcMRFiwEt8MCGzvD7VqvBON9dxrbRbfqFgSwfk,7082
50
- xinference/model/audio/cosyvoice.py,sha256=Enur1Y4Xa-mpr7wwnoXWwhyh7PUAjrHZ8DV91tTrpjE,6426
49
+ xinference/model/audio/core.py,sha256=jQN-0podPYYu1FEjTPQtlTc4g1fZnk89lgapkshp3Ss,7290
50
+ xinference/model/audio/cosyvoice.py,sha256=aGg2twmh4_NHHbW2jFVQ7x6bi-iZrFLSM5v5dqfbnBM,7301
51
51
  xinference/model/audio/custom.py,sha256=8GXBRmTtR-GY03-E91nlRGTIuabCRzlt20ecU6Un6Y8,4985
52
- xinference/model/audio/f5tts.py,sha256=0uhtovQAnmTaIiI17QZLR0dWEJD2lW_baB6B-5yXNas,6557
53
- xinference/model/audio/fish_speech.py,sha256=HNSNOA_rl7io1F4Vv3gicQh7Jpqgi3SAl57YRKzuPOs,8917
52
+ xinference/model/audio/f5tts.py,sha256=RyfEYVvKhV7JygIv4F45C8wBr-u0mx9WpXj3gIOtL7o,6809
53
+ xinference/model/audio/f5tts_mlx.py,sha256=SbYIo1C3EfZ8L30P7OTx0Dx7KuXIIpQKf8uZqR1e760,8527
54
+ xinference/model/audio/fish_speech.py,sha256=U1NtEhQFtzVYZ0vpx10EqBnqUz-hmx1ZTAzD9OSPskQ,6767
54
55
  xinference/model/audio/funasr.py,sha256=65z7U7_F14CCP-jg6BpeY3_49FK7Y5OCRSzrhhsklCg,4075
55
- xinference/model/audio/model_spec.json,sha256=80Yiljfope_9eeDQHle-lZLpDqYaScAREquSy52Puv8,7529
56
- xinference/model/audio/model_spec_modelscope.json,sha256=cNZlzRtkI4x1KK9Ya-YiVTpdJ7-AAA5JwfM-oQSkaKg,2277
57
- xinference/model/audio/utils.py,sha256=pwo5cHh8nvhyBa9f-17QaVpXMSjmbpGbPYKwBBtEhGM,717
56
+ xinference/model/audio/model_spec.json,sha256=7tHhrduauuIAawExL8kUg9QSqqSS4Gz0LZQ7dNCnJr0,8029
57
+ xinference/model/audio/model_spec_modelscope.json,sha256=T-dbWajqrY0aXhUJa2CIxj0gtT7TwOuTmTazs68Wr5k,2521
58
+ xinference/model/audio/utils.py,sha256=fnnQfZlhH6DRw6beXPUIO28u6qu2GgCONrWDIsTCNkw,1591
58
59
  xinference/model/audio/whisper.py,sha256=PQL7rebGC7WlIOItuDtjdEtSJtlhxFkolot-Fj-8uDU,7982
59
60
  xinference/model/audio/whisper_mlx.py,sha256=zBuCd7GUlsN9FC_-J11gqIkOCicihfbqxoabiXTvH2Q,7237
60
61
  xinference/model/embedding/__init__.py,sha256=1GmvQsbeeVUT-VRaRGetf8UT4RQgLWIzfp5kfX5jw-k,3567
@@ -70,10 +71,10 @@ xinference/model/flexible/launchers/__init__.py,sha256=X8w_2hKuQ9H3f90XYK7H_AQU4
70
71
  xinference/model/flexible/launchers/image_process_launcher.py,sha256=APbbHls0N9DpLFL6_qTexuc5o6bQAvdgJEAZWU4clyw,2510
71
72
  xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRUGhulP4PRJ4fZEJ2D9cfv7lcC2qJBoDE,2012
72
73
  xinference/model/image/__init__.py,sha256=80HBIbKh6lh-BgNaTo6k0TxxKjdG30bwHAdCiwVk6wk,3198
73
- xinference/model/image/core.py,sha256=qq5Yz0lr50Ap2UV8Yd9B3ddYPaAYGZFcZY9tKzdar0c,10625
74
+ xinference/model/image/core.py,sha256=hsYQMqQYtdyBVzMvaiXDVnwvRGggDjYO6yDyZgBDt9E,12947
74
75
  xinference/model/image/custom.py,sha256=5gjujQpJVTJ-pVB5LzBo4-bWKKOHzFlRaoRKJ_CuIUg,3769
75
- xinference/model/image/model_spec.json,sha256=YLwNpHd9QU3Mvs_DVE7UrHjqUF_dVzqxKwb6gzHlEbg,5911
76
- xinference/model/image/model_spec_modelscope.json,sha256=0RIecnegAoe86paNiMxs-YVc8c4Ag3BXRG2CKBSmvNk,4806
76
+ xinference/model/image/model_spec.json,sha256=6bj35tYYY8xjohTPCXzhcsa2QQmzs763YdJilgItYPE,9514
77
+ xinference/model/image/model_spec_modelscope.json,sha256=I0U-cw4UivqpsR0BMLxXrrljRUytTg8GgcnqnA3VHBU,8395
77
78
  xinference/model/image/sdapi.py,sha256=Xgdtnvw4Xwj1Nc0cBoDo_ogH6E2mFJqLvX0jSxxgdnA,5936
78
79
  xinference/model/image/utils.py,sha256=sJCxC8iCS7r9sVY4edKz2DYaZ-ebq_t9HjL7fZMS8z8,2344
79
80
  xinference/model/image/ocr/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
@@ -81,31 +82,32 @@ xinference/model/image/ocr/got_ocr2.py,sha256=N5Ux1dCtDMA25BBEmqiYNVKrk_HA-IPWch
81
82
  xinference/model/image/scheduler/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
82
83
  xinference/model/image/scheduler/flux.py,sha256=GHlpPfU5UxsiQWNyvNe9SaVZceNg_2CiF1oJUdCao5o,18830
83
84
  xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
84
- xinference/model/image/stable_diffusion/core.py,sha256=M_sYFsY_q91l0D6O7AqQVd_h-RIgXcmaydyCvASyNsI,23055
85
+ xinference/model/image/stable_diffusion/core.py,sha256=SaeBYNdRdqarEwoyjHDz_SfRIr9EEK4IzgydYuRf7pI,24286
85
86
  xinference/model/image/stable_diffusion/mlx.py,sha256=GZsozzGB04NfHAdU9MI6gwWE1t_A-s_Ddn_ic8DlkKQ,7476
86
- xinference/model/llm/__init__.py,sha256=RDfLCynV34DcGfL2Y8Aw7S3pruC1TiPc8apcmgAYqZs,14052
87
+ xinference/model/llm/__init__.py,sha256=zKmkoNsUoQk1_jnLHNpno4UPKGl5O_vJK5R5R-TYF9w,14140
87
88
  xinference/model/llm/core.py,sha256=g-luuAjZizrPunhyFE9IRjn57l0g6FY_1xUwtlRegbs,8151
88
- xinference/model/llm/llm_family.json,sha256=8ie8M1ghT5p_QSqTm4gpJFhbe7cIvuL9AmngBpblyD8,315713
89
- xinference/model/llm/llm_family.py,sha256=tI2wPefd7v-PWcVhUO2qy6iGob_ioeNCwAQQzal-2o4,39549
89
+ xinference/model/llm/llm_family.json,sha256=zxMJizuGREQEB43nnLMvqtuJehhw8x6fYpWS7UTljqg,321060
90
+ xinference/model/llm/llm_family.py,sha256=HiWobT1SInGXWT78g673K5-FoDkDi1dSUU4pmfFAPPI,39050
90
91
  xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
91
- xinference/model/llm/llm_family_modelscope.json,sha256=ByXuxHXE6LOaiUQQom1yHXRhe7LgtZnxBAa4_OIO8og,246100
92
+ xinference/model/llm/llm_family_modelscope.json,sha256=1A2qe0VrkNYcr5zCvxYNkPEt58clsRGel-KZ_PCKb_w,251625
92
93
  xinference/model/llm/llm_family_openmind_hub.json,sha256=jl9pfbe5DztoxgEwKBxDk1Wd7TziTiJ48_Ie_lJdYjA,67872
93
94
  xinference/model/llm/memory.py,sha256=NEIMw6wWaF9S_bnBYq-EyuDhVbUEEeceQhwE1iwsrhI,10207
94
- xinference/model/llm/utils.py,sha256=BBXo8rF1QM3EFdOeARFlAkuKBW3pTh-MuoC8zUpCuLc,24428
95
+ xinference/model/llm/utils.py,sha256=H8chuTrurRNYa0jhrK5fxB0rZmF7fuxyKikKkDsM5Qw,25210
95
96
  xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
96
97
  xinference/model/llm/llama_cpp/core.py,sha256=vjuTapwbn-ZjUX-8WA0nFyicE4UGUSehU_csSetvcZw,10928
97
98
  xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
99
  xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc3ua8yPTI,19835
99
100
  xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
100
- xinference/model/llm/mlx/core.py,sha256=-37TJ9xR0iOXgwn7QbDfFFa4lVHoaBDKPgmCma_OzOQ,22131
101
+ xinference/model/llm/mlx/core.py,sha256=EMtFNsRkNzJLOhCyAW1sGsRmOg5CElga1IJN9Rcojr0,22556
101
102
  xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
102
103
  xinference/model/llm/sglang/core.py,sha256=Ab0i6Q3M-DqQi5bHMyfa9klPElGSk1ThEke4mdsBHXU,16747
103
104
  xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
104
105
  xinference/model/llm/transformers/chatglm.py,sha256=vHBPIn5nEkrjBmonYkCHAIxDwvNeZHXK8EQz3B2vObE,22418
106
+ xinference/model/llm/transformers/cogagent.py,sha256=JbIiqVW-S9MA3d4CN2DlI7-WDB_nuCbX8JSypR5TmVU,10080
105
107
  xinference/model/llm/transformers/cogvlm2.py,sha256=I5Ftm0VYjbTAv5ZARZCo32Ggpw58PJfHs5B_nX_BIlU,15972
106
108
  xinference/model/llm/transformers/cogvlm2_video.py,sha256=ZGkpC4x2uEtjwoMrLSODmAUYTjOeSNYxZi9VpQrpnhU,11857
107
109
  xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
108
- xinference/model/llm/transformers/core.py,sha256=8-BKAXWhBAQOnk1tDHwNQzq5x74-y1P9kdxO2D3ZhjQ,28247
110
+ xinference/model/llm/transformers/core.py,sha256=t1tujy8-IfD83CjKkvxZ-jqZISDQVFJpSiDkeIL4LGM,28286
109
111
  xinference/model/llm/transformers/deepseek_v2.py,sha256=-RKlI3mhja730md4evQ2vfIxBnZD5vWyrgmg_3eovms,4096
110
112
  xinference/model/llm/transformers/deepseek_vl.py,sha256=pB6i6DW5oyfHdqTgKpi2DkIKVGlPLGIDR_Op0sB1uKA,10445
111
113
  xinference/model/llm/transformers/glm4v.py,sha256=goph2HhpV8gUm2t8-T1P-jTF2r_kPeH6QNe64lmlm0g,13871
@@ -117,14 +119,25 @@ xinference/model/llm/transformers/minicpmv26.py,sha256=_e2C4vmyKIzKt7S7AvKgiqhDO
117
119
  xinference/model/llm/transformers/omnilmm.py,sha256=2ZLW979ETqDDKo9CaTNwi9uLBZ2d6itHAYqjUA4jdro,5172
118
120
  xinference/model/llm/transformers/opt.py,sha256=dkZFNwtw_sUuVaz9He6LWfEojRGfOQFQ5atvC5OYPuY,2429
119
121
  xinference/model/llm/transformers/qwen2_audio.py,sha256=1XmlawVF-Xh2pgGoLDX7kOYIiF_bDUR3doSOnM59QbQ,6107
120
- xinference/model/llm/transformers/qwen2_vl.py,sha256=i8mypQwaPaaGQ0OIS55H8yuUX6gH87ubPuPQHHAD9fw,7304
122
+ xinference/model/llm/transformers/qwen2_vl.py,sha256=TKn7p0-bNzzv7ZVZ18mOD9NYgJ9q_y_CJMA3OWWvv2c,7768
121
123
  xinference/model/llm/transformers/qwen_vl.py,sha256=LG19qJW30bFiZOS-t9OM3JP6K1KCLj_Sv3nKSCLvyts,14058
122
124
  xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
123
125
  xinference/model/llm/transformers/utils.py,sha256=a4-X5P9_L--rgSx5jI8haYA6GSpKhMdOYE97VNh54yM,19389
124
126
  xinference/model/llm/transformers/yi_vl.py,sha256=iCdRLw-wizbU-qXXc8CT4DhC0Pt-uYg0vFwXEhAZjQg,8961
125
127
  xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
126
- xinference/model/llm/vllm/core.py,sha256=69oLX1G5fK-UkPTQMgNkJPgFOVhqTbDdumZZ3INkskI,35409
128
+ xinference/model/llm/vllm/core.py,sha256=kwYoo54bioZfVVHLqv_BrdXzpe21CF3gJZoSLZp4SjI,37255
127
129
  xinference/model/llm/vllm/utils.py,sha256=LKOmwfFRrlSecawxT-uE39tC2RQbf1UIiSH9Uz90X6w,1313
130
+ xinference/model/llm/vllm/xavier/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
131
+ xinference/model/llm/vllm/xavier/allocator.py,sha256=SJ2eCOxF6CWTBZIP39FRxeK6fxIE8pRshOPnSRc72d4,2691
132
+ xinference/model/llm/vllm/xavier/block.py,sha256=5j-ihgpIBvmE6t0Mifw8xW5VYil-ti2bDZyeDQ2HHpk,4455
133
+ xinference/model/llm/vllm/xavier/block_manager.py,sha256=9rJaTWGf6mPny78D0YdfhWt2vovEUyP1C2C974npGXI,2822
134
+ xinference/model/llm/vllm/xavier/block_tracker.py,sha256=GNL_cl0enGXse6fa6zHg0eUHp9aZna-kdFUpD-nDRTU,4686
135
+ xinference/model/llm/vllm/xavier/engine.py,sha256=WlKoxnE8HTUMVHr-PC9x-5emwZAjsMMxUBxUgcn0fQg,10443
136
+ xinference/model/llm/vllm/xavier/executor.py,sha256=K9cdLIFMdMPqUBqj2MAJjj9g8kCqDbr7nGwKtcGbLiA,5549
137
+ xinference/model/llm/vllm/xavier/scheduler.py,sha256=cyVtwMyk2JdeYGKuAdubuN0tXrwoKCz4YqegPVGKDIc,19140
138
+ xinference/model/llm/vllm/xavier/transfer.py,sha256=Zo19ZtFGUWA4-T7vqJtSxcHHFWAF6Yzijnq0q3waT5M,11177
139
+ xinference/model/llm/vllm/xavier/test/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
140
+ xinference/model/llm/vllm/xavier/test/test_xavier.py,sha256=lFhz2rZkz6h6yz07M0L6D3K3r8nF8MGVr1NizeWXq4g,3940
128
141
  xinference/model/rerank/__init__.py,sha256=wRpf1bOMfmAsuEKEGczMTB5fWEvuqltlJbIbRb-x8Ko,3483
129
142
  xinference/model/rerank/core.py,sha256=e-QoFgVk-6LOQPM5zqbEj095J-1bkuyd9c5zRI5DlF8,14560
130
143
  xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
@@ -133,54 +146,58 @@ xinference/model/rerank/model_spec_modelscope.json,sha256=pf5hX4g0HdVjk2-ibHTl_m
133
146
  xinference/model/rerank/utils.py,sha256=MJAFL47G3r3zLVGXKoi0QLTgU3Xr4Ffv72Ipn--psew,713
134
147
  xinference/model/video/__init__.py,sha256=mRhOhzMxzcPFdA5j4niAxH_j9dXLtT9HmchuICrdET8,2160
135
148
  xinference/model/video/core.py,sha256=gzVo-qnyqdF6tLgsGqCkHxGkbujSf7VCGJIlqLxfouc,6073
136
- xinference/model/video/diffusers.py,sha256=kSEBRf0vtWyo0IrwoiEpr_ROu7SwDAVBZ4leqkcPycM,6244
137
- xinference/model/video/model_spec.json,sha256=yQcLSU3vRJys-ACdHGtTNdz2pX1O9QDQ5rGHQd9LdFY,817
138
- xinference/model/video/model_spec_modelscope.json,sha256=U8p6IqNLbY5Safxwpa6dCfnGbyvOC4FtYIf2ucr8TvM,815
149
+ xinference/model/video/diffusers.py,sha256=P6GCKY5TFvLaMKyVBACXPUB-IVNo8-9HCRwfnqHPfoY,6982
150
+ xinference/model/video/model_spec.json,sha256=ubTQsEfEVIzHz7O8XZOSgo-PtQRLz_qctv965ChI7gY,1218
151
+ xinference/model/video/model_spec_modelscope.json,sha256=sjKMD-qRQMZ2NWTL7NxrclSljIVtwPFmgRKjObJmYtY,1198
139
152
  xinference/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
153
  xinference/thirdparty/cosyvoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
141
- xinference/thirdparty/cosyvoice/bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
- xinference/thirdparty/cosyvoice/bin/export_jit.py,sha256=WWPad_PGBT_C0AJ4w_ki5EJxGr9gX5fmK0kUsnhgnGs,2343
143
- xinference/thirdparty/cosyvoice/bin/export_trt.py,sha256=cjek1s4asmBUOMfNpi1gVMlkbn1sn2E3MXe_vDxyR-E,623
144
- xinference/thirdparty/cosyvoice/bin/inference.py,sha256=nq5doMD1JCgwVgh1o35pp-8O9njOxezJvnjvWVsNMCA,5533
145
- xinference/thirdparty/cosyvoice/bin/train.py,sha256=984UhhoGC5SO5fE3sL_k28Sndz9ElzUAO8FBqRYF9DM,5212
154
+ xinference/thirdparty/cosyvoice/bin/average_model.py,sha256=5x2fXo-HX6r_3aBoXfyGYG6w1Qp9l_XUcxesYZqGUyA,3143
155
+ xinference/thirdparty/cosyvoice/bin/export_jit.py,sha256=o6qMUNJDrvXw5MHwIKS6Tj_eeJsSrOrAnvQ0YD5HTmk,2628
156
+ xinference/thirdparty/cosyvoice/bin/export_onnx.py,sha256=PjD9UHpK2uGn4i7NBows5vpDd2Ho5oXy-jey2p0Jz8E,4560
157
+ xinference/thirdparty/cosyvoice/bin/export_trt.sh,sha256=LS96nBmlkJn097zmyGhSAdDLQpZBtAkQGxCFedNikAQ,931
158
+ xinference/thirdparty/cosyvoice/bin/inference.py,sha256=l4wX0LPraGw41VFQOMWp8_kMe1Ac3ZkuK4tXQHhjXko,5471
159
+ xinference/thirdparty/cosyvoice/bin/train.py,sha256=8S9T_DIGY-hYsq_jQJ5y74Wp3w-fhojLD8ChZYWH1Gg,6806
146
160
  xinference/thirdparty/cosyvoice/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
- xinference/thirdparty/cosyvoice/cli/cosyvoice.py,sha256=h9XEzKSqyg-5rj79D_H4hQRHNr05boGo82zjGntsr6s,5429
148
- xinference/thirdparty/cosyvoice/cli/frontend.py,sha256=5ZRsZjVYSSEEC7iGQG62zFCzbhjygNPxKeR0Ougf86M,8997
149
- xinference/thirdparty/cosyvoice/cli/model.py,sha256=R4YAp0OIqzf9dPxZeQef4r-t7f44vKLI5Fblpcy4Dns,10178
161
+ xinference/thirdparty/cosyvoice/cli/cosyvoice.py,sha256=VrtqD6do3ISDH74-HdRTyyz-NKBDZOg4oB39ZHeauRc,10150
162
+ xinference/thirdparty/cosyvoice/cli/frontend.py,sha256=5rA7nUy7Mkc9WEKXrkxHDIqQK26sN_LRgqRO8_8UfQE,12587
163
+ xinference/thirdparty/cosyvoice/cli/model.py,sha256=J5JnJ9fqIrfg8tiIn8a1cyZfkFEoeyKZeSCeYoT8DIg,26351
150
164
  xinference/thirdparty/cosyvoice/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
151
- xinference/thirdparty/cosyvoice/dataset/dataset.py,sha256=o4y725HGw4wOQ6ZKMIXUiXPJJuNlVCuat5yLKrfw50A,5233
152
- xinference/thirdparty/cosyvoice/dataset/processor.py,sha256=Dd0r4VxbcR2o7cgCtYVPd_VxEc1uNIxCB7euLn0FxiM,13008
153
- xinference/thirdparty/cosyvoice/flow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
154
- xinference/thirdparty/cosyvoice/flow/decoder.py,sha256=4RXtRZwEgTZ_21m6TcYtYzjBtOR5GyaSfZKBjVB1bhc,8878
155
- xinference/thirdparty/cosyvoice/flow/flow.py,sha256=44ZtlRw4aBb8YFo2ejeOTUJ-BMyVVI2k0XFVjhtppwU,6065
156
- xinference/thirdparty/cosyvoice/flow/flow_matching.py,sha256=TMhnw1sUSJeJ1zLc-PcD9GWRNTGju6lv_zY23Y95vgo,5882
157
- xinference/thirdparty/cosyvoice/flow/length_regulator.py,sha256=jjgY29-djOCv61-h0lth5a8mpWoL5nDo5BKgc_uU73w,2890
158
- xinference/thirdparty/cosyvoice/hifigan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
+ xinference/thirdparty/cosyvoice/dataset/dataset.py,sha256=6CJJZv1hOzK6jTbqsYpcL5UQk1O5dnc25NVgnSDuA_U,5403
166
+ xinference/thirdparty/cosyvoice/dataset/processor.py,sha256=t-qv63eCAXmeU863MKckFT7J45nTQomT_DLiMH6m_Cg,15416
167
+ xinference/thirdparty/cosyvoice/flow/decoder.py,sha256=SH54O2Z7iXBjwVtlOufgF9SyEEV7p5hg4yv4ueccbSg,12311
168
+ xinference/thirdparty/cosyvoice/flow/flow.py,sha256=l8tkOqkLo7CkH9tb2CzcEsIoQcMqbMMIMH5fclLmxi0,10252
169
+ xinference/thirdparty/cosyvoice/flow/flow_matching.py,sha256=AhSNEWfkm9nnfqXCgl0MHusJzO30ACcX50jdGpuq0so,10647
170
+ xinference/thirdparty/cosyvoice/flow/length_regulator.py,sha256=CG331RLBuvsAWUmglhz00OiFmnnmi9KpO-arTitwsuM,3060
171
+ xinference/thirdparty/cosyvoice/hifigan/discriminator.py,sha256=PorODWt9kG9fk1PNApkPm8QPuzF-ufUkhOukoQ8g9ao,5341
159
172
  xinference/thirdparty/cosyvoice/hifigan/f0_predictor.py,sha256=4Ter1WnuSRA7wytzQfEtu-3PuA-Qrg3ywR5Hs7fsV74,1976
160
- xinference/thirdparty/cosyvoice/hifigan/generator.py,sha256=cEDILcx6BD7Ihpb-XG-xFGhjT43FsadBXX6JkIb6e3A,15010
161
- xinference/thirdparty/cosyvoice/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
- xinference/thirdparty/cosyvoice/llm/llm.py,sha256=PZD7gm6YTfwiHwt8h3OGiSkQ695drKfVUHciTKR4ucA,9253
173
+ xinference/thirdparty/cosyvoice/hifigan/generator.py,sha256=AzO0ALwzt7XvZqzxzl2xuRSsM3IecoUQOHoQU_fkTPk,15498
174
+ xinference/thirdparty/cosyvoice/hifigan/hifigan.py,sha256=CH96CjSUNW-C2dCocseSZhIUQ2OAS0OLj4sRsSbCYys,3231
175
+ xinference/thirdparty/cosyvoice/llm/llm.py,sha256=vPJIVmQmLvboKN-ywb5bHkshXyAetaJtHxWzE7TYQWc,14420
176
+ xinference/thirdparty/cosyvoice/tokenizer/tokenizer.py,sha256=lDQPx83ycMaaOutjKQxSQQROIHFOAf6nNvNh-eWlbfI,7456
177
+ xinference/thirdparty/cosyvoice/tokenizer/assets/multilingual_zh_ja_yue_char_del.tiktoken,sha256=dHl5Yx6BMZNDaqvP98HCNdN96Al7ccVj7Itjt6UVxxg,907395
163
178
  xinference/thirdparty/cosyvoice/transformer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
179
  xinference/thirdparty/cosyvoice/transformer/activation.py,sha256=pKlsrqn3sFERKG3l6nYL39-cTlNEj1NCCFfcBKUEQMI,3089
165
180
  xinference/thirdparty/cosyvoice/transformer/attention.py,sha256=QdJpstXjo5UsClOPRkgK_4Vwdn64joBFLzZ0Ns72KLE,14389
166
181
  xinference/thirdparty/cosyvoice/transformer/convolution.py,sha256=619B8ySpciXHO5xDCvi7IxvXc4bvGEULsP0yn0aatOE,5230
167
182
  xinference/thirdparty/cosyvoice/transformer/decoder.py,sha256=2wQscn4OZTrJJHM7H7FeaXkv_YDJ089iJIN0VV1Yocw,16580
168
183
  xinference/thirdparty/cosyvoice/transformer/decoder_layer.py,sha256=uVZiq3LsawsPUMOhX77PFvrLeG0yO0rKHQY7nCHA1k4,4807
169
- xinference/thirdparty/cosyvoice/transformer/embedding.py,sha256=LLSnAPvJBIUDeV7vRhyVBZuWXDRmJ73dlZug9aJfodw,11398
184
+ xinference/thirdparty/cosyvoice/transformer/embedding.py,sha256=NkbnSHg_5sBptCTMnL_oG8VKXM_qGucEHfOYpgPMzT4,11399
170
185
  xinference/thirdparty/cosyvoice/transformer/encoder.py,sha256=J_nXSZcgNy--Z3TQkLif8GPH7PiPk6TXWye7GtspGKU,21434
171
- xinference/thirdparty/cosyvoice/transformer/encoder_layer.py,sha256=8eMmGrfnPyXmXwrWLcxhX-mL8sj1eHaLXBhFnBkNDy8,9595
186
+ xinference/thirdparty/cosyvoice/transformer/encoder_layer.py,sha256=GSBYK-LJt894Nee1ORGOweudqPLHEcYlf4WYs3kpUbk,9602
172
187
  xinference/thirdparty/cosyvoice/transformer/label_smoothing_loss.py,sha256=24gEzxwg4a-_bDPeSDZYmxlH2IF5fQLVB8KoqNT0D90,3459
173
188
  xinference/thirdparty/cosyvoice/transformer/positionwise_feed_forward.py,sha256=boA447zIyght3KUI-5udQL86uYvrq89clJNdAyMp0Pg,4219
174
189
  xinference/thirdparty/cosyvoice/transformer/subsampling.py,sha256=MfwDR6hRq8EgXf1M9oCZwMQWWJw-maB7JQ6GMM7OGdA,12666
190
+ xinference/thirdparty/cosyvoice/transformer/upsample_encoder.py,sha256=f1mSmwAVFN8srFbkCTVBPEkGfqpZwbUsaTKuY9NW3cA,13766
175
191
  xinference/thirdparty/cosyvoice/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
176
192
  xinference/thirdparty/cosyvoice/utils/class_utils.py,sha256=PnVIVrqHzyv9FA4mvpkHcvABQboGubVVELE_QVI40YA,2582
177
- xinference/thirdparty/cosyvoice/utils/common.py,sha256=xGxkyedwKLr08T0NXTP1PgdgKfgMfepDfHzuebJw5CM,5146
178
- xinference/thirdparty/cosyvoice/utils/executor.py,sha256=3SpBSW9iJ4wSRHv-qLEd3G_tMEL01b6ZAZC48hyqeEI,5114
179
- xinference/thirdparty/cosyvoice/utils/file_utils.py,sha256=5b-KWbUTxGD7bIguqSssTXGqHZfadnFbTaMPxCEdnxk,2021
180
- xinference/thirdparty/cosyvoice/utils/frontend_utils.py,sha256=v5CBGTaebwT4e4TFf33PmwRtFx9bACylpU88ycBursU,4042
193
+ xinference/thirdparty/cosyvoice/utils/common.py,sha256=nBnqfbt_6hpmJOqFu52GDgwZgrY7KmBE5QvvifMxhfk,5834
194
+ xinference/thirdparty/cosyvoice/utils/executor.py,sha256=tivb-mBApjKUakLKqBeMvjqAZUyPa_6I6cZfbJoxmhc,8559
195
+ xinference/thirdparty/cosyvoice/utils/file_utils.py,sha256=rNS-oF5o3Xe159ge-rAxPdnIYkd7B50ufC3yz5rP9mE,1661
196
+ xinference/thirdparty/cosyvoice/utils/frontend_utils.py,sha256=kk4JnPCuzmO-K2jARcqyLhZpQ6iq2B823ksmgX_qufE,4029
197
+ xinference/thirdparty/cosyvoice/utils/losses.py,sha256=VRkh1v_mmss65WcRKv9-EPqOwSKGixeUtI0bIXZgdZk,607
181
198
  xinference/thirdparty/cosyvoice/utils/mask.py,sha256=kAauQRdlhQGrC0BjvYFpicLOlVKDp3V3ZCnLbbTMaHU,8351
182
- xinference/thirdparty/cosyvoice/utils/scheduler.py,sha256=BYzf1Ugnbba26wnoSfv_yq9FZaAJHLTn1q6QjgvZJQY,24940
183
- xinference/thirdparty/cosyvoice/utils/train_utils.py,sha256=UsBZ-2kkew_hbdsUpQ4aVfiWvPBrF7IwcVGaCMPnbqU,11863
199
+ xinference/thirdparty/cosyvoice/utils/scheduler.py,sha256=lEfquE_Lcer2VG2zUVa0n-UxgvJEdEodyT66so-h6jQ,24920
200
+ xinference/thirdparty/cosyvoice/utils/train_utils.py,sha256=JH6OWnIcR9NZE9CP-Clu6-YuBAmHgkzzVp4q48FUvsc,15154
184
201
  xinference/thirdparty/deepseek_vl/__init__.py,sha256=N5CYTfTFEiTT7mrNrrGTSyvDOVkGVO3pE_fWm8ugcAw,1458
185
202
  xinference/thirdparty/deepseek_vl/models/__init__.py,sha256=gVJoBKpRfny6w_QpTrTh_iCqUtVJZLuctzfPQq-dKDw,1328
186
203
  xinference/thirdparty/deepseek_vl/models/clip_encoder.py,sha256=tn-uTCAcb63WOX6cB0rl2ynOsum23xy1tAvBqPbIHHo,8197
@@ -264,9 +281,10 @@ xinference/thirdparty/f5_tts/train/datasets/prepare_ljspeech.py,sha256=OVL5AlqiN
264
281
  xinference/thirdparty/f5_tts/train/datasets/prepare_wenetspeech4tts.py,sha256=4MSCHkjjlKjao_2dAK2H9bU98fCVd26MoVZ3KBMy3CM,4579
265
282
  xinference/thirdparty/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
266
283
  xinference/thirdparty/fish_speech/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
267
- xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=zwsHs1oG4k7TBqBDZosGLW4uWADTzKWOjo0pI956PNM,7401
284
+ xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=UpWitG4B0Ss5ypESvMmLUXm2trBHX23f30MReF9mOfY,8066
268
285
  xinference/thirdparty/fish_speech/fish_speech/scheduler.py,sha256=xpstAfXlsdx-N_hDcJJYFKiLb_cW5mTdXACyuODrcIg,1101
269
- xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=TQbqeYF5RPkShMNjb9dsqWTWhEyHFnfdFOR_gnbIfUo,4474
286
+ xinference/thirdparty/fish_speech/fish_speech/tokenizer.py,sha256=EfI8cLdmC8IvZAG2aIn62f6lipcnDqXLHt9W-sjLOcQ,4686
287
+ xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=MtVaLPtMUEmLTsypsO3CAag17PHuiyMpc9WOR3vsnkA,4470
270
288
  xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py,sha256=LYHvlvb9463UMJ3stVzBilVpLtdiLCteuzMIB5ypHS0,70
271
289
  xinference/thirdparty/fish_speech/fish_speech/callbacks/grad_norm.py,sha256=pzuUxUnXWAa9U6XKcvQpnGoUZhMmFQKimSqYH-WajIQ,3436
272
290
  xinference/thirdparty/fish_speech/fish_speech/configs/base.yaml,sha256=7_yXj9Y9SNhI7wiQeFvoLArtp9gqJCF-f43JGQ-TwCI,2544
@@ -291,15 +309,15 @@ xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json,sha256=mNI1
291
309
  xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json,sha256=UXKUCm4i8DpRvNehWEZV5W6dTw36QcjzddvJpdUdAaM,7753
292
310
  xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
293
311
  xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lit_module.py,sha256=Brrgxy6tHNAwclfu04XDNLKzzGU_FamBL5D8XWPj99A,6567
294
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=mlrD22dZALaaoVphbriUYL6Ss1II0u-IZhwple2e5FI,28039
312
+ xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=dkw6XUWxvfBpDhEIjnt15VsBQGh0vloeWCu2ApnZqKo,29681
295
313
  xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lora.py,sha256=KHbtG1BGrFMtdoMtHXPWb3OTez8HtHEiuAaMEFOrNYI,2923
296
314
  xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
297
315
  xinference/thirdparty/fish_speech/fish_speech/models/vqgan/utils.py,sha256=irmTsK36GlLccFI5CjWahKO7NG6LZQrd5FEh_7qy4Xs,2533
298
316
  xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py,sha256=pKiKQ8irkt5FqwodBiwD3QkzMGxGvTTC6PFKKProOuI,19985
299
317
  xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py,sha256=GxRY7jSb5vPjDJuofkHhQLWEmkZVCJQ0B-iNokW6vkw,3448
300
318
  xinference/thirdparty/fish_speech/fish_speech/text/__init__.py,sha256=3lYfSw4Xb3Qh0p8FsjX4ToOJNsm7ZxN3XPh_xFKXoUQ,102
301
- xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=hcrKvtDWa-jmPzFqhFJwHxEeY2QNZfAadKhwAo-E5CU,1203
302
- xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=wv-x9U3cEz7D4iGmzkf_x2YpkvTthuDHVfM6VQW_gQw,3827
319
+ xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=YewVVv_LremHj0wKuHSTIsfiE9I6HR4QAfZNmpye6f0,832
320
+ xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=lQ7tT28B2go8B8HSG8fYm_ONmvN7SGax7nRxB8qpg_s,3832
303
321
  xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/.gitignore,sha256=04gWbPAivQzTV7w2eOgkk3xcMZLuti1pkLwy_mW7k6M,1274
304
322
  xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/README.md,sha256=9tZNujydXU0DlgpnsJTfMI880mgh41l6UvqqQQKbcPk,890
305
323
  xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -325,26 +343,28 @@ xinference/thirdparty/fish_speech/fish_speech/utils/rich_utils.py,sha256=RHRUrq2
325
343
  xinference/thirdparty/fish_speech/fish_speech/utils/spectrogram.py,sha256=R9dGOEJnsF03T-9BBFLwMHikgp1VYTe7Cm76doKj76s,3239
326
344
  xinference/thirdparty/fish_speech/fish_speech/utils/utils.py,sha256=3w0drAiLo5bVnOrXH8ezsIAaAkSP3cqwgpMcr7kERFQ,4283
327
345
  xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py,sha256=33vk7md7-T9rIwdOarQ1n5XKu_FqwZqeo6D_WGObjH4,3974
328
- xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=NwcVYzbRLqdh8Y1RAXBNpsmzYjQj1GKOTkW5EaNxMYo,46887
346
+ xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=naidGvMXg5hU5J-DdtR6dBOflXcr7FG0BxichP7z-No,46891
329
347
  xinference/thirdparty/fish_speech/fish_speech/webui/css/style.css,sha256=CLXPzePjropDNCfg2jptIwJRMIWPuc5jfd2aLGadMD0,2617
330
348
  xinference/thirdparty/fish_speech/fish_speech/webui/html/footer.html,sha256=ofq4m93dF0Z_lXn2J6nLBwXwdugBOPIzjzFGBbr1C58,348
331
349
  xinference/thirdparty/fish_speech/fish_speech/webui/js/animate.js,sha256=AG2umxvH9ly6ZxJDxV4sfz1A9Q3_unA7LnkKv05X-i4,2690
332
- xinference/thirdparty/fish_speech/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
333
- xinference/thirdparty/fish_speech/tools/api.py,sha256=LXq6L84EW_5bvBp6fgIkkegDgVQ8obYPph1OFm9SW5Q,29282
334
- xinference/thirdparty/fish_speech/tools/download_models.py,sha256=UOOV9SzseMUGFqOw85AeAaXg5LcW0jMvkoet1elvI44,1365
350
+ xinference/thirdparty/fish_speech/tools/api_client.py,sha256=-3cKLJqgDzlm-syIqb8ffCe2UcPNk9jmn7U0zAky818,6666
351
+ xinference/thirdparty/fish_speech/tools/api_server.py,sha256=rHA1Np-M5zkhklkerwHF0-ubiE9__xNLz9_WRpEQbZU,3193
352
+ xinference/thirdparty/fish_speech/tools/download_models.py,sha256=yVTkHPe5TkA1Ol59wlXD13ON19Auh986go_q1m1-rfk,1357
335
353
  xinference/thirdparty/fish_speech/tools/e2e_webui.py,sha256=JrT7ubhodvMICngsZkDDJ0Z0bCB4G1cpPBtQFc63Nhw,8908
336
354
  xinference/thirdparty/fish_speech/tools/extract_model.py,sha256=42b_U4rmqX3OUOIqWQQczsEktt79aQSOJ4E55B1bHl8,536
337
355
  xinference/thirdparty/fish_speech/tools/file.py,sha256=ZSWIpGIOuGbQ5gWmfS9LZWLLidc9gZ9p95QzAZkJneI,3047
338
- xinference/thirdparty/fish_speech/tools/fish_e2e.py,sha256=JKrZwFdUXFegFe7d8eJcF8xKbvOnddjegxORCTL3KBk,9625
339
- xinference/thirdparty/fish_speech/tools/msgpack_api.py,sha256=yKWc9wAycB4GSeAACO0_qmc7ONZN_zZP8tRBmCTbPkE,2623
340
- xinference/thirdparty/fish_speech/tools/post_api.py,sha256=tWpMgh264Abk7t4w0du51sGMeXDYQm3bLdh1NadxUAo,6993
341
- xinference/thirdparty/fish_speech/tools/schema.py,sha256=gh43aA3-kG2bZV-8UJhGqY8d-q1aHZIZy__fBtw0FLk,5257
356
+ xinference/thirdparty/fish_speech/tools/fish_e2e.py,sha256=YQ3XfvJCI7dYO8cMfkmWeDf2ZW2FE-FQ5LsRnTQyDbI,9633
357
+ xinference/thirdparty/fish_speech/tools/run_webui.py,sha256=hWAztS4rPG7tV8NGXY8furs7y4DpJoG3vZoGr5H0csY,3273
358
+ xinference/thirdparty/fish_speech/tools/schema.py,sha256=B8o1McuIqwd5GLN8ka3Gu4AFxJG6IQ0ChfOSIBw77NA,4647
342
359
  xinference/thirdparty/fish_speech/tools/smart_pad.py,sha256=O6fCgrSouBX6prkrj6a03DPI-5loiS_oKaidtIXxuFg,1626
343
- xinference/thirdparty/fish_speech/tools/webui.py,sha256=4E9xlCyZlwTFOkGNrh7mNjg5mwtPHNwP7WF-_GwlyAo,18048
344
360
  xinference/thirdparty/fish_speech/tools/whisper_asr.py,sha256=uG6NsSnH6oLEkCRM-Tb8o6L7OKDZ1eSVd8obEoq7jVc,4893
361
+ xinference/thirdparty/fish_speech/tools/inference_engine/__init__.py,sha256=cyhHYIwjj5DqCacvgzHypnVoF-CU_f5nuA8Ah5VHSKs,6291
362
+ xinference/thirdparty/fish_speech/tools/inference_engine/reference_loader.py,sha256=a-GjyCDyq4Mb8DXu_8DrxUcjYTZBozca0MP7wtdpiq0,4186
363
+ xinference/thirdparty/fish_speech/tools/inference_engine/utils.py,sha256=mNMegqyStPPrikXLYn6y0xJWniGBrF2Un4gOmyQo9to,1006
364
+ xinference/thirdparty/fish_speech/tools/inference_engine/vq_manager.py,sha256=4Od83XlT3Yjs-Hwh9rc6N2eDq9Gb5GEM0vWZbjwJ_us,2099
345
365
  xinference/thirdparty/fish_speech/tools/llama/build_dataset.py,sha256=rOVoiXPpKqwT2C2cDhTgw8TMNH5Tq0QzejPd4Y387zY,4898
346
- xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py,sha256=vF2OVE4kj5qVaBBHGR1eTqcmLWvUeoO4OMj9eUkTXvw,4623
347
- xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=mbC8hXgpkXAQS_GAIodpcZiHVBqe5TJOBAqi6WQ2rDo,33784
366
+ xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py,sha256=mFFPR8F3ALc-nj9q8Kp8nl-uqGwJ0VWOV7bYbjqIoys,4619
367
+ xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=p_GPFRL4g7NXjdN2clxWFz02srUDx19PzR_9O8jhrc4,34651
348
368
  xinference/thirdparty/fish_speech/tools/llama/merge_lora.py,sha256=VS-ZYzar8-MKj4PCzEoRjIin7GISVk6accZJXvrZHWQ,3273
349
369
  xinference/thirdparty/fish_speech/tools/llama/quantize.py,sha256=meAgs8IXCDjUz6R8ihvFMLNqo7MDJnSDi0sE-DAUJA0,16602
350
370
  xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py,sha256=MuFdqOsU2QHq8cSz7pa4PAsjZyrJrghCZQR2SrpplTQ,2025
@@ -353,9 +373,22 @@ xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py,sha256=47DEQpj8HB
353
373
  xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py,sha256=abg8hFiVcWwhJYT_E8De-vYRUQOs1u0Zxxgz1nj1790,22739
354
374
  xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py,sha256=4Tau7ImBXLF-Atgnzb_-volKCb5nas56iBnLVlucL9k,10182
355
375
  xinference/thirdparty/fish_speech/tools/sensevoice/vad_utils.py,sha256=QZhdJN6PiJUWui_8fdt_-BA32OKVfvjqV8roavLna20,2214
376
+ xinference/thirdparty/fish_speech/tools/server/api_utils.py,sha256=0TZLCteNhH-CK1Z3V9hzsBekrFuqvUlC2ALOa3vJMvk,2419
377
+ xinference/thirdparty/fish_speech/tools/server/exception_handler.py,sha256=CUcaxCbpJtnIJOP2fDDw4ohLF6LlAkkvFjIDXIB1wXE,729
378
+ xinference/thirdparty/fish_speech/tools/server/inference.py,sha256=vfiDZUuw-Qwl5rocw_0Lfla8bh6ByMzjfg_3Oa22blQ,1334
379
+ xinference/thirdparty/fish_speech/tools/server/model_manager.py,sha256=fGqpX8bpV_zMWK27xCTuntyyOvUdv_HUfxnwWKKUCNE,3769
380
+ xinference/thirdparty/fish_speech/tools/server/model_utils.py,sha256=UOJ4elAEECtLZ6xV4OfPg7w35_VJcEE3Xbv4h5zy7vs,3947
381
+ xinference/thirdparty/fish_speech/tools/server/views.py,sha256=n0xuA4YzpKEDnaHQyhRAVTPnvi0dSueNn2_xB-ZHxn4,7709
382
+ xinference/thirdparty/fish_speech/tools/server/agent/__init__.py,sha256=SFo8uPXSY4H4ieaZ7VXbY4g0FNoxETSswSM-NZdj-HE,1946
383
+ xinference/thirdparty/fish_speech/tools/server/agent/generate.py,sha256=uOmgs9EvyL_VX9bhsHw1bSvNs-TEcDuEnrBo3rDYLoc,3516
384
+ xinference/thirdparty/fish_speech/tools/server/agent/generation_utils.py,sha256=IagvrWRjhSLHSMDI1Bg-dbjpSdebpGZwA1NkRyaMark,3678
385
+ xinference/thirdparty/fish_speech/tools/server/agent/pre_generation_utils.py,sha256=Of2SFuaxinnVeFmiM27cHzcVwcR4f52SXDeRLFC8jAY,2614
356
386
  xinference/thirdparty/fish_speech/tools/vqgan/create_train_split.py,sha256=aWQeRSJ_KRPp72qtXoFvxJkkP6P-73VKIew2iIeETos,2996
357
387
  xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py,sha256=DNXinP96_ZQX2G847E0eHqfOe1tcxF7vMBtjGlHBD9E,6845
358
388
  xinference/thirdparty/fish_speech/tools/vqgan/inference.py,sha256=NL53U8qZ4IkvUssv83ltP1c1-zW7QWvhxZcDTR7ZiOE,3824
389
+ xinference/thirdparty/fish_speech/tools/webui/__init__.py,sha256=lqYBevPJ1c9fXRuVTqcRBVf0800SyfCEy0bSD9bw6mE,6867
390
+ xinference/thirdparty/fish_speech/tools/webui/inference.py,sha256=Rh-6T0fKKOZCo_hn7mQwLiUYK8KrpeeVU8xg4Eqd1no,2155
391
+ xinference/thirdparty/fish_speech/tools/webui/variables.py,sha256=9XiZPmdSeOa6BQfjPTuGWfwhPt1HbN9OEP8-8aldihY,601
359
392
  xinference/thirdparty/internvl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
360
393
  xinference/thirdparty/internvl/conversation.py,sha256=2wLSnfxyLItQaLd-N5xoybBPKyZadXkVntPuMV5iyGo,15040
361
394
  xinference/thirdparty/llava/__init__.py,sha256=UlCNtyBVX645CB6S6LfyYkTfQVO18_a8e9SmR7cHExA,41
@@ -411,7 +444,7 @@ xinference/thirdparty/matcha/utils/logging_utils.py,sha256=glOI_JG8_YBKHWwD5RRKK
411
444
  xinference/thirdparty/matcha/utils/model.py,sha256=UViKHaV89_IeaKJFww1xHV_RTXqv0YvfQWqwOtnzQ-I,2935
412
445
  xinference/thirdparty/matcha/utils/pylogger.py,sha256=YbC8Ym5HZrJcDBIsQO6jSnuyY5CLZQR13E_oAS9SYZQ,720
413
446
  xinference/thirdparty/matcha/utils/rich_utils.py,sha256=Oj5jrkz5s1b3RJL6m_8EXj85LY079FWClMIzf_Gwvcc,3279
414
- xinference/thirdparty/matcha/utils/utils.py,sha256=5TN-PISzsjI_CgnRX3PSPBVsFhRL8GHZyZdwm89O4TQ,8455
447
+ xinference/thirdparty/matcha/utils/utils.py,sha256=u5u7cDnY4SPv1-Citj6A-J34lfMvcrwaoZxWuKiHCiY,8459
415
448
  xinference/thirdparty/matcha/utils/monotonic_align/__init__.py,sha256=_s_INV7vL_N9mhYtZADAk11CsSGP8kykn0fEyyM73ts,646
416
449
  xinference/thirdparty/matcha/utils/monotonic_align/core.pyx,sha256=t2jJamslaDGkFZnWhdUQ0qs4T4gjntMOAXSPMtZaq0w,1236
417
450
  xinference/thirdparty/matcha/utils/monotonic_align/setup.py,sha256=bf0d0cvGRaACC22qq0sqgZEBBhz4qzDlMqBxOyTKC2g,207
@@ -459,18 +492,18 @@ xinference/thirdparty/whisper/normalizers/__init__.py,sha256=8Y_Nzkyu5_LoDkwBqwR
459
492
  xinference/thirdparty/whisper/normalizers/basic.py,sha256=rVZ7Og4dA8zAw1_HRv1oMMNSkP5O12dOthzhV7o9OA0,1936
460
493
  xinference/thirdparty/whisper/normalizers/english.json,sha256=Zgf5SL6YJNLhsvoiI82UwGxFr6TgXqDj1eHyvf_eJGU,56128
461
494
  xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc3yhvWzWuMhQzRnp2dM6IQdA,20868
462
- xinference/web/ui/package-lock.json,sha256=r6y_nAa8SfAETbx3ysAKcRf2SznsSAxpLwtArCJbCCI,760153
463
- xinference/web/ui/package.json,sha256=fkEgsboguEVK9yuRrJjN7Alhyo38qV1Ih83qQFVr6SQ,2023
464
- xinference/web/ui/build/asset-manifest.json,sha256=lxBw-PD6UKkQ129kBVzrjT7hZqMuoEXmgtMAzu7w5qk,453
495
+ xinference/web/ui/package-lock.json,sha256=Q3gwsjjCFtDjVg5Yk7s4jfMAZ1wiyFfS_TJCw3ECB64,762407
496
+ xinference/web/ui/package.json,sha256=iitsROb4-TLzxbOftXJqUGpp38TuPhzfLKy5n9THQYg,2081
497
+ xinference/web/ui/build/asset-manifest.json,sha256=JQl6bknXSiy3ZjsyhgBiYjtKBpMyOLpEU8LnBGfTvBk,453
465
498
  xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
466
- xinference/web/ui/build/index.html,sha256=2_u_R4l4IG3SoMr_3ZtCgLFnMCLdhgsaF9qaaFH3o70,650
467
- xinference/web/ui/build/static/css/main.5061c4c3.css,sha256=P7rcts4xzIqV_ikvTokJEYzZ5R9w_3wigAhs7ai9hgU,4392
468
- xinference/web/ui/build/static/css/main.5061c4c3.css.map,sha256=K2E6sUL58gZNSOo_9U-IMm9XCKQfnBlehW72IEYQQCw,8658
469
- xinference/web/ui/build/static/js/main.4eb4ee80.js,sha256=yNA9dzznqqY-OdONLE5JZVUPeYaTOPSq3IVxn9jHrkA,1123418
470
- xinference/web/ui/build/static/js/main.4eb4ee80.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
471
- xinference/web/ui/build/static/js/main.4eb4ee80.js.map,sha256=RHeb95y2q3rAg-wUT7QSvYtDPPXWfH1DHwm98-Rz-A8,4926622
499
+ xinference/web/ui/build/index.html,sha256=OESE5w59JgC1TC8WX7SVMfBGYefnyd3_5s2lKHzYoiM,650
500
+ xinference/web/ui/build/static/css/main.51a587ff.css,sha256=44-dxrjYALv45A8qiUuz2y24UwPdHgzR1gAe9TlRnRE,4459
501
+ xinference/web/ui/build/static/css/main.51a587ff.css.map,sha256=BY6rKb6-YaOHB4FkRjnYIUM8X4EsrhU87R1BMfdHuf8,8770
502
+ xinference/web/ui/build/static/js/main.1eb206d1.js,sha256=Hmqo0xRW_TfxBAgn1PGQwAzktzPAJAezz7ARYGwvWTw,1210485
503
+ xinference/web/ui/build/static/js/main.1eb206d1.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
504
+ xinference/web/ui/build/static/js/main.1eb206d1.js.map,sha256=eEIIppWz5Rxn9FzTxDyhZSnOgQs3Fsl4YVoLIqAGdBM,5141679
472
505
  xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
473
- xinference/web/ui/node_modules/.package-lock.json,sha256=_V6n9fLvF1laSHVMZb9Z6wwLvUphwXM7kuMW2TD5FX4,758073
506
+ xinference/web/ui/node_modules/.package-lock.json,sha256=2kL1sQ4ZuDQilki9DnRFFM8CxT13fyGl3chLK6i3DQY,760261
474
507
  xinference/web/ui/node_modules/.cache/babel-loader/00012b59e7dc64a18400bdddb660faa295258241c0b9cd15c78cdba63b858ed8.json,sha256=FhiSQ9MQv6bT7TkLBlXXskoaG2HCKhsuTXXlkDV-pM4,668
475
508
  xinference/web/ui/node_modules/.cache/babel-loader/000791038e4133db461021f1018491323a006cca7a53e09c2ac35032bc36d8b6.json,sha256=bke3WZZjPsJqMKVeHZ7xOSiE8x3fy4fe9nzvylycWOE,1374
476
509
  xinference/web/ui/node_modules/.cache/babel-loader/000b04fb1614a5dc3f850972c0b1e78aaa2fd8745590f01cce053cbb9e272a5f.json,sha256=_lNTM16wSHJj0KrTh3ZZ6C6_tLbRNL8uRchyx4lPE2s,1529
@@ -645,6 +678,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/03b37117fb8957664d05cf8080a4c
645
678
  xinference/web/ui/node_modules/.cache/babel-loader/03bb9963c17e9212a21795809193cba37dbdbd76ad3c8f236df017327a6e1873.json,sha256=9mn-yqG6Xu1PnuDQ_n8G0pSe6ce9nGPjpCOqlDN86K4,5175
646
679
  xinference/web/ui/node_modules/.cache/babel-loader/03bddd46f25f6a1e717fe0f81460927b61deab13b0ed9738d2f76f538357039c.json,sha256=CeroAJhEzPTckfbcWVxVPcXAWX6k8w2Zq72tri7U-f4,1782
647
680
  xinference/web/ui/node_modules/.cache/babel-loader/03c2d24a0724cc5d3e7b18b3768a078d44ca681508dd71672497728b98683fbf.json,sha256=qt6KhMCVtyOlETnB-WD4dfsIoCeP07-DMERGfNf4Wqo,1935
681
+ xinference/web/ui/node_modules/.cache/babel-loader/03c4052f1b91f6ba0c5389bdcf49c43319b4076c08e4b8585dab312538ae290a.json,sha256=Lk4sdEirGSy0YwQTTTG-2mIuQ6Ox09DrXkX-NOuJsLw,2387
648
682
  xinference/web/ui/node_modules/.cache/babel-loader/03c95099afb8127d9806f7763c73f64861212b554f30027b06f44eea17493bdc.json,sha256=WOR9DwciUgYeossvt54ILxDS-pj3fzef-XbBsWiX8a0,469
649
683
  xinference/web/ui/node_modules/.cache/babel-loader/03d2e2e3d405a999fc34b2dea3e26c676620c73bcfe2a502a57fcc3a9f416fb8.json,sha256=SXN3ienlMtDZ9wcGwZqz4Dofc2i_YR4RMhpFIMUJlHw,2012
650
684
  xinference/web/ui/node_modules/.cache/babel-loader/03d66d25bd2e798c2c0cb70fbb7fd5cc78bbbf14c35029263a4ff3a40b4cc7de.json,sha256=viLDqIbt718o5tYxPyMo6OX5cbqnXDSGSNO8I864KAA,1263
@@ -844,7 +878,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/07c55a8b3b7609d603299d48aeaaf
844
878
  xinference/web/ui/node_modules/.cache/babel-loader/07c84b7ef4afedfc55066f3deb323322ec68070e846681f734f15d351bed77ec.json,sha256=ma4PKpW20wlTMpIxJJ3TkJ8AjfsabSCpg1wPKaRlVug,1383
845
879
  xinference/web/ui/node_modules/.cache/babel-loader/07c97a9116d07609b8931049e58048d6ed396b5b51b739959a36bfd9c5e48295.json,sha256=fLeqWBJED0r3MIPS5kipqpXfKdkWX13kbFYF-hQGkUE,1427
846
880
  xinference/web/ui/node_modules/.cache/babel-loader/07cca16c63c8a19be05bfa2fd9e1085af558298281dd526f3020384f0852dc9f.json,sha256=tZJKrNmmXd8u9IdQPfu6f_5dgzfvzasescQN_Oy8Mfk,1612
847
- xinference/web/ui/node_modules/.cache/babel-loader/07ce9e632e6aff24d7aa3ad8e48224433bbfeb0d633fca723453f1fcae0c9f1c.json,sha256=0FVxgfPli8Ad7Bh_FeCZ4Mdpeo-j5VoyE_WrKOzvk3o,27501
848
881
  xinference/web/ui/node_modules/.cache/babel-loader/07d29c352e4c6a38fbc6354303cc50e8812666efb98625be20dd3adc1b719f20.json,sha256=587-RroRZWD7xdXsGzV-iyu7v7hcWegenZ5NzV_GAAc,1377
849
882
  xinference/web/ui/node_modules/.cache/babel-loader/07d2ab7e44af68ff9249653994b216beb7ca3a88562a23aac8b103902e20037e.json,sha256=uSl09zZgLu64bQc5R12AcH5-wclqjDHPoK8Lob4QyNc,1206
850
883
  xinference/web/ui/node_modules/.cache/babel-loader/07d6c9029695bc981e2b7705528fc3868b3db12faec8a37a08041bd454099666.json,sha256=iadF8kRld6nEjhYRTIVT4-zap_2jvuwlRg38YIXTDqk,1185
@@ -1298,7 +1331,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/1119ea0e999b538ac9d9889765ff9
1298
1331
  xinference/web/ui/node_modules/.cache/babel-loader/11210c69381cdd96349816f5b2c8d1e41334242ae6b724bc8784b9c8ea12b556.json,sha256=mhqKmeNIMogzvgTWMUWVUzdQ3Qw-nq8rx_rHncXr35g,1964
1299
1332
  xinference/web/ui/node_modules/.cache/babel-loader/112431dbb9f14db52f5ab5308c38aa3f0eefbaf887cf246e9202474756e0532b.json,sha256=MKkmDEvOh6xbc1bE1GQYxuBfTtGnaTjKFOsd8wxQ_KU,656
1300
1333
  xinference/web/ui/node_modules/.cache/babel-loader/11267632d502cd9cc75b1587d72f6835161eab6514d2019d43bc86efd5deddbd.json,sha256=FQcjeX7V2P-ali-5X2BWXuf0fYCAFKHzGk433PVXzYg,1510
1301
- xinference/web/ui/node_modules/.cache/babel-loader/1130403f9e46f5738a23b45ac59b57de8f360c908c713e2c0670c2cce9bd367a.json,sha256=9AsU97TJwQe85TOV4xIPnJsFL95pgq2q086AXeCRRUc,30182
1302
1334
  xinference/web/ui/node_modules/.cache/babel-loader/1134b4906f251106c028b6b9b1b2199f1389c2326f561e9109833f333a312564.json,sha256=LIZxOlQrMP7g6CoQpXOS2zFgnanuPhDcAo9WJqH9rdo,1703
1303
1335
  xinference/web/ui/node_modules/.cache/babel-loader/113e3bbee52260c318c3ec5b49640e85e7a09258c805500fb0ab9b8f4b8f9283.json,sha256=CrCMM2h3Zq6Tsqd7PeKXnOYQY3sc9TgbMoSgbWnk55A,1248
1304
1336
  xinference/web/ui/node_modules/.cache/babel-loader/114165060c5e76683ba6e94ee08827d2ad33e45aa4132696b5efe584366dbbad.json,sha256=BDh2eUXYthOTqSziq4_SMLBufPhZixPsHyKtXAYfyY0,1677
@@ -1391,7 +1423,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/12ecd49fd7bb3daf76f2827e7a5e8
1391
1423
  xinference/web/ui/node_modules/.cache/babel-loader/12efca6ed9ec73bf07c46375e62cbc63c302cb4c4ff10a06b1d0f99314f7b3aa.json,sha256=DJDWAbnYdNF_eJ4CORn7K2UAtrpOzcdq_RxxxSIBZUo,1193
1392
1424
  xinference/web/ui/node_modules/.cache/babel-loader/12fd6ed6006d6b8b1390b68853450bcf7c7515550f5d7b3fa298f1004f5abb86.json,sha256=Z1WATGF-Kb3c7rbujoVbB9GlO0rSLgiQJmiXX5ICJDA,2332
1393
1425
  xinference/web/ui/node_modules/.cache/babel-loader/1305de09f9b2e72d05ccd127b6b360906734ba72af438c4d80fe76cb79caf1ad.json,sha256=nQA4Mk128_21m-FI1qgUBy6zN-ju0sHUrtcjx0IVSQQ,1036
1394
- xinference/web/ui/node_modules/.cache/babel-loader/131091b25d26b17cdca187d7542a21475c211138d900cf667682260e76ef9463.json,sha256=dssrBrEIYX2dNNgdZ3gOlWSw0S9bU0lLyK3--kOWec4,16108
1395
1426
  xinference/web/ui/node_modules/.cache/babel-loader/13113a1b0164c18019d3b7e6d337941be991051580bc72c33e1710372800ae31.json,sha256=R86tKSXuwqO7iwMH9q3p0tLeloc5TTodF17NHJga_8I,1178
1396
1427
  xinference/web/ui/node_modules/.cache/babel-loader/1312bc07b9de60154ab79ce8430d36189c84271278097d08648848b2efe16ffa.json,sha256=tzuIvmbOi7fihILQym0WdoSATXYbYQuxOkkY3jkuh-s,1151
1397
1428
  xinference/web/ui/node_modules/.cache/babel-loader/13145be980fcaa8415d92a663724f8f586b8331fa7f6b6fc9d1d8a7f9ed8b324.json,sha256=GEL0c6cnrKdHD_xQOPt8gX8HVtB23K1fIzSKse41Lls,444
@@ -1604,6 +1635,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/177066b5e7d6a43e6498100dc3f95
1604
1635
  xinference/web/ui/node_modules/.cache/babel-loader/177812add2b0d411f74ea69aad264bf2eed7f6aca3e6b37ca1a9ee1fcded3e64.json,sha256=ZjahUB6FyxcyKJFefpiLMMjI4N_IFwY45fpqPWBw7DU,1146
1605
1636
  xinference/web/ui/node_modules/.cache/babel-loader/177c68cfc44df79a6c5b45bad71e1744b00c6afed5d86e78df96f66fa36f78ac.json,sha256=5oFZTuBA89K1UE-3mSU5xAd0BmpX-4XiUERo_RxL3Yo,1202
1606
1637
  xinference/web/ui/node_modules/.cache/babel-loader/1782c466d9a2a1640a1f62a15cdbf26948fe4b3c7e0f4d50ae48ffcf555dd7e0.json,sha256=Lf67tdfoHxW2cYim851GrsDC1P9LDb6wZg9b-fmh_ww,1124
1638
+ xinference/web/ui/node_modules/.cache/babel-loader/1786b83003b8e9605a0f5f855a185d4d16e38fc893dfb326a2a9cca206b4240a.json,sha256=fCDYVXpK52KLnNanxUR0j2UftM0ytozgSleR2cKKlXA,8473
1607
1639
  xinference/web/ui/node_modules/.cache/babel-loader/1787f7fb1b2c2d9bf10373b8c7a69ae885cd84a4b788ad7221b323a125d7f764.json,sha256=ro8sK4vPndrNPoYqe_vXGF77kdda-H5Cl479Mx7UvYM,2038
1608
1640
  xinference/web/ui/node_modules/.cache/babel-loader/178f3766fef58d920686a364f7f5a7abc8a3f307e9de3dc78eb1b53446c9c561.json,sha256=y5x2Z9e5hegzRDhHv9RlTSMwxVoCfzm-l4lgiNBPU-E,2891
1609
1641
  xinference/web/ui/node_modules/.cache/babel-loader/17916b50ec0ad13aded0a410bdef8fd215daac23bcb098e3dd789916a90a0ade.json,sha256=g0E8SIx2Mhyt8yF5zGqO-jPGuGw1w2JfeB1sxGLJi2Y,1478
@@ -1623,6 +1655,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/17c1cecb450f35b3d90a149be44ff
1623
1655
  xinference/web/ui/node_modules/.cache/babel-loader/17c5bc7d30704bb451c7f3879030649121591b9e57963b0352de7593cdbb12e7.json,sha256=o14J_uI0XE_EyPFfCKBKkfZf6HHKL4XWzNW9KgkrPqw,1042
1624
1656
  xinference/web/ui/node_modules/.cache/babel-loader/17c896d3553233ad481f0ab9752ea7179bdfa08fe7ed1bd41308f3298792a091.json,sha256=WnEyav0IBubKJn1eAo0A1XfLVUTXYQFTYcNZ3IQwyQM,1115
1625
1657
  xinference/web/ui/node_modules/.cache/babel-loader/17c8e8a06dd2ef42503456b273b0ef2056cc742723e816b017993a2a208cfde4.json,sha256=E7KhmuvvACwLIggJlaowiTFH1hqTc1_FDLe5om2lrhk,974
1658
+ xinference/web/ui/node_modules/.cache/babel-loader/17cbc181dd674b9150b80c73ed6a82656de0082d857f6e5f66d9716129ac0b38.json,sha256=z1ORowA_6UODcAJXjSwZyuVp-rn54fuNuhbXQ9HqpX0,10177
1626
1659
  xinference/web/ui/node_modules/.cache/babel-loader/17d873526e2a72dbf3ec7a14e0fbd843eb74b5f0a8d6408598e3a28affe955f7.json,sha256=asGAgf3JTyzfQYU_VGsWAl8HNTy8Rih9m8JwVOOtPPQ,1440
1627
1660
  xinference/web/ui/node_modules/.cache/babel-loader/17d91e5285d87aa6895b6d8a99f5ef97d6d03139e154bc1079c27230a1f797ad.json,sha256=Wmpxzs7fugN3w_kZcXXwsREXlyRc6k_lVrZ1SBc8FXc,5957
1628
1661
  xinference/web/ui/node_modules/.cache/babel-loader/17e105bd32d2030b914126dbb91507d53d20dd3c6766046d09d56de0268cadb2.json,sha256=IJGjevMqpoRdHHnfoDELE2uv6UtclBxlHydm79_h5O4,1391
@@ -1651,6 +1684,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/184f05dd485735635373312d62ec4
1651
1684
  xinference/web/ui/node_modules/.cache/babel-loader/185516f39fa16b5b99044cd7c180a01b0ed81d08b68c0788e24d9cda88d0e562.json,sha256=lg0R3sQ2Ktk0sC35YXmubGqktG6XpCFmJtstBVQqCXA,61809
1652
1685
  xinference/web/ui/node_modules/.cache/babel-loader/185ad3c6b393b8cacb29ae482cacf09bd2c8f06ecf36ab3734a3e318e0c486b1.json,sha256=vBkZMEqfTe-e8sSM32UzCtlydCA-veA5hmtdlH8fdko,3849
1653
1686
  xinference/web/ui/node_modules/.cache/babel-loader/185c00602b71a4543f22396585e3a8d5a1207ae917347fbaba10d36ef89dc2a2.json,sha256=ctozJeM3VP2yuVIQRzcphsLh1ZI-h8eeJVf1Iyo1yes,1854
1687
+ xinference/web/ui/node_modules/.cache/babel-loader/185ceb8872d562e032b47e79df6a45670e06345b8ed70aad1a131e0476783c5c.json,sha256=8HgGowo2_0_BWzgeDri10IUp6AZ1TZ1dPtIfXV7gUbg,28373
1654
1688
  xinference/web/ui/node_modules/.cache/babel-loader/185dd894710a91115025f69ef2813bff214a416a905d4a780aa07048c0f850cd.json,sha256=iImRFWV8ZDHprttSoZu9fkH6UiVd5xO_WUfnXmOxPTM,514
1655
1689
  xinference/web/ui/node_modules/.cache/babel-loader/186b515e5d45fac7c5c2ec43bbe5d538f837a44e6204570c6db15359cb6e505f.json,sha256=gQu9-YDSwdmCVAX6vMyWfOpXi92jc17YZpBCKzM9ChY,394
1656
1690
  xinference/web/ui/node_modules/.cache/babel-loader/186e94139e4db3ced8869e597c8738730c0d9f53ba2e66de9659bd3a6b833813.json,sha256=LBr4cG2AwJjx6zX1zCG1Gb0puVhVw9DP7-seFc42Cj8,18759
@@ -1984,7 +2018,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/1f0deae01578fdbb2e4fe3aa84d71
1984
2018
  xinference/web/ui/node_modules/.cache/babel-loader/1f0eaeadc6f14f952892d8e1d1ef9c018858d5b8fc3169171528d5a421d94c12.json,sha256=YN1U6scIwDx38cKZianJJYaAa0UmNB3hWuobzRIj4aE,2551
1985
2019
  xinference/web/ui/node_modules/.cache/babel-loader/1f19f87b31995a7e0941c73cb67ff5a76eb7c6f75b3fff4b1cc77ddff80cb26d.json,sha256=cU3GM8dIR0hRYSaK5t8X64i1Ad-UoJ7uyY_hhW-HUKE,3367
1986
2020
  xinference/web/ui/node_modules/.cache/babel-loader/1f1d9117f2087b12fc62beafe6042f095acefb9140b73f649db9edef972a365f.json,sha256=HUbVhH5PLGtW9jix6rfUQOReZvJiDLJKsnpQj6XYuFY,1647
1987
- xinference/web/ui/node_modules/.cache/babel-loader/1f269fb2a368363c1cb2237825f1dba093b6bdd8c44cc05954fd19ec2c1fff03.json,sha256=3DyToakwRRmXBb1hPfP7VmtRlSY68bKzlZwR0dRot5I,192892
1988
2021
  xinference/web/ui/node_modules/.cache/babel-loader/1f294c4169dc2d8cdaca1cd27940f6e6941f70209b1cebe9d449e835d5c6eb28.json,sha256=bmNgAW76mPuhpbOK4TXdsLs9YFCc4gO2NejpUkz_7t0,1298
1989
2022
  xinference/web/ui/node_modules/.cache/babel-loader/1f2c12505a685c1e3cc66d827d92c5d44a7c8edef321e52be506d7e2643ac111.json,sha256=Vv8gTYqfNsa-R6Fb7KfHiZJmwaENu98WBs4qHRTlz1Q,2208
1990
2023
  xinference/web/ui/node_modules/.cache/babel-loader/1f2e0ad8c35274f80291deca01344eb29cf465b155a2dca6047d7a0b70b8dd96.json,sha256=znXFSAgBsWcQa-piTKWwtbtuumjmqObAhwMIntiqQRM,1578
@@ -2143,6 +2176,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/2209837e3dec6a6d671039bd8a41d
2143
2176
  xinference/web/ui/node_modules/.cache/babel-loader/22115378a90065fd3e7763dd7a5028d6bc33836160f5e52d4060205b79f9f791.json,sha256=Hwx2oLYIK6BMd71oW-Hu7zXnFUgcAxz-mB1VqE7DDLo,1345
2144
2177
  xinference/web/ui/node_modules/.cache/babel-loader/2211b1bb74632d4ad20c591921330b81b71701b6275b909a7992415304baa267.json,sha256=z5xNeuuIPmvJ0BlOrjL8Web--p_x5g2C5Mgi4ayRMyA,1006
2145
2178
  xinference/web/ui/node_modules/.cache/babel-loader/2213709b7e9f1984b1878a60d2fb5578b8e2e97d1bbbc05ac8bcec64439dfce2.json,sha256=vxJwFx1SSJPFGbB4vCPjGiOzMPQ8YAF_EMRX450awmo,2067
2179
+ xinference/web/ui/node_modules/.cache/babel-loader/2213d49de260e1f67c888081b18f120f5225462b829ae57c9e05a05cec83689d.json,sha256=26DJ75g3Op9vTfYvBv1nA17vx2PqDA1Ey-xCr0wP3NY,207095
2146
2180
  xinference/web/ui/node_modules/.cache/babel-loader/22153206becd53da2d627735b9f342526acde720c539f25b6487bc6c72631c43.json,sha256=vA0GKmhGQC00meMQSx5jNPp9_P61Pg0fRVktf3DOGfg,1671
2147
2181
  xinference/web/ui/node_modules/.cache/babel-loader/22153d21beb9730f33c51c2efbbfeee895a5f170c612457a8f0e493ff0d44191.json,sha256=7z6Dtm_gE9zcK9eirJemWt104JcGvlp7s3n1buOkZzk,1570
2148
2182
  xinference/web/ui/node_modules/.cache/babel-loader/22176c85523cf046c50517b5e594c37ffd923e4840cfae0995fd3637f005637d.json,sha256=YdD-JD1RsyeP3LKDABQeJHKwBbWY4IdMPhkrdc55rzA,1574
@@ -2337,6 +2371,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/26a298a9e319e64cdc593e358c14b
2337
2371
  xinference/web/ui/node_modules/.cache/babel-loader/26a484a67b28a62b99825bfa66f09999724e279b3e978bae0870cbf92692b33c.json,sha256=3uXBucJyVb-V5ioJbxOIPLN6Pjf8J8lO0J08Zci1K_o,1202
2338
2372
  xinference/web/ui/node_modules/.cache/babel-loader/26a4ce4a8ce3a133019b8fcb13faf3ab5a6d34bff170e77a9c1817af05b6749f.json,sha256=3fxQBcIV0Vpkq7lvGhd_4iaslV_fJBU7E2kUf5Yz79E,1467
2339
2373
  xinference/web/ui/node_modules/.cache/babel-loader/26a528c5bd1c58c3257da3e0b3cac23ae40235160cfd47d27a6dfeba125039d4.json,sha256=4QO3RiDdiRT5nXNMt-9THOp10lgQyMIqg5xsN0bq03U,2007
2374
+ xinference/web/ui/node_modules/.cache/babel-loader/26b8c9f34b0bed789b3a833767672e39302d1e0c09b4276f4d58d1df7b6bd93b.json,sha256=c-G-IkoqCUNIfcSE-yc1yK3Xa3Ay2PQ3SKXOKi_Cq8M,15360
2340
2375
  xinference/web/ui/node_modules/.cache/babel-loader/26bcfb9013d9a5d716b2e3efd5709747a8c790e8a782d820a5edb859e9a13236.json,sha256=MTnTRdGKI3hExeT3lR6bTeuBSIDps2ifEe8sv-mxkQg,1196
2341
2376
  xinference/web/ui/node_modules/.cache/babel-loader/26be6514a86c28efeb47b36f5d525d86ed61e57702e0911e0f6df0202a95023e.json,sha256=P42RcoVNddYWdrKKK3gb7Cti9klB9sgyKGl0PYUTinY,1685
2342
2377
  xinference/web/ui/node_modules/.cache/babel-loader/26c02803ad20abd403d055b24c9d7a53a701f03cc71b15f0fcc09cd8b3b67f18.json,sha256=oCEGHJHXgJCZ8pNyzjoAZjW36bZ4In7ACIOh1b5PNEY,1970
@@ -2534,6 +2569,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/2b35ecfe91a22af15d2d011b5cd75
2534
2569
  xinference/web/ui/node_modules/.cache/babel-loader/2b3ca82b3694713348668e9899c723f5e5e332c8520efc649cb02a5a5205a446.json,sha256=hvwp0i4570s814aTeo6zlu7aIyEvSzybee-UpGvNaYQ,1191
2535
2570
  xinference/web/ui/node_modules/.cache/babel-loader/2b3d3d6d6e6aa6b3b81ea9d5c6b3bddd5751ff7c93e067744cb6999c81bdb241.json,sha256=bI34ph5eoukz2ke-8hV8cdswPWCDbu9OZFwfjikb1cM,4868
2536
2571
  xinference/web/ui/node_modules/.cache/babel-loader/2b4333aeadc51efef787ccaf8bcdcdc43a6ce5d96b344645cb7fc30055c4604d.json,sha256=GUq5GrgxI-KKZGGdhRpmULTfTqeslcm18tftXkdymEg,2392
2572
+ xinference/web/ui/node_modules/.cache/babel-loader/2b484da66c724d0d56a40849c109327408796a668b1381511b6e9e03baa48658.json,sha256=RxoA3uygHTPSbzvZd-6PQkDlevnOPekKGJbuk8NxNsY,9211
2537
2573
  xinference/web/ui/node_modules/.cache/babel-loader/2b4aabf9e820a3a33ec15c6562fa7fa4af431ea89e2993d51fb25f1fa741b59f.json,sha256=hJDu14kOuXQfZZ0wyAN4RaEjTx4bSWZfwKFKrPiaGWs,1736
2538
2574
  xinference/web/ui/node_modules/.cache/babel-loader/2b58cae2c6af71cb253da9aa37ff4e21142c634bf9b3ce0551c2aa0a095227d4.json,sha256=3LzIXufOI8STCrdPqbfJkLpvnlEonZe-aZN_dY9H7-c,1511
2539
2575
  xinference/web/ui/node_modules/.cache/babel-loader/2b5b405afddb46c521bda7efbd3df70aca8eb5e9ad8436dc18fa996b51b18aef.json,sha256=nXQWRpDX_xwRu0Tverf38iw2P2nPYk840IKrQbiFmqo,1044
@@ -2603,6 +2639,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/2cb2d066e281d9970a93b87635b6b
2603
2639
  xinference/web/ui/node_modules/.cache/babel-loader/2cb386cb654ce7fb412a0c9799af5c15110f5deaac73cba8804c9e7d184e3f73.json,sha256=eSrnmIT2iv6h0nyPQoJdVij9T3o7xF9iMTqdWiywDhw,1493
2604
2640
  xinference/web/ui/node_modules/.cache/babel-loader/2cb55fbcbaf4dbd62da5e1a4730ed4cca5f43cba4a26e86d72a38bd65f964607.json,sha256=gfJm1FfoFTqPxs_EbnuE3B5Wk7HIXoqHlkHHl-H4kD0,1095
2605
2641
  xinference/web/ui/node_modules/.cache/babel-loader/2cb5d1ae78b2ea5cad9a139a497451d23682ce740f479f21e3e7aa281050f5a1.json,sha256=nUGoYE2LjFz7SKlhofFAif3M3QItXYC47q1HyyT808k,1898
2642
+ xinference/web/ui/node_modules/.cache/babel-loader/2cbbbce9b84df73330d4c42b82436ed881b3847628f2fbc346aa62e2859fd88c.json,sha256=WoEJJRHPOhl6np9T0i_F6_QCFaYJ6a7bzCUEPcXyJ6w,1104
2606
2643
  xinference/web/ui/node_modules/.cache/babel-loader/2cd6660dd942bd9adbe85e470c058c73e70022126a742f9f1324ca22100200a1.json,sha256=d-4tP0UAKun0H0HPkzzJY3gHDCtADGfyEcU-3j3SrVk,2115
2607
2644
  xinference/web/ui/node_modules/.cache/babel-loader/2cd86096ee7aabd9d196f7fa8808ebc0fe4d67d789de4ca19e7089c8869c620c.json,sha256=UdMUuWlxxziJ8ATuRLW0XjMh6F4_4KtTYmpzMqM9K4M,1134
2608
2645
  xinference/web/ui/node_modules/.cache/babel-loader/2cde3ba9b4bc3f1fd0997b5b51110fc26bf2a99924cdc5e6bb7e9524a6eb60d6.json,sha256=kwV7maxoLCoqueBR0CeLwtFmNClYA_rHIsP2u6r2OHc,1736
@@ -2681,6 +2718,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/2eac57fda53a86f9b9d927f5d2e52
2681
2718
  xinference/web/ui/node_modules/.cache/babel-loader/2eb191c2010af4d286fd046e473f1fe65b9505bffab5b70fe6b78ec38290dc75.json,sha256=lHbmdzUeouiZpkbYNmnoOdPfZDzrVfHZDk-7tHysjv0,1144
2682
2719
  xinference/web/ui/node_modules/.cache/babel-loader/2ebf3eb66fa4c5398f20dd4e00c82644d86f5284088a883846266d4db3894b2f.json,sha256=59NKWyEJUx4BkJzeV-EsASX9_rVFfhAAKz-3mRsAMuA,321
2683
2720
  xinference/web/ui/node_modules/.cache/babel-loader/2ec75af6431fd015f975c7370707afcac9d8ed5ba0bfd688ed7f50d366715ebb.json,sha256=Aii4rAIipaXi3gqqTJC2X5oUbRF97ubNDJcjaK8AYcY,1211
2721
+ xinference/web/ui/node_modules/.cache/babel-loader/2ec9b14431ed33ce6901bf9f27007be4e6e472709c99d6e22b50ce528e4b78ee.json,sha256=j9Xh15Fqx_EANbZcP415KVgzrycNI0wQOuAXOfXO_kE,10572
2684
2722
  xinference/web/ui/node_modules/.cache/babel-loader/2ed1f339ac0a50c609e63270d902e52685779195ec6401d8e46eaed975bc2c23.json,sha256=amzAtrVPQnOhdNoEC00MqPgs7yPUeyTPfQDOUr1JJdE,735
2685
2723
  xinference/web/ui/node_modules/.cache/babel-loader/2ed3b287d688d7cdec4067948bd6faf843b9040ccedf2c2b51c91a1a2f3d9706.json,sha256=SH2UUf6iZb8XZvZ_V5_u0EedT8H0iM4KYH_DywiD15k,1136
2686
2724
  xinference/web/ui/node_modules/.cache/babel-loader/2ed9ba84201ec7415c502c6dd6dbc795b689630521956c86e4f685e1bccc0adb.json,sha256=rBan76_m9A3jglKdgZF74C_XQ9oTjP_lzsyAFAzk9PI,1819
@@ -2910,7 +2948,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/3300669f95c2d8bd67dcc62aa3caa
2910
2948
  xinference/web/ui/node_modules/.cache/babel-loader/3303459412aec3e4cfc7efed7854d83837221e9879cf33cd2f67b5a1e9a1a65b.json,sha256=mdlln4XhnIbEY_H_EaDonf3h4Vv5qZDe3qPHt_C1Ivw,1203
2911
2949
  xinference/web/ui/node_modules/.cache/babel-loader/3307e6cd4416cfc309e05d82fd7dfed1466d3b89e0fd948e6e84ebc6c87c9750.json,sha256=exd_-4C26XY7VpcBvppsuRmZWbkAHvQfTormMVYebR8,1064
2912
2950
  xinference/web/ui/node_modules/.cache/babel-loader/3307ee7c63b28fa439d456906a88f41631967611f3887179bf7cabb03f721b29.json,sha256=Oc_cF6SA24aH5kGQj_GkNNLzspWc6AAcILil2j_VTGg,4637
2913
- xinference/web/ui/node_modules/.cache/babel-loader/331312668fa8bd3d7401818f4a25fa98135d7f61371cd6bfff78b18cf4fbdd92.json,sha256=YsdHsJobvLYgYr4igfB_SsBZ9ma0Qb-KwSLHd976JUs,39066
2914
2951
  xinference/web/ui/node_modules/.cache/babel-loader/331bd51a1950f043c0d3c1cddcf19155ceabd4f00400f0f38a21a0f58473fa58.json,sha256=t6Jt9_tqfpSb8hPLnEx6yitGcatvmRux6iIS-ThuIek,3671
2915
2952
  xinference/web/ui/node_modules/.cache/babel-loader/33212ab361709ccf155fbc8c357901f3d7d20d565ed7597802f000bcbce6abde.json,sha256=soKdMsdcms1CiTQeJ9p9T0KjfbJwhYkYSRGXBQQfIqk,1334
2916
2953
  xinference/web/ui/node_modules/.cache/babel-loader/33276870546310026d6b9ea4270fc3953d1907af9251a05ca89267287aba9bb1.json,sha256=xUvKrv-2j69Ijhc3wK3drZe_TIbdeip5ZgjaGWBkaN4,1872
@@ -3285,6 +3322,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/3b788d16902eb54d65966af70cd67
3285
3322
  xinference/web/ui/node_modules/.cache/babel-loader/3b8cb63ce37cdf807a8909cff43497776f200d8fdca7bfa73dee33ee507b8822.json,sha256=wkZQPLC3NtvT0FeGpH_NCVIS79a9AkXrRCgvsUO_6I0,1550
3286
3323
  xinference/web/ui/node_modules/.cache/babel-loader/3b8f3a7279e46f551c697c4fa4a9d3e13d96937840a3b755b508715963fc9028.json,sha256=viyICcmcDZL9yMPGCinbXdfWxiQqOtoB26Sp94XjGuc,1473
3287
3324
  xinference/web/ui/node_modules/.cache/babel-loader/3b92f4624877195373b55f64469633c061752e165bc60f48abef67cf27b76fdc.json,sha256=UUKD8QQ5_IseFrxbrmbqove-INiUzWjY7IaiKyJol2E,1259
3325
+ xinference/web/ui/node_modules/.cache/babel-loader/3b966db018f96be4a055d6ca205f0990d4d0b370e2980c17d8bca2c9a021819c.json,sha256=qo9HSQIb0fJZYcgPvdleuaMlpsCEtInc697p6kj91RA,3149
3288
3326
  xinference/web/ui/node_modules/.cache/babel-loader/3b9671bf3b6ac2e33d78b57f77faa7779e169d183a7ce5c4af92b790fa262ded.json,sha256=a1I2XyhzGIP0__weJNg_LsgXAWMquV2tTOmtQURRkp0,3338
3289
3327
  xinference/web/ui/node_modules/.cache/babel-loader/3b9bfb92bdaed19cfb7b895da34054fd639f80984f6dd7ecc0656cb79c43bd81.json,sha256=1QhNbapIF4UPuYSj4u10qCygs1g17H0rmNt2qk0DRbI,3392
3290
3328
  xinference/web/ui/node_modules/.cache/babel-loader/3b9d68f7e44678a05ae1903b426f4c80e29797dc346ce10d9cfa4a12da1d209c.json,sha256=umAKpmZJVj-aN1Hj1KnDNV4T9jL6cy4dnGX__Xrv3fA,1366
@@ -3439,6 +3477,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/3ed79fa3b286cb1b86acce91f4cbe
3439
3477
  xinference/web/ui/node_modules/.cache/babel-loader/3edb30e208f0f63f1726ea21ca7668e133ded37fc219dd255bc8e9bfced13923.json,sha256=i6MRsqbDmp69LVez4wRjd-g-v4qP3PkBNs7Lyp2NQgg,1575
3440
3478
  xinference/web/ui/node_modules/.cache/babel-loader/3ee8ce569a63d9bfc054971bcbe0deaa562d54c7b5098d0712b454919ecc3fd5.json,sha256=9dimZbvrmHVWNX7O6hFJGbORgajYLG3jnVpUG_lOZjI,2045
3441
3479
  xinference/web/ui/node_modules/.cache/babel-loader/3eea68a16058db7a9428f560b431ccb7e2f5acc5aa6bfbfc379526ef13f41fe1.json,sha256=pEMr4TpJ60YnHtm-54uA5LJyWrF3qjXD1be15hpFFgc,3224
3480
+ xinference/web/ui/node_modules/.cache/babel-loader/3eefb411b24c2b3ce053570ef50daccf154022f0e168be5ed0fec21394baf9f4.json,sha256=8FaJ3AS4nB4a9I1x6snlORXgbkAQsxkDXVhgX4aMDHU,70354
3442
3481
  xinference/web/ui/node_modules/.cache/babel-loader/3f01b1c8dd98608a9ede9a1981f0134555085b9461d16f0fdf9f5673e5813856.json,sha256=b9h8pI2FZkCo0SNVDvny2f_AO_V76JocF3B9WDPX2vI,2555
3443
3482
  xinference/web/ui/node_modules/.cache/babel-loader/3f0dc7c0c9b260f35fa510750802de1692c9e697400609dd2ec9a00e40a41b6b.json,sha256=qocMEopb4MNVKzWvAX5EBT06oLio_NuLnlCHbJZzbFU,1193
3444
3483
  xinference/web/ui/node_modules/.cache/babel-loader/3f0dd767b7093feeb41b25ec5df21bacf93e83dc5a4464ab0c8fd3d5d0e5b6e1.json,sha256=0IqkTPPQbVeLEaLSTy1qU9-aFIgo_M6wJ-Y0zmjqLEM,1137
@@ -3537,7 +3576,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/40e28f8804e130097296aec7c1aae
3537
3576
  xinference/web/ui/node_modules/.cache/babel-loader/40e4776435d667d93df97f72c9979d308c545a2f38985134cbbfa64814c0daac.json,sha256=HepWvFtjw4YF9kis1lzlyAyg49p2n9nevVkSA7GFNkY,1089
3538
3577
  xinference/web/ui/node_modules/.cache/babel-loader/40ecc49d2459d0ca6162729053d8102621639c934e7e0e25cdda850215875603.json,sha256=2Zxc4WEViyYlY6o_mvcMCejl7GkXhV9_FXVd2j8DAFE,1299
3539
3578
  xinference/web/ui/node_modules/.cache/babel-loader/40f086ecd7508ca80eac72df9cb83beffae2b13512c717b6ed34fa6215a89692.json,sha256=VpzF9Pj6WuMAcNNl8ZgaI_Wb5P3ogh5XtjAlUF84XpQ,2286
3540
- xinference/web/ui/node_modules/.cache/babel-loader/40f17338fc75ae095de7d2b4d8eae0d5ca0193a7e2bcece4ee745b22a7a2f4b7.json,sha256=cZrFpJVdbuPx6Hjrzl0xmxjYREyev1AsZWBRU_nvJ6Y,19506
3541
3579
  xinference/web/ui/node_modules/.cache/babel-loader/40f1b02c8aa0868c1ae23556acdeb6adfe3fa0f4d881d4008127cf9206dc71a0.json,sha256=lNR4JzsCN7UvvCN9j6cvQLsvsoofC-TavOrDAqVOF_g,1568
3542
3580
  xinference/web/ui/node_modules/.cache/babel-loader/40f76393b7ea099a074fb036f5de54c0e1d83217fc9018867abe87e5764afadc.json,sha256=72SK64JXnRWUbHqmbXlL9C1vQ0XDHnCv5MX0IbqjhDA,1513
3543
3581
  xinference/web/ui/node_modules/.cache/babel-loader/40fc5bf1017da96e74e0fe7c73921018b5ea17d84b347e06fc134d44d83920cb.json,sha256=DPWzdGtCiHVfc0MMiMXl21i39ObmHcEZqFYogxLdiA8,2143
@@ -4140,7 +4178,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/4ddc2f4abdb26b7702b8d6efa06c6
4140
4178
  xinference/web/ui/node_modules/.cache/babel-loader/4dde5b1a98cbd1f46965d40abcfda42aecf2eeccecb0d8e02c79ded9e5492e67.json,sha256=YYQd_FBjMz_Lj2yULfVsXK0yje8VzSejcJyBAFMJ9w0,1319
4141
4179
  xinference/web/ui/node_modules/.cache/babel-loader/4de35f342fb64c610c5f9b3817986698f38defc8f0e41b1e75f27b3f6d79a912.json,sha256=up__YhEd1JO0rdaDC9dKYKMHe88uI2wrZKSGRTezhSg,1507
4142
4180
  xinference/web/ui/node_modules/.cache/babel-loader/4de90c3af82b41c0a7824b2197310fdce5c6a27e3884e3e080e804b87f121275.json,sha256=vkdAXfOe0fXOU2JvuTRDKRo-uuCLXe9Gx_ZHQPJymmY,1439
4143
- xinference/web/ui/node_modules/.cache/babel-loader/4de9a6942c5f1749d6cbfdd54279699975f16016b182848bc253886f52ec2ec3.json,sha256=z5CfC6Su3CQ6mQVpWfRadjufaMp5FgcCWEN6uKRWNJQ,8738
4144
4181
  xinference/web/ui/node_modules/.cache/babel-loader/4debf275167eb48c717464de9cd4f81837fe5aad0b5bd9788fcf920a123c744d.json,sha256=nmfGj8qpKAWj7f17-UOB3I-hrWYt4NI_hHzqtV-Hp30,6077
4145
4182
  xinference/web/ui/node_modules/.cache/babel-loader/4df0db29f4d6297df1d67f816277f5287feea40861f9603339a8959bd3958457.json,sha256=moVb0BtmWbJt0ReqWOeKxzel9fcZlfkZuWUyXSVYUdw,1579
4146
4183
  xinference/web/ui/node_modules/.cache/babel-loader/4df174457f9df3202cd7ac256bccc3a1e3f5d5e78a8733da57b9a4b8e4e617bf.json,sha256=4g54PcmHf6AdvKuQ-lMpoSzjr6krz_ea9iyBYlh9Qrg,1652
@@ -4359,6 +4396,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/52016920fdff1c4509adaee64421c
4359
4396
  xinference/web/ui/node_modules/.cache/babel-loader/5201d06ac5defd034c83ec1110be85ac596770893ff0498906dc8cb55841ec9c.json,sha256=hLWoz8beS0X2UaECIgEmwYBkNifSBdz8dck-wES7n5s,1838
4360
4397
  xinference/web/ui/node_modules/.cache/babel-loader/5223cd6ccdec5e18cb06688831c663deace48475599c0ff8bc2384126b6c0325.json,sha256=X_GYvu2kZeZFY6UAkPO5dMnWCrcCQD6z4UssD9LBWhw,1341
4361
4398
  xinference/web/ui/node_modules/.cache/babel-loader/5224503bdc579c055e3745b1c60e238622193131afca981aa0e98118b4f9fa13.json,sha256=0sCJQNMgUjTEVDAUpfMc88E5vDLm1zBXxkifBrxi_q0,1334
4399
+ xinference/web/ui/node_modules/.cache/babel-loader/522b229e3cac219123f0d69673f5570e191c2d2a505dc65b312d336eae2279c0.json,sha256=GnRqB__YJnKUaL9uwZ8A0is_nQ5Qm0NNLhU9VdFZqgU,5505
4362
4400
  xinference/web/ui/node_modules/.cache/babel-loader/522eb0f99109f286cda00e2958e6cfcbf3899facdf8db1c7555cb0270f939828.json,sha256=ucE-6y3W-i6FcKDA3tBRgyxlUtzAkv16lduudPsptqI,1084
4363
4401
  xinference/web/ui/node_modules/.cache/babel-loader/522f91aab55aad16443ef8d03a81f4c36976889d3b7865274077be8d9d29b842.json,sha256=fEyo6t6525-I0CXGH4soFe6yBcCetfd1rYexjkz9Qds,1339
4364
4402
  xinference/web/ui/node_modules/.cache/babel-loader/5232296e72d80755bacf0549eff9f141e242eb089ffe5db6ccb511fb19a81395.json,sha256=tLCpyW5U8Fhu3bxkYXrqW6VG5QYNjsvh_Q32h2Y9LZc,2021
@@ -4396,6 +4434,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/52df5a285c60f0b74e4885c00de00
4396
4434
  xinference/web/ui/node_modules/.cache/babel-loader/52e07c5b52cf12df892e4390e2de6adccffa0655c3c7da4bbbdd05e56840bd77.json,sha256=6FrhU9r4o7PuKPUHfSwA4Ip3JFjVTbN0kNvWUqY4uis,1297
4397
4435
  xinference/web/ui/node_modules/.cache/babel-loader/52e14defbb3473be2e09a8199d050f13c437c472c1f8d62ff1f2d863f1c64fc2.json,sha256=jrSS4I1gNKUI9t7pmKyhlUB-bh8cSxk-Df-UvEPSw5s,1051
4398
4436
  xinference/web/ui/node_modules/.cache/babel-loader/52e44aa9e62c175a3c77cbb6d11af83b544f165c3fe6b04513f650f6efe60eac.json,sha256=_Shj60mzpR_g79V18TFc1UsnpIdEifro3q90Dbwv3GE,1209
4437
+ xinference/web/ui/node_modules/.cache/babel-loader/52e45f17ba300580ea3fcc9f9228ccba194bb092b76f25e9255af311f8b05aab.json,sha256=hjILO2mMI7OF2piiROTIita4iSHJXhwQ54XEUrYPZt8,1395
4399
4438
  xinference/web/ui/node_modules/.cache/babel-loader/52e4b53d2f7f5562bccf12b0e5c55f62a6647765c6c016fd0ebb017e1c0ff303.json,sha256=M0azqwwMkMjeCYLccRxbwsT8h2dVsbTPrA_ZB69t9yY,2523
4400
4439
  xinference/web/ui/node_modules/.cache/babel-loader/52e7c7bf8a5098e20602747af2c5f8821c3441a735cbb4640fc4efa0cf44840c.json,sha256=JFdkiqICcDqf9C4s4J7y0ewHR4IrQ9ZJuvOhcOUpmTk,1641
4401
4440
  xinference/web/ui/node_modules/.cache/babel-loader/52f38d054ca236fd535dcbc8f9d5f8eac134a6751b8f423c1ec141eb892c327c.json,sha256=caOPBa6t417YdMaAguxCZqiKl30jkB4zskMr9cRKRT0,1066
@@ -4745,6 +4784,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/59ff8492d14ccdda8bc4a28cc9783
4745
4784
  xinference/web/ui/node_modules/.cache/babel-loader/5a01f23a196a44d945731164afcb6e5bef014d14948072d3e0fb0cf08ac0ddb4.json,sha256=8C0iD2VqIXIubSZKjO8DFwXuhflI6DavliVXS0nzdXw,1019
4746
4785
  xinference/web/ui/node_modules/.cache/babel-loader/5a02f1726b297d570d520082c2fb987b16bb4986c07b278ef323133c537545c7.json,sha256=XWQcR7fQGu2JYFfjlAw8m2aP4i8INZeL131DQy25YMQ,1685
4747
4786
  xinference/web/ui/node_modules/.cache/babel-loader/5a079f8b8e0813f1a8869ff15ce4ed63382000601a4bb63867400eea26ebf407.json,sha256=jraFIlRpyUO0O-xNgFD3GsVBsqvltZpnjqISoid2baA,1587
4787
+ xinference/web/ui/node_modules/.cache/babel-loader/5a0bc4631f936459afc1a3b1d3ec2420118b1f00e11f60ccac3e08088f3f27a8.json,sha256=x0NhBiUj9H_yZlHLxkSqc0GkW17R158AU3iwjuvl7c8,14395
4748
4788
  xinference/web/ui/node_modules/.cache/babel-loader/5a0f59788095fef5448fc0f4d2ac4db102728a93bd9740317401b0b137ac856e.json,sha256=gjtEqjP1Ps8BGhlJrqsgpStZKvmRjs4A8eMhcyJpItE,1745
4749
4789
  xinference/web/ui/node_modules/.cache/babel-loader/5a109e02a7427aed52941ca5dc9a3c594acc377cdc27ac6c6d1776a4bd8d5dae.json,sha256=_91nF5qkTcyPI4B0XuEcrNJ140EuhkUDma6MpGWN45U,1571
4750
4790
  xinference/web/ui/node_modules/.cache/babel-loader/5a1634eb7ff823853fbe8884c49545cedab128c60d30857ebcafa6bdcdef04cd.json,sha256=TPbmKXa3jgKAKSRDgC6imPBrThKA-CBmunk5P3E_KUQ,1165
@@ -5071,6 +5111,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/610fd1ebce285eb4cafe7031c9a3c
5071
5111
  xinference/web/ui/node_modules/.cache/babel-loader/6112e2984361848a9cd06a22b424dc91903eab3b8d640ff0c921999e53eb4e7b.json,sha256=B0eTvYoLsshbfk5DgA7q_qi4YVGF20OJ1vtz54OHqhw,1378
5072
5112
  xinference/web/ui/node_modules/.cache/babel-loader/611596ee0f8ff76e5c1702fdb55d8e9a8eb5dde616172af6357a933d25d1a691.json,sha256=F3lQ_JYhgvalBx2JLCaOfVWx2h61O9QuID2ytlejSCs,1118
5073
5113
  xinference/web/ui/node_modules/.cache/babel-loader/611a48fc795aa94774209539b7e0082e429e13f10000bfc36317409244a675e7.json,sha256=8xvskpkogBWEd5pGngLDBDeaOOhDP505Hd5lqZBP1xw,1819
5114
+ xinference/web/ui/node_modules/.cache/babel-loader/611fa2c6c53b66039991d06dfb0473b5ab37fc63b4564e0f6e1718523768a045.json,sha256=5jXTqWVAq2JwblgcrZ5RxOmassmbkdpwruaP-buAAYk,39754
5074
5115
  xinference/web/ui/node_modules/.cache/babel-loader/6125acec36d74eee2556e1e4c21bfeff134ce531b5dedffe0bb5728252ca005a.json,sha256=ypOlqxOYRzWzaSM5gSsICWKaq8U2gStcAo7WTxCPD78,992
5075
5116
  xinference/web/ui/node_modules/.cache/babel-loader/61287623c0983cf9c239ba9d8d72e589cca0ea363ae1b18c23c484ffde8b1625.json,sha256=MTBnvKT_9bl6pC3wc0OnuSxD0BMBfsABv1dIJ56o7Ks,1217
5076
5117
  xinference/web/ui/node_modules/.cache/babel-loader/61339699378647ed9914a65d8d07d0a9c39d2f596dd591347180fa0eb0cefe41.json,sha256=-bN6pEc84td_n8CwAI5NKsoLP-dAJhgc8Adt7B5wVGI,1805
@@ -5167,6 +5208,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/6321abb2732d7772fdc9b320c6492
5167
5208
  xinference/web/ui/node_modules/.cache/babel-loader/63226739d7d691d8200fd69a3c5eb70a8489fbe8b50a2a22ecc41644da0c87ea.json,sha256=O7wt5EEa3TWHLfnV48GknmsEOH8kSW1fVy-f8m5g6yA,1735
5168
5209
  xinference/web/ui/node_modules/.cache/babel-loader/6322be48199bae9b836c812cba1737a0ed88ee9c5eea8c53ed89ab81dc48773f.json,sha256=3Kef4yGNNGqOWhPVnOeXfW1EN65tiK1EkKmi-smoKAA,2067
5169
5210
  xinference/web/ui/node_modules/.cache/babel-loader/63275053a9193f7830af3a4da02b9eefda717c221c478fadb9c01101c4adc4b5.json,sha256=8nN6q_B5r2gl30DPXgqN-ouBRykdjXNgp9-kgt_o1hI,33295
5211
+ xinference/web/ui/node_modules/.cache/babel-loader/6329bc76c406fe5eb305412383fbde5950f847bb5e43261f73f37622c365acb4.json,sha256=kLcrnDSBnKxDYhcrjh20O4DSge_dFezdN4wzszHhnqQ,45371
5170
5212
  xinference/web/ui/node_modules/.cache/babel-loader/632b4560412a92868a272f0c3770527db3d962d9e65f5c02db4bf50cf442fbbd.json,sha256=8Wxn0dGYNdTkLPGePNfqyObpz2-d-ZqfttCb3MNdlo8,1134
5171
5213
  xinference/web/ui/node_modules/.cache/babel-loader/632bcb0e6a5e5d4ec510a94f6ae3cb0fff459da9a95eee8fa1ae0fb786a07331.json,sha256=1StieQ5B3W_XYlNUz5hh4bLT1vrKLGXLqwKGZ_pZ9Cg,693
5172
5214
  xinference/web/ui/node_modules/.cache/babel-loader/632e40dab5881d0de792cf8fa16762e714c276bafad800e6f86a97c4eb8ff65d.json,sha256=nBfNsN5OcjNHXiYHfQv1Q-lt0lPJQ4OFC3KjW5JIbyM,1493
@@ -5193,6 +5235,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/63afb2a3263a8162320073b9ee04c
5193
5235
  xinference/web/ui/node_modules/.cache/babel-loader/63ba77ec04a4ae279cfb6aeea9e9f950291636efa7d485d3155574bb91511533.json,sha256=hW1drFyUhnz1uIbvFg8NofW9-7S7lfsftG8TCog6yxE,1641
5194
5236
  xinference/web/ui/node_modules/.cache/babel-loader/63c6d396ff59c6b1dcd89fa30c3fb6204bcb96f59a1627543709787c296ec53b.json,sha256=oqH-hwmFihiDBWFC_pIN_-aVL-35wEXJ1gHx6nDEGU0,2591
5195
5237
  xinference/web/ui/node_modules/.cache/babel-loader/63c73f739150151c1a5ff66e19abcc44ea6c42499ea785c37d1a7ae20996f0dc.json,sha256=Qu06k69NZPNaSUi1S-9TyMZaYN8dA9D1cqf6ig4AnVU,1912
5238
+ xinference/web/ui/node_modules/.cache/babel-loader/63c8e07687ea53a4f8a910ee5e42e0eb26cd1acbfbe820f3e3248a786ee51401.json,sha256=Xh9mslvMmWxqnQoT-hNuN1QelhUoLTwEEmvKHfJRCWg,32800
5196
5239
  xinference/web/ui/node_modules/.cache/babel-loader/63cda52729688fbb21b6fb861ea4b9466135805a95d48afd04f8473a614f133e.json,sha256=fq29sm9itvQfWd3mppozxr5X-forqDCU_exUnQDnW3g,1691
5197
5240
  xinference/web/ui/node_modules/.cache/babel-loader/63d01d83ad440803dee6c4f74479517b079fa57a9ab2fc93deecf28124176ada.json,sha256=WQC8zTcefN_z0QnQtsU1kuN-71qqNRVcBFGeKm-WLP8,1676
5198
5241
  xinference/web/ui/node_modules/.cache/babel-loader/63d657f6a0d163d3b2144695818eca9655e65d83ea3959020a42574d46154128.json,sha256=6OwiZ3MoTW3ayGjli9KAcnO4v53FapMLUjR-SxgCoXo,2078
@@ -5474,6 +5517,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/697916ddb88b51fdcd81979028f93
5474
5517
  xinference/web/ui/node_modules/.cache/babel-loader/697bf1c024fad9f4fae4f1e616ae9051ae6a09613092dc00fff919119b32b2dc.json,sha256=H3gUdRRGm5cXCAEnbKFxT_HauXuFGVzhLs1T24d5nXU,7643
5475
5518
  xinference/web/ui/node_modules/.cache/babel-loader/698e4278b92dc9081724f9c4d3923f692e7e4cb7c611d399b19169f294361ead.json,sha256=UOmU2ERd5Ss6uNtDTWFfzr8ZIsbyd_eSzmWD-J3wlNg,2504
5476
5519
  xinference/web/ui/node_modules/.cache/babel-loader/69927d7f8cae2be63dea6d52b4b5a0188148bd22f6bf02c7f2d58ae50398c99c.json,sha256=bP__kgfpUHCOXr-SGmn-GylwfYH1X2LwsNqNaMckmuk,1002
5520
+ xinference/web/ui/node_modules/.cache/babel-loader/69b2d5001684174ec9da57e07914eed3eac4960018bceb6cbfa801d861301d7c.json,sha256=2bv4DCCO6OWRuKshq_owZogX-Giz2zkOjOkKSKlnaWI,17561
5477
5521
  xinference/web/ui/node_modules/.cache/babel-loader/69b61dfa3aa3c9e867513fcbbd775870c5a18866a429117834ad571a38b06727.json,sha256=ilBSfutAUEyZg3I_gRHfi1mRm-sMhpZMAT3WydoKaVI,1307
5478
5522
  xinference/web/ui/node_modules/.cache/babel-loader/69ca61f1178b208c463ef4f13da1e9040cf0f8817b978324ee207dc8163bc226.json,sha256=-9xGugcqi2mwS9nlIUstxNlRQehYI_9k6cxoOV8dvsc,2109
5479
5523
  xinference/web/ui/node_modules/.cache/babel-loader/69ceecec15e99f02a3c51840355d8c13bd338db822de0eb9261f30e1afe1bc88.json,sha256=AKOWkQkFSKkHRhNPw-wo-yYpZb7gk60jIu-T-KcdEpM,18496
@@ -5803,6 +5847,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/70d5f030a5f671b9c06042f62e16a
5803
5847
  xinference/web/ui/node_modules/.cache/babel-loader/70da79a71662ebed2026fb4ecb79feb4887777176f73a0f568b72478a33f7b3f.json,sha256=efEbsnYyyR_igGtXkJSUndpQTLASdAUlNyFZA6jrXLg,2915
5804
5848
  xinference/web/ui/node_modules/.cache/babel-loader/70dc80957ce1a277652d04f1a479a20b6e102df248baf58bf0dfe4dabfd8003a.json,sha256=i7Kb9Sar0HXqIZZOq3xpV9ekZUU9n9oS1pQbtpTw1tQ,1455
5805
5849
  xinference/web/ui/node_modules/.cache/babel-loader/70ddb2ca58c0d4725ad9699591299fe5821ef6425e54342e60220b3e7b4228a8.json,sha256=e7IwlxFGKveuEiHZzy5JzzxjhqiWY8uLwf32H0KK-3I,10929
5850
+ xinference/web/ui/node_modules/.cache/babel-loader/710c1acda69e561e30a933b98c6a56d50197868b15c21e2aad55ab6d46649eb6.json,sha256=5iDcqRt_n55jZW3OClKh4SeNvG99YgVYJNju02V47P0,2086
5806
5851
  xinference/web/ui/node_modules/.cache/babel-loader/710c8ef9f0c58f471e5e79e62ea1665c0dd27274b6aa17d98fae9ec1cd1a875f.json,sha256=Qi0-MOKJ7Wj_68VrYoqhFcONZHxZB6sAxQ8Gdhc34UA,2773
5807
5852
  xinference/web/ui/node_modules/.cache/babel-loader/711377359cccf3e39fa8fcb3dd298f2bd58a216d7f88e8f1bea42164876127c2.json,sha256=bQ1Muh5KXio7zv9sMj4g_6RDbv7IqjaCRvwVIAX6E6Y,1057
5808
5853
  xinference/web/ui/node_modules/.cache/babel-loader/7114c7dc10079f40753a01b3e9ae5e4e7f407e679d91ed15d7a2b548084bd501.json,sha256=kmJfBdzwO39nG3QXIUbFQq8baCMqmpZsHJjzJtKVxYs,2226
@@ -5857,6 +5902,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/71f35bec81cda05cbf08ad61db19e
5857
5902
  xinference/web/ui/node_modules/.cache/babel-loader/71ff2ed6faa5e6cd4c978f2124c0d069fd0110b0d7687054743a16cb7f9eebe1.json,sha256=7ABbjXlaiBgYcb7J5jTR3kQY-rUuEJgewwJ7qkuyNFw,1585
5858
5903
  xinference/web/ui/node_modules/.cache/babel-loader/7202e0a7a0a58a435190873d9bec5c55f204bd408190bf582581f9e5004134e9.json,sha256=_ah_0KID-94HZda3m_N2FIYMv19fiMt9zz0lbVJK8fI,23291
5859
5904
  xinference/web/ui/node_modules/.cache/babel-loader/720cb4172fbbccac63ce7d55e1c6056cacca0ee958e7ed961d48bc35d8d2aba2.json,sha256=-qhPpjGGDAlWNDVHuAHSMKEDxXa6Ip5TKWjAhBmn5BE,1960
5905
+ xinference/web/ui/node_modules/.cache/babel-loader/720deca1fce5a1dc5056048fa8258fd138a82ea855f350b6613f104a73fb761f.json,sha256=N_NDwfhte2rkxc2w8kLKk6s-Jdzf4WuVaOF_bACTcVY,2503
5860
5906
  xinference/web/ui/node_modules/.cache/babel-loader/7223af040b1843bb23919d11641b3214866db57d98fe27b7e9bd849aee44a351.json,sha256=RVYp6ZwG0NXerPh69V1x557Cjd-xZpZ5pYbTQ0qsVL0,1086
5861
5907
  xinference/web/ui/node_modules/.cache/babel-loader/7224e13d9487bc2bfc4d6b82708756b57752fc3c6ffbcb031c292432a2beb635.json,sha256=wp3OVA-2nLnI1wR_rT9ijz2tkScdq6W8A2HBoJVPkxE,2822
5862
5908
  xinference/web/ui/node_modules/.cache/babel-loader/7226a6443b5676f8f61b5bcd59d7782221835234f8a5bbd4b2a32092b9b6f819.json,sha256=cJ4knFyLUbLlhnKBjpluSx6S9daIoeoVFuG3dEjQo8g,1153
@@ -6076,6 +6122,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/769a5f8ce2ea992df4dc1604901b7
6076
6122
  xinference/web/ui/node_modules/.cache/babel-loader/769a6967bd4cde261ad3f774f450b7902a57e7ee8f4fae1a3b34495c312a9d6b.json,sha256=pxJ_Ig31e-GfgkryiTQatYC-XCNMJKp35lktFSyCM8U,1201
6077
6123
  xinference/web/ui/node_modules/.cache/babel-loader/769ae4b8470c217eaa1012d6b2670300b95ffcb5fa8c0ac3c28a410d89c22c6a.json,sha256=Ux-HCBmCTPr-r36LxvOiyf7yW0zd72rwVqHvZyMxyOs,1316
6078
6124
  xinference/web/ui/node_modules/.cache/babel-loader/769f6d9e52a794e9f38d9cb2472ac99a9cf3815f9b157bcab2953d3f38769bf3.json,sha256=3V1OOrEOGTEHMZ_hQ09v0-OgxVckCgy0txQshi-rXpY,1645
6125
+ xinference/web/ui/node_modules/.cache/babel-loader/76a23b92d26a499c57e61eea2b895fbc9771bd0849a72e66f8e633192017978b.json,sha256=r1Aqi7ls4VnoTOJC7fSr41UHPqEUYudxTb5lUVn68PI,3243
6079
6126
  xinference/web/ui/node_modules/.cache/babel-loader/76a2603c6518ce38de7b33332e1f329974eb3dcb38ddf280af1e95e8805d343c.json,sha256=oEx3IQ8U6WBSSYaYQ5zyQLp6q0OV-INNEsHnbDhPJxw,1922
6080
6127
  xinference/web/ui/node_modules/.cache/babel-loader/76aba4741c9ff3c6f5cfe05a2583e8655ef0b9a5f1b1bd9ae1c0864f077846a3.json,sha256=fDywbKnpghSHNSZs4zXPi6zepwNiheBOysg35CJ44Kk,3035
6081
6128
  xinference/web/ui/node_modules/.cache/babel-loader/76aeb1ae2c43234a500a24e66da4306dd9c99a80bc2239071b7229a39315dd22.json,sha256=4TjnCfOzFDWU97WP2FCD5WjXHDsDxJ1aZjVaLtn2S_M,1889
@@ -6654,7 +6701,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/820d6af6f69c6351bf1be6003ebb5
6654
6701
  xinference/web/ui/node_modules/.cache/babel-loader/820f32b49da07859de991876c45f0f56386b1e70a068622633855807f46e287c.json,sha256=naWOwmxHXPsN7yzWxQH0G85A75K-m8DqHCGZ1X60D6w,1807
6655
6702
  xinference/web/ui/node_modules/.cache/babel-loader/8210c89820991a05d4a94b2a56924dd0e0f635d70e7a07ca52899b538caf906d.json,sha256=83r0W3JmeLXRtgeP4qNaNlnt3FL5uIvodp-CHJTibrc,1609
6656
6703
  xinference/web/ui/node_modules/.cache/babel-loader/8215785db426e6c57e23940c8e1589ce48932a87c87b69d87cf3f6c31532a5b1.json,sha256=wnRlQ_ZeCgA5rWhH3OBGVTu6s1By2Fzzy8_VkrlFg9w,1603
6657
- xinference/web/ui/node_modules/.cache/babel-loader/822586ed1077201b64b954f12f25e3f9b45678c1acbabe53d8af3ca82ca71f33.json,sha256=YknLwWtFDFLOCZdNx5PAdqvUyHZw3XVoQEdkc6Kam1k,13870
6658
6704
  xinference/web/ui/node_modules/.cache/babel-loader/822ad2ca7e442f2400b5e339681baa8effff51f88d8dcb23043f809b3386e2d4.json,sha256=_x3THcfp0D6zxTVsGEFqvuhdNqGnzMmRaopw4Wi2csg,1377
6659
6705
  xinference/web/ui/node_modules/.cache/babel-loader/82309763dcac6139d41ea38166b7d50c0e5671ec2ed9613a7d5f8b80b2b04c94.json,sha256=K-Lx8lZytbXcw7-WpyoIJLRInG7NLn4N85r6lvZjinw,1891
6660
6706
  xinference/web/ui/node_modules/.cache/babel-loader/823a141cb5bb91c87bec34e72078584fa58aa4de408ff3498eb1e51c767e3d96.json,sha256=-t8ddqRWVk1Kq8zLInkYRbxOxUWCcIFLUUKXhxO44to,2287
@@ -6817,6 +6863,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/8569dbb49c676f8946608031ed0a9
6817
6863
  xinference/web/ui/node_modules/.cache/babel-loader/856da3cd435b1979eb8fb4d1664a2e15fc0475318ed389297a67b2ee20ab1971.json,sha256=xjgCWK8zOWxgvGaFd9NhrQZJcvGCgsoXB0gB12hkFMk,2596
6818
6864
  xinference/web/ui/node_modules/.cache/babel-loader/8573af2ad6dfbf47c5775da4205644778d5e859adcbd8b143a22429a719ca4b1.json,sha256=XR9WuE4Cxu-JiJB3Mqel2BH6v7zZxnnmnbb4qgihq2E,1862
6819
6865
  xinference/web/ui/node_modules/.cache/babel-loader/857d578d8fc1a114b8831c0b190476b42e4ccc3c4f76c3a45b198b52637da030.json,sha256=fTzsbWtpB_eEl0sNIBbIbyMLDac_YnVqiz7TQ3Ox03c,2668
6866
+ xinference/web/ui/node_modules/.cache/babel-loader/858063f23b34dfe600254eb5afd85518b0002ec4b30b7386616c45600826e3b2.json,sha256=Ak_ecXSikmBTH5yOqirtiUbhk3j_zKurOAxmXl_QKNE,2336
6820
6867
  xinference/web/ui/node_modules/.cache/babel-loader/858a39c962d846261138942666a05970d06d00aaef77d2f982131dd156f73ea3.json,sha256=aaR4aixOjVvaesCsDLqymO-i8HKrVGuU56XgsOcZYYA,1556
6821
6868
  xinference/web/ui/node_modules/.cache/babel-loader/858c5166e58c266be1ae5b4e952fe782e92bc31a04a66aca1b5a6ad37382e691.json,sha256=VGNm4knzcqo-cZX4kl2H07-ulXc27MDdl9ob4RgOnCM,1361
6822
6869
  xinference/web/ui/node_modules/.cache/babel-loader/858cdf8644ef895ef79d9ad0fa7e359e20f08154b4dd10e8e7faf77e03c95589.json,sha256=ueRPKv2UUOVWyM1s2IBvI2zmqJzmIpCn5qJ5TQWwjJ0,1262
@@ -7150,7 +7197,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/8c5a08e9c5d9667198db3a7cc45ca
7150
7197
  xinference/web/ui/node_modules/.cache/babel-loader/8c5a2d0fccd50597ab4b3f3de8f42529dce51f00b58882c6b42911ed84052335.json,sha256=rxHXST-ejFa0qbVWfOfsxKf2KVMlVGLUj-50CMPZ-qc,1561
7151
7198
  xinference/web/ui/node_modules/.cache/babel-loader/8c5ba88b620eeedbb99db18a610138353a5a657170fdb8bd6969585f81b34f74.json,sha256=jfvwyJKrqXuVj2E8rMSzZFQcplrjJj6_fOUXHF_LkQY,842
7152
7199
  xinference/web/ui/node_modules/.cache/babel-loader/8c5e2f90ead0799d0a0cfc6a8241682d6825294a9d3991f2b32c85368742373f.json,sha256=Gt7-npuMYG1brqAXSRHCUyf3GvuMXl-Ig4rCaJ1HA1A,2091
7153
- xinference/web/ui/node_modules/.cache/babel-loader/8c5eeb02f772d02cbe8b89c05428d0dd41a97866f75f7dc1c2164a67f5a1cf98.json,sha256=keCAL_5JzBZp1GZwVLv4eGJDG0DXeQXR-gM8m2eovUc,68763
7154
7200
  xinference/web/ui/node_modules/.cache/babel-loader/8c5fb74a2d3a9341168a21bcb58c9001100fee77062042d17f9c55bdb674d78f.json,sha256=Si5tMoQ5vB5Y2zi_DVWlYquZfA6PVNJmHaGP6GFmZNE,2485
7155
7201
  xinference/web/ui/node_modules/.cache/babel-loader/8c66da2a8e6a3e9dbeed44b9797891c385b34eb405a0f8a2451c711233af2f9f.json,sha256=OsGmjNmxfN6yB-K7pQQtqtCQECCEpcMuV7cOeXiqkmU,7262
7156
7202
  xinference/web/ui/node_modules/.cache/babel-loader/8c6a1448a8121b5c3b3604e2b713dd1a0fa6a2c4fceafa2eb1e2d80c274cfae7.json,sha256=igrhNRaUpoE9FxRgUdQwTWJZ5eAQx5cxfrUfab8WfqA,8462
@@ -7188,7 +7234,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/8d212cca2ffc8b02e577e2327b662
7188
7234
  xinference/web/ui/node_modules/.cache/babel-loader/8d26df4851d290c63f01c9839dd0ace7485e8f39e9dce02158f0dcab5b85d341.json,sha256=To_Ed_quxmpNvRK8x4ea8Zj2G_6fsHWWLFg8hon6M4w,1322
7189
7235
  xinference/web/ui/node_modules/.cache/babel-loader/8d307af1e642352399b35843f143422f05664ce90b6d1c3960090cdb6a386eb1.json,sha256=pXgK7m-6j35GoaQn7av_Q5NYJEPCYsq_8_yOnIA5_lw,1164
7190
7236
  xinference/web/ui/node_modules/.cache/babel-loader/8d30d73a576fb3bf169591a2dbc9723f57d6c1dc9d965f24e254c23550c35411.json,sha256=p_B8xdF0edaBuxJMDIrY-NYyCHp_WGyw3A0_i5dUcuM,1784
7191
- xinference/web/ui/node_modules/.cache/babel-loader/8d33354bd2100c8602afc3341f131a88cc36aaeecd5a4b365ed038514708e350.json,sha256=wzRjuiH6e85MEhvd71K-U0URieL5CHToWSsULkAdKZY,1480
7192
7237
  xinference/web/ui/node_modules/.cache/babel-loader/8d36ce8c6fbfd2621624094625571a9ed2c9836fc3d7b8d6198d891b48555a0c.json,sha256=8gKDTUI19xq5qJRryyTiY3jiX9O1dTcPN8cSQUTXTAw,1482
7193
7238
  xinference/web/ui/node_modules/.cache/babel-loader/8d38d32b42c58998f34b48a444c67af53b0b1dd2458d3b39421e2a9202a5f3d9.json,sha256=6v537GHVSX1bIn5bL_91mp99sKnvOT4CNY-A-8VN5qg,2973
7194
7239
  xinference/web/ui/node_modules/.cache/babel-loader/8d3fbaaf522c8b1a5f026f4776a6341d645964aa304e2044b1c6a8837bdd4cd1.json,sha256=yQcSTbGPuF3s4xsPd2PkLj2lRXlZzIkE3lhqqLjCo78,2595
@@ -7451,6 +7496,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/91f713b75bf383a168068cf26906e
7451
7496
  xinference/web/ui/node_modules/.cache/babel-loader/92019db1812038ee10c42491588794d6261cd57a60e5c62d41045e28e29d712a.json,sha256=Z1Il_l-SaKEDEmgnD0kRcjg2ehWURQiRqZAHrJFMbw0,1788
7452
7497
  xinference/web/ui/node_modules/.cache/babel-loader/92041758388b54986e2cf72be8cbf9543f8a73039e4af373bbc53453e99216f8.json,sha256=6OqoDxHAPkompLR698Ej1Bxfw7jxwFAf-hXAf4z_-NM,1523
7453
7498
  xinference/web/ui/node_modules/.cache/babel-loader/9204233e120b04a9c966b3dc629066dd2c4b006c8a57c1dd1c2a78f63a01560c.json,sha256=DF8NlkGBU4gZQAR_2RipobDoJtphibBX9Sfk7Wxyb-I,2138
7499
+ xinference/web/ui/node_modules/.cache/babel-loader/920b82c1c89124cf217109eeedbfcd3aae3b917be50c9dfb6bbb4ce26bdfd2e7.json,sha256=8jskAas2irN63pP157Y4TjjtfHz70teN6b0sCwaEUpM,10411
7454
7500
  xinference/web/ui/node_modules/.cache/babel-loader/920d6f3ce59928d7572b8e0d1140ae153b55c628b77b3facc5292e19167990db.json,sha256=I6DIPfqFaucON5nwJkGCJlIBW0m6gw-FjFZa20wkdwQ,1235
7455
7501
  xinference/web/ui/node_modules/.cache/babel-loader/920f9fe717782fe26fb8f30b632b38d0b37ddf355c64e419bf0fd6154d5a9230.json,sha256=kRIDC4maFqg7y3bGEkZpTDp5SmR0tOJlDsIz65O41Og,3019
7456
7502
  xinference/web/ui/node_modules/.cache/babel-loader/92113ee06f72b6b58cabd2750bd3adbc124333ec15d47133bffa781168e8437b.json,sha256=cCOr_4iNDCBtV0fFgLw6BXK0gfWIJvucL7cO9xLmnSU,1359
@@ -7516,7 +7562,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/936191405cedf1dc023ce02fb8ee4
7516
7562
  xinference/web/ui/node_modules/.cache/babel-loader/9362081e3220d1a66035f5551df8ce48c68232e69dac641f7bf97bf6eca37d1a.json,sha256=3wOW1L4ZQiocld1VJExejkupK7_y4nTp03ffgtCdqQM,2100
7517
7563
  xinference/web/ui/node_modules/.cache/babel-loader/9362faf720cd13316df81a48e9dca2a341583a60d2937539d0c261778a6bb64b.json,sha256=m7Rv0SjT5B1H5pZubG6kgWZT2nuu0McW0J80HZC0PDk,1850
7518
7564
  xinference/web/ui/node_modules/.cache/babel-loader/93695962f47a5148695dd9b5ec329ae7cc81ecaa5350ba37e0d87f4bee521ba4.json,sha256=KbQuIgov62XjgOfB-V1433vCG75188dQfZoF9R2VoZw,1108
7519
- xinference/web/ui/node_modules/.cache/babel-loader/9375a35b05d56989b2755bf72161fa707c92f28569d33765a75f91a568fda6e9.json,sha256=CgvF1f2BmrB_2gHP2I532N48ltL1J7-EMMTC8tUvEbo,17398
7520
7565
  xinference/web/ui/node_modules/.cache/babel-loader/9383e98ac3705a89485275840bba8547747c8be7a828f9c4c7d163f5779f551b.json,sha256=kRmArMGCOgMFq69dQchDbkr6Mu58bKUriilXJa5HjBQ,1319
7521
7566
  xinference/web/ui/node_modules/.cache/babel-loader/939558ae0d8556c785a039f6e62290cde4120a4d5e33d461bcfe1fec47490167.json,sha256=e84IpLcGgwr7PPHLWgVeIECAx3GYBARiBi-QY70l2hM,1376
7522
7567
  xinference/web/ui/node_modules/.cache/babel-loader/939634d675d11ad4483e05d76a76f3612e7dfbd51d10f822173a232b080be37a.json,sha256=maRQ9zTa_pgLpP3l7GMFY-kgr1T85DHz-0ivU_m3vCc,1339
@@ -7572,6 +7617,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/94b0f4f03e0ede6bd1805c508584e
7572
7617
  xinference/web/ui/node_modules/.cache/babel-loader/94c9695bea80bb99ddece5ea38dab75d5b98712c8d29848c17e1bf38269c40c4.json,sha256=wofa24gXQM0Mf8DcFcdIul4BbUdchspBY8ECE6adyfs,556
7573
7618
  xinference/web/ui/node_modules/.cache/babel-loader/94c9c43d8e1ab8c0c05effcd7e91688ba281e150a75032f7c585f7b6f55f8875.json,sha256=d7xNmHWjbsSoPY5_lhqCWMT5QeQbbu0iqMEDbjwSolU,5281
7574
7619
  xinference/web/ui/node_modules/.cache/babel-loader/94d11c7f5eb1e85ba07651e2307f3a77430af4151de51cb358d2313d5613c6ee.json,sha256=kbct48GgUYV2vanfUFK42imjh5KNeIDp-zjH8JSnHbE,1014
7620
+ xinference/web/ui/node_modules/.cache/babel-loader/94d8b7aeb0076f2ce07db598cea0e87b13bc8d5614eb530b8d6e696c2daf6f88.json,sha256=eN3mN8QcSz7GzdYWDAGl-trPJ0HxEfaUaoPzmD5iDTA,1617
7575
7621
  xinference/web/ui/node_modules/.cache/babel-loader/94dcbb4f484214e3d59d063d48a60e6ee91fa68ec0e31caba2e6549a4276e5a6.json,sha256=GN9axFOADAcFjWZLn3SMtEyxmq7aZCTskSWXkNJ5UYY,1170
7576
7622
  xinference/web/ui/node_modules/.cache/babel-loader/94e4b89a17218bbe639078b1f8aab5c5c35914b5804b3fc011ca01d03f88502a.json,sha256=VTFcCCdzO3ZzA4kFDWgSkyHxObzYRNzMkHT231R4yPU,1487
7577
7623
  xinference/web/ui/node_modules/.cache/babel-loader/94ea43c15b867e78c52b79f3144b7b3cd5d32463a97ad5f3cbbf35437413a0e1.json,sha256=QKwxjvAHY0nhNxYYHTmnf4rPUj1fRcqslumDSLuafZA,2335
@@ -8055,6 +8101,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/9e6ad10661a4082f20cccd55db5b1
8055
8101
  xinference/web/ui/node_modules/.cache/babel-loader/9e72d38977a657d7aa36a0a2969588d383159fdc0a79aec83b1b81195651d2b5.json,sha256=RMm8SHE4SrBSEqw4j5up5v0QZGjnYqXblAW5N5eT86Q,1657
8056
8102
  xinference/web/ui/node_modules/.cache/babel-loader/9e737edade1ae2379e877a5c8bc240019bcd51baa587cc60d0e27aad3315040c.json,sha256=PHfCDb7D4EEhdu9Zp5KLAfwsOOXYCOyVDrVKP6FSDRo,1040
8057
8103
  xinference/web/ui/node_modules/.cache/babel-loader/9e8d8fe506a02aaa4d4e59f0c2f2b7fdef75019290c947a4cb7f47cf4e58db1d.json,sha256=x_Fi0j2AcpVCfnJ47DAx-ZacvSK1h0_HdJHuYCGlE1Y,2836
8104
+ xinference/web/ui/node_modules/.cache/babel-loader/9e917fe7022d01b2ccbe5cc0ce73d70bb72bee584ff293bad71bdff6695dee28.json,sha256=PqJkB-sqfDG4KhrhzJs3GJan9QllR__4iTnW2EuPLFY,2243
8058
8105
  xinference/web/ui/node_modules/.cache/babel-loader/9ea4fec8cb1f93fe835bb387abb02470d3908bbe791a1654d5e275f930c141b9.json,sha256=pk9S2kPk5rtPy5glYcqVHU81I2KGp3s4x-5Izl2dxg4,1098
8059
8106
  xinference/web/ui/node_modules/.cache/babel-loader/9eb72c1ec4c1079dca6fc5dfb83ec482bddc60a2f5e4120d09a779940c041e39.json,sha256=Aow4HwXemp615VTYNbI2s2YS8SKGTRbSRiEH4mqjsMk,982
8060
8107
  xinference/web/ui/node_modules/.cache/babel-loader/9ec09f7a480a10a4af61cd1c47f7c3f2655daa85ec0a2ffd960e7f01c105a246.json,sha256=FbE3NcQoupw_lHgcKlRe0L2ZyGKQf633H36G3sVNGIk,1616
@@ -8071,6 +8118,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/9f13e22a760a64e5fde6a6468334c
8071
8118
  xinference/web/ui/node_modules/.cache/babel-loader/9f1485bee312f70d9df5af30bcadbb965fd69d24983fc8e61c8822e095a60831.json,sha256=nwMobIAgrXcg8m5x3Zmehi3B6rtnRfPP3dhMaZnSPhQ,1360
8072
8119
  xinference/web/ui/node_modules/.cache/babel-loader/9f1533b76c05b607f4aa053142801144f89d7f697e763b4415dc9cc3ab1027e3.json,sha256=CdlWE2OsyCcLBkT7h5d0_eMDEEspz0kLEY0F2su4rAE,1310
8073
8120
  xinference/web/ui/node_modules/.cache/babel-loader/9f1eb609a04326c5abf0935502456fec85f5e079ae10136841e08d25ffad6434.json,sha256=KB9n5WmmM2trjIFHaTd9vsBtBUlLmliYEFk39V0eMQ4,3560
8121
+ xinference/web/ui/node_modules/.cache/babel-loader/9f28fdb8399f1d0474f0aca86f1658dc94f5bf0c90f6146352de150692de8862.json,sha256=gbtwG1aieJgf2ecBtXFeYoDr9sEg2OFsNSiNLpHw6DM,20249
8074
8122
  xinference/web/ui/node_modules/.cache/babel-loader/9f2df2dc11193a6526e70ac3df9c93e13e35a690561e229f84ec2b01415af325.json,sha256=Hul2LoVgWpJwHy5ElHDCppjKSyUll9rNvZpidWJhJ1w,342
8075
8123
  xinference/web/ui/node_modules/.cache/babel-loader/9f305bdf5b83d6b4c3ba238d167462cafe546b11ae5b9c974c6a1102d10679d5.json,sha256=-mvmhSEEbNkVpy46F-OEjxBBETz-bCO08hA4FZKQrMs,1034
8076
8124
  xinference/web/ui/node_modules/.cache/babel-loader/9f30e0fafa77da0cd0d0df4438ce0139b85192b106eae8de4e9b6fea8167a746.json,sha256=RhE10-CqGiqJx_4kmpuOOSRunHlscFEuAM-8d4-7Zow,1845
@@ -8156,6 +8204,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/a0b76bac13a310c2b8a7ccf7abbca
8156
8204
  xinference/web/ui/node_modules/.cache/babel-loader/a0bbdb95988edd8a3b4ded73c8aa9c9bf03ced18602b16ea337ce336c3bba7d7.json,sha256=p_ws0-h_Bcjsrj-7oAC4ve7fW_aEf0xEeildxoYgrOA,1622
8157
8205
  xinference/web/ui/node_modules/.cache/babel-loader/a0cbd1109fd3edb62c09cfa629a1e540df07696aaa14727011affca41e6f3918.json,sha256=AdzxBy2lV5isM5uvUskacK13xwUtr2dHbW9AnRvF8_I,1049
8158
8206
  xinference/web/ui/node_modules/.cache/babel-loader/a0ce3efb790a2bf4f30dcf3991ee08ed22d5d7f511976434ebaade3b94dd7080.json,sha256=xtYVwyynEqG7GZ_Saq3osjyrFFC2V05Btjw2fHenykg,1410
8207
+ xinference/web/ui/node_modules/.cache/babel-loader/a0dfafa06b2bb7cba8cad41c482503f61944f759f4318139362602ef5cc47ccb.json,sha256=Z7jwSX1bJYrusAaWrmb7p8o2Fj0-4WYw3xsl9y8zUYk,2380
8159
8208
  xinference/web/ui/node_modules/.cache/babel-loader/a0e1cb99eb387f8fe9d76cbe9aea826aacc98e970339d672dbd18f70b98fcdd6.json,sha256=310uzz4svblKrdY3qYNAqzqQKs4xxvH9zNO1rRmqd20,1057
8160
8209
  xinference/web/ui/node_modules/.cache/babel-loader/a0e5837849d5ee044cd7bbca074613a51d1d39d0ad5268a9667494bdc2a591a5.json,sha256=Zi-8y42SMnC8gTJ47sAA8tGSdS1cBjbhzs32H7-adsc,1705
8161
8210
  xinference/web/ui/node_modules/.cache/babel-loader/a0e728a47a8fd631d2c9674d34b2210fb7457bd94135d2027476994437799a2e.json,sha256=YnI4tKuXroCNi9bbbWPyoZ_00RGXcSu6YilQxK9TT0s,1648
@@ -8178,7 +8227,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/a144e72375aeb7e8baad14951a3b9
8178
8227
  xinference/web/ui/node_modules/.cache/babel-loader/a14c964f4b3c5f594df50c01028f1d52ccd465a54b625726315c11aa94755996.json,sha256=EtPwv3i77PoZvpfapLOoeMQ8ykDCTzmtFfvt15gRj58,5599
8179
8228
  xinference/web/ui/node_modules/.cache/babel-loader/a14df48c7e270ad325578b6ae2d6853de6f195baeaa4338bdb845cbf4c13ad95.json,sha256=J8Eaonm8b35WU01kos-VzhSwX1qO2s6OdlH_1brcHtI,1538
8180
8229
  xinference/web/ui/node_modules/.cache/babel-loader/a15424231fe92924202910b264aa147987349c90e04c3e370f1457cce81c0601.json,sha256=X6D92O1GQzDUZ67RhROjZBBZL89mzeMo-RtY_8x3Tu4,2171
8181
- xinference/web/ui/node_modules/.cache/babel-loader/a158a9ffa0c9b169aee53dd4a0c44501a596755b4e4f6ede7746d65a72e2a71f.json,sha256=w_Q3mk-_nN613MQktkoIUDqRPBKpLNjDN8eX2du-2ZY,3262
8182
8230
  xinference/web/ui/node_modules/.cache/babel-loader/a15909e899522c2865413f4a2db9563ec2bdc405b935c5c0cafd23dca7d2c4bc.json,sha256=7G9bPj09hSG2fqaVkajyM_RmDh2hua9Pn2H6RwZXpqw,1471
8183
8231
  xinference/web/ui/node_modules/.cache/babel-loader/a168a75db326831150937465cabdde8a566dda85f2d7616587e7d911587b10db.json,sha256=ps6wyn_sIqytr4p3mMqjkuyTARv1pgkp39H5P6Io8ss,2687
8184
8232
  xinference/web/ui/node_modules/.cache/babel-loader/a1741432f05cfe278c93a0478230c1985ff6b90aa3446a88c871ceb39f719c43.json,sha256=vQixRXxKlCy5dsl6z8s_yQPL6WspA3Kf2CbfUd-EqDg,1050
@@ -8855,6 +8903,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/af9c5358be1f0c3f2045d182b7432
8855
8903
  xinference/web/ui/node_modules/.cache/babel-loader/afa58df73c4d36d7e8b3dcb1ad8ae477bc4b95054b391acd5b6fa441be4e0c7b.json,sha256=EvMabD21uMftgsK8yjLHWaaMROedFyNpARLrEr-tMsU,2938
8856
8904
  xinference/web/ui/node_modules/.cache/babel-loader/afb0061e3310d0d4b194a6b68a9a5265e4b56ddb319fbe36b16b645b5ed6c14d.json,sha256=VgAjP51d_Vtb5Oi87qYNxKJIAPd9oxIBfIfbgbdqVrg,1523
8857
8905
  xinference/web/ui/node_modules/.cache/babel-loader/afb2aa6bbe1fc02cf56ae07bb5a2e38b029c8d27310c3714146aae1e70abddc8.json,sha256=nTSvYbrlKFkiZmLIWfwPOilyCVfHD1xFIAnHIPWfGvQ,1176
8906
+ xinference/web/ui/node_modules/.cache/babel-loader/afb8084f539534cd594755ea2205ecd5bd1f62dddcfdf75a2eace59a28131278.json,sha256=XwyzHg5x50LeY-KkJYhrrFPNMjB722ziUOdToAo2x-k,3620
8858
8907
  xinference/web/ui/node_modules/.cache/babel-loader/afbb9fe60ead88c9859d1e6599d3fbd3243396588a4f62610595483f86c2a725.json,sha256=q1Fex1RDqHmM8x62LMh9RlRDcI8o3DA_NW3wzU9UtYA,1061
8859
8908
  xinference/web/ui/node_modules/.cache/babel-loader/afbed5e07802c1062264d40c1b68f7daa2c24602b285986c9284de6b8e8d2496.json,sha256=9CvUu3lVee6_8hA1lha01pMxtrfWWWoIzBnHHuNbb_U,1725
8860
8909
  xinference/web/ui/node_modules/.cache/babel-loader/afc99e4120220278a41a597b1a59c51d5ccff28cba12188e2d8801fa8d624026.json,sha256=XMdsuqYUYkIM-_KI4J8l99CPk3egjq_a3noS2tBJLbM,1112
@@ -9108,6 +9157,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/b5727a5b78ab17e419b03b737deae
9108
9157
  xinference/web/ui/node_modules/.cache/babel-loader/b573fbd0aa291403a74b3835baf1918c71f88361c24727b7b2f4ebb8263af5bb.json,sha256=FiVOKiDU7qOsaEbKBi0QygafN_BM0kHqxVtwX0Bip_Y,1169
9109
9158
  xinference/web/ui/node_modules/.cache/babel-loader/b576603d0e81f79f9e92d58adfb234d0cfff73c542893b8cd36ca6700565ab6e.json,sha256=tmFyf5Esauz31w-EyfjIeHZla-GBetI9Ifl1QRe5XF0,1531
9110
9159
  xinference/web/ui/node_modules/.cache/babel-loader/b57b00bf3708bf1ebaebeb6ebd1bf2ef8050aa6d97efcbfaefda35daea67041b.json,sha256=BziE8A6q6ghoFYqueny9Ia7QDIkGDZBu96l5E2do7C8,19863
9160
+ xinference/web/ui/node_modules/.cache/babel-loader/b57b1438b77294c1f3f6cfce12ac487d8106c6f016975ba0aec94d98997e2e1e.json,sha256=9JKu3ZNHuMC6vt76o_oYEMvD3KOhC6C2m5WwjU-r4Jc,4101
9111
9161
  xinference/web/ui/node_modules/.cache/babel-loader/b57ee1926e592bc276ac4af8db1484ae32856d1b566c64ca18a5aa8d98457964.json,sha256=8SXD6Ur3HZk6RMKF0AP9N-jpcFNPHIHUqwQk94YqKl0,2163
9112
9162
  xinference/web/ui/node_modules/.cache/babel-loader/b5849300f33b3f37a5dbcfd587a2c1105f6eacc94e2c1b23709171fe1f481da5.json,sha256=0eWe1qxeDceZUx7QIskZwievaS18xzKTp4tIsIZb_2U,1579
9113
9163
  xinference/web/ui/node_modules/.cache/babel-loader/b58637ef36a84b22691207aa8c680447fa170888a2602f4d960c0863c13c50f7.json,sha256=vTuQAlslgO_UydY-YCmgyTBboGNswzMWb2JiYQP-VM4,1184
@@ -9287,6 +9337,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/b97f133a446f86e6c47695cda85ea
9287
9337
  xinference/web/ui/node_modules/.cache/babel-loader/b97ff14615bf37dd4c59670c671e1123718c8897b7e827d446fa13353c6eaa8e.json,sha256=Ayv6Gt6ZGznJB0GA2JRWv7mMVHeHptNvosmgRL1w25c,725
9288
9338
  xinference/web/ui/node_modules/.cache/babel-loader/b99100b619d1ff500564b30d09434cb2d2c4c451024de7d8d225c8dc7015fe21.json,sha256=iwSTAL3L0KGFzM5Ss9CDgXhySd-P6F0B12uiEVhqf24,1145
9289
9339
  xinference/web/ui/node_modules/.cache/babel-loader/b9912680c2f3534dc079567b486a9e69b31ad14b20693be7a484e55416a23f9a.json,sha256=tY3FPcnxSBG8hVgeOq_pAaklRR3favhm4EwY8XJUthg,1291
9340
+ xinference/web/ui/node_modules/.cache/babel-loader/b9917b0bf8e4d55ccbac1c334aa04d6ff3c5b6ed9e5d38b9ea2c687fa7d3f5a9.json,sha256=X9DYyRuYsfxa10Co0NuJ6XMeWk5stQn6GpOK_fSaxko,1529
9290
9341
  xinference/web/ui/node_modules/.cache/babel-loader/b99608b9d7aaa130102dd9b68d797bc0d033fc392f1c240173cd4a6d6f2221b6.json,sha256=YmbnZnDlOJc9m125hplE8k-Rit71pfRfewWZn5pwivY,1247
9291
9342
  xinference/web/ui/node_modules/.cache/babel-loader/b996f86c86a7c7629454cdca619ec56f755e415461642d61c3bdd4b19444edd9.json,sha256=SPw70Z0MCdSUj0gKIC_c36Wos6UQlnWUz0-uIEBq-ug,1702
9292
9343
  xinference/web/ui/node_modules/.cache/babel-loader/b99a26a3b78a154d75ca8367d480026f3cb765bac64c8b0f67cfb6a49e240c1d.json,sha256=Ul3w7nVMxZA1DqreP8xjl4UHegO61_UHouU-Hep1Ohg,1081
@@ -9406,6 +9457,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/bbc4186a2ddcca934657809291039
9406
9457
  xinference/web/ui/node_modules/.cache/babel-loader/bbc8c4c2cc2bac7bdc1172148ba05c93a5e0fe0e4e5e075d314bc2dc10ce8170.json,sha256=gRDxcirP10lNpQKKRQSNi3IV7qeG8Rs-mnXtEvq2bcs,1674
9407
9458
  xinference/web/ui/node_modules/.cache/babel-loader/bbcaae650f13262255261ca170b7dbb26d1b2abd58645a3b0bea6face7705dcf.json,sha256=qTub7DTiy6ZIH9exQ35XoK5JDOXGcbD_prkHuU8qZZE,2006
9408
9459
  xinference/web/ui/node_modules/.cache/babel-loader/bbcab55b5728fe054db4fa453d8d773d438d9bafe1aef8bf34a6a732a8c7a920.json,sha256=8OVNUeWnXD_toI8qfD_klsviVwa1iHn2GXg831NimOA,2256
9460
+ xinference/web/ui/node_modules/.cache/babel-loader/bbcc94b0149963d1d6f267ee1f4f03d3925b758392ce2f516c3fe8af0e0169fc.json,sha256=MuiqRtEvJya07JgxBT5bjJgNNW4QM5--O5a18g-FnfY,6459
9409
9461
  xinference/web/ui/node_modules/.cache/babel-loader/bbd00ac8f49e11e901afd45941fc0989089e8ebb4386933b106ccb27145aa392.json,sha256=SZ86vd5v3szzwETzxRbjOWgwQjHiTrZI3RHljZGros8,1854
9410
9462
  xinference/web/ui/node_modules/.cache/babel-loader/bbd6fd9570a9b71930b6bfae217255b0c82b4ece30f1b76edb9a80aeee4d8d13.json,sha256=nK3nMVSUs0hILyHPOxebC6HNgB_NibWmjwXFtyqw7No,1814
9411
9463
  xinference/web/ui/node_modules/.cache/babel-loader/bbdfaf8b8dd1ffc1904d09360a95b75715da3af38ef948e2f0205413b31bc272.json,sha256=iS0Lcoi5nzSxx8fnI2xmsaMU6dROtLZDsMsWu5Lt2ng,1367
@@ -9489,6 +9541,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/bddca250ae18a2696bbae53d390e9
9489
9541
  xinference/web/ui/node_modules/.cache/babel-loader/bddcf875e7612f82fb68763864baa7e53c50ca47fb4290d22d5b0323bccf5e43.json,sha256=Zm2AWMJq5ilNwPUwia8LyMptmv86K23wBCAb78ifqlE,1733
9490
9542
  xinference/web/ui/node_modules/.cache/babel-loader/bdde6847c5379a134b5252a5f7d26a378ad9d3ea2093eaecfaa004a4bf89abf2.json,sha256=wOFW5dtHekchvy75h9ucpl0ZsyykrdbkKwFk_QYX4yk,1429
9491
9543
  xinference/web/ui/node_modules/.cache/babel-loader/bde9859bea957ff39d263ed67deba7deeae75f8845c1f8003fea3246f8b57600.json,sha256=xvBOjbLMtdtwYJJvw75pzttx-2ru1nsaROIVBkJvOxs,1457
9544
+ xinference/web/ui/node_modules/.cache/babel-loader/bdee44abeadc4abc17d41c52eb49c6e19a4b1a267b6e16876ce91bdeeebfc52d.json,sha256=8eQm6DyfNyZdU73Jws0b_m9ff-GMPgSdyKve5GBqRdk,19092
9492
9545
  xinference/web/ui/node_modules/.cache/babel-loader/bdf3d4cfa020bfb455525c27c7a9661b7854c75ed7ac4c36ce4afcb6b981e2ff.json,sha256=YrKnAxiyR1jpG03GLKbLa_vS5SPPpmyggMUbuuVIsjA,1699
9493
9546
  xinference/web/ui/node_modules/.cache/babel-loader/bdf756f0d0bbf8d2ae6cb9538393af1118d7c44691c1f94eec29fa84913e8b08.json,sha256=xF0y-_ruI66csnjfPLRTmhWasN3FqNSW5uEbDCqHJUQ,1487
9494
9547
  xinference/web/ui/node_modules/.cache/babel-loader/bdfb6076ee258bd3cde6a565faa4d4324d3624daaa4d2eac9dc803af3822da02.json,sha256=_dVJY1TqVGb72DTZZP0sKNVaDveZ6OaQHelivCCE1as,494
@@ -9526,6 +9579,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/be97f256515876e5e5be612ae46e2
9526
9579
  xinference/web/ui/node_modules/.cache/babel-loader/be9d37ad8415a1a46bd39a4169efd97edbaf562dff5181bb5ad27fe859595397.json,sha256=MnGynB1GSulHEhXyX-wQLTZToQy71aqLelZW-MAiCqw,1044
9527
9580
  xinference/web/ui/node_modules/.cache/babel-loader/bea14737a4ae8819a269a8468e245aa296fae6a3ee3bb24d36e6a8651d9dea70.json,sha256=OKKx8y2cWV1dKCXvQrhx2aOxbD1bksByAS98b5DXeBs,17606
9528
9581
  xinference/web/ui/node_modules/.cache/babel-loader/beaa3c94444e1cae0d4ca225ea5b8032e139610709090088f92722c12032c0ec.json,sha256=3NxvGI6tjRZidKwXAk20usYjCKCZ1qni6-_LvDTdZm4,1472
9582
+ xinference/web/ui/node_modules/.cache/babel-loader/beb112b70f4a56db95920a9e20efb6c97c37b68450716730217a9ee1a9ae92be.json,sha256=qKMkpUI9HwTxBr008VvbShFMDR0fd7AzovnuKTy0eaA,16659
9529
9583
  xinference/web/ui/node_modules/.cache/babel-loader/beb26f8e05f0ef535ef7405b2d20319babef98b7af43443dbcfd2e3247e85439.json,sha256=8rtFDI1d4nUM3WHyKMCIzJJB3w_HhRUsduwtNa4coJw,1775
9530
9584
  xinference/web/ui/node_modules/.cache/babel-loader/beb50352ab2206bcdb97745fe7e8cfada072bbc0346adedfb3960ce2c5f12565.json,sha256=Azf59Ux3VDNgNQhOhJNyHfBbuK6JsT54D01_g3YYEps,558044
9531
9585
  xinference/web/ui/node_modules/.cache/babel-loader/bec3a43a9cb807c601aaa615d96b8c04707572dd6bb7313c6921a1ffbd0d2b91.json,sha256=o2HQ_TQzoTkcbvyFM9eXKqqigVK9gK5fGHS8XdrMT5o,2079
@@ -9935,7 +9989,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/c794daf613ddd9142366357e09711
9935
9989
  xinference/web/ui/node_modules/.cache/babel-loader/c7aa20ac57be2861a8c571b55f5411843904f2bd134bf0d3e8afbe85f7260715.json,sha256=lYa7T_mmP1UoLArApGXVhWEev5ZSFapDHqsUq41tDHM,1029
9936
9990
  xinference/web/ui/node_modules/.cache/babel-loader/c7acca6547f99d9b9567fad4a2facfd526d336ab01005f6c74cca5f9efacc19b.json,sha256=_yJ326jZpvxmBMpf35g1SA2Vr6pquXJigTkgt4S3EYg,1669
9937
9991
  xinference/web/ui/node_modules/.cache/babel-loader/c7bbf1207d587797be6c4797903b294efa7b08baded26a7df5223ddc7e639924.json,sha256=whjHlO5kuilci2eJ_lgEQwAewMJqVheYi__6iFubB0g,1273
9938
- xinference/web/ui/node_modules/.cache/babel-loader/c7bf40bab396765f67d0fed627ed3665890608b2d0edaa3e8cb7cfc96310db45.json,sha256=2FcHTVbxn7nlJjR05wRgqy0opLopdD38ZY0RRHc3sV8,132660
9939
9992
  xinference/web/ui/node_modules/.cache/babel-loader/c7bf5e13f8b336cdb46a6a3a50ff314248b33ed3c7e92eee011f83fcbee82725.json,sha256=C5u-uVYiYbqiSgvghD2lnZuSHDuUpF5mA24qTZExld4,15906
9940
9993
  xinference/web/ui/node_modules/.cache/babel-loader/c7bf9982a714496a1410049be141d9f21e58e47af6fd6f123a6097933c804dd1.json,sha256=tf_msOTTEo3AkmUjNKDnIB1DQ9YbwniLNGvdhanFxzs,2541
9941
9994
  xinference/web/ui/node_modules/.cache/babel-loader/c7c271c62e079b812ede2349098c8fbfd40f4760bc0881b7a25ef060f46ef5f2.json,sha256=5OeiLeelTM3VdQtpdRsgg4wIB4LHgNchGIRzdFpYf9U,2099
@@ -9989,6 +10042,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/c8785e29f9c39fefd01a02780a7ad
9989
10042
  xinference/web/ui/node_modules/.cache/babel-loader/c87c5a5250c1d94cef1e54f5853565f568f162149ff14d6b177f3450734826bc.json,sha256=VZ_Xk65BLDPCyBbhSEGse6GEnV0veyN3WdcqN8FOdzc,25597
9990
10043
  xinference/web/ui/node_modules/.cache/babel-loader/c88a4ea7702b7119ab44c3a25a93c3ff60c7e8778aa69f3553bc6ee33824b4b7.json,sha256=bkYCIPpbn_clLCCzD4VyzFHTFB2YYUL6V3rFgjtDs_o,1971
9991
10044
  xinference/web/ui/node_modules/.cache/babel-loader/c88cd946d36c920151cd640f21b9d8c51d9c51f346a354d7246faa9248c48434.json,sha256=XPLAf2sRCd2duojlTksKh9UJ5QfapPWiQuNGFldPcqI,10392
10045
+ xinference/web/ui/node_modules/.cache/babel-loader/c88db97be0cdf440193b3995996e83510a04cb00048135485fc0e26d197e80b5.json,sha256=bJs8dZFXb3EykgG83Z43GNiKsbbccY67LZEvQNlMcIk,803
9992
10046
  xinference/web/ui/node_modules/.cache/babel-loader/c8914a520ef220b4266504cff673be621ab89c2508d08848d3a00de04dad8063.json,sha256=M8YZtERBH8PwAQqox5cRooyuGabvC_6xRJWVogap6JU,1674
9993
10047
  xinference/web/ui/node_modules/.cache/babel-loader/c89f391c889e3af4d427165408c303b4771becf1e011d43543b8362cfdf95d81.json,sha256=YMv9MdAxvghIwKRLx96YluhAtM4QQc-ink9irTmzUMQ,1408
9994
10048
  xinference/web/ui/node_modules/.cache/babel-loader/c8a4d5f6f452d3627f56724cc048bf5d08af7aec16b4356ffe3ff82b4ff05e46.json,sha256=9LfJcS9ESzzzwuTNuuSy--ohUGnYlzS3-z84Z4DF0sY,332
@@ -10586,6 +10640,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/d4855301155938ea903b9eaea595c
10586
10640
  xinference/web/ui/node_modules/.cache/babel-loader/d4966dc620e7bf0e8bf7504baf44347c25813274ad5f2a724ad1e4df901fe6e8.json,sha256=GpUVTit__5bAarooalCNuRWy4Ptb317dZgYAfeugYTI,2988
10587
10641
  xinference/web/ui/node_modules/.cache/babel-loader/d4968010fcf6ab036a7a508f7bd80648711505448f7e1e644a1628237c2f88dd.json,sha256=-VvjSJzK-XaGx70rpGZMuy1aHW3QrpBg0dkEUUkTmDY,1734
10588
10642
  xinference/web/ui/node_modules/.cache/babel-loader/d49b51099b169b5a53c319f4ae37d77a1c7d1e4d4c5012b7901b6fbf7f62fbf6.json,sha256=aydCBCI4TCUpd0vlx2K6sB660mYOKKklt3_Svy7C-Mk,1519
10643
+ xinference/web/ui/node_modules/.cache/babel-loader/d49e5314d34310a62d01a03067ce1bec5da00abce84c5196aa9c6842fa79a430.json,sha256=A3yJcReSSUjKT_YmSmDNdomU9OY9S8nm1tgiN7779tQ,4020
10589
10644
  xinference/web/ui/node_modules/.cache/babel-loader/d49fe1d0f588279044b216cbc49d6952717c9da3242d57d6a857865d1e51e145.json,sha256=X14HWnrl-494OAyswnuV6zOrZYjn3OnicsAHlEN0MQ0,1249
10590
10645
  xinference/web/ui/node_modules/.cache/babel-loader/d4a2a4d8d7b207fd947d9ba359aec5884f1c4c98dc60090baa98249abbf505ba.json,sha256=DsuV858qzC95oOrIjLFAu3M2s4o1_QC8TGv6UMkywJM,1138
10591
10646
  xinference/web/ui/node_modules/.cache/babel-loader/d4a2dcf35318cd95780707fd5e58120da1de2200df631959e1c86ab05764acbd.json,sha256=Kg2KIBn8ylcpsccBXytSWRAQf81WfvYr3ICDmQy3r3I,1155
@@ -10690,7 +10745,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/d6b661fa1bf7211c773e0652bb74e
10690
10745
  xinference/web/ui/node_modules/.cache/babel-loader/d6b7425238f565004db5df79e7b61a571789ebfff4f7ae65eef669d356290019.json,sha256=O9wJcEBe8FPgfZj7HVSnRMAKR1gzVfbFqVZQmlWW8lI,1674
10691
10746
  xinference/web/ui/node_modules/.cache/babel-loader/d6b7ed323be423a58af3d7109a6bf501fc893ec1becb2c77370297fdd7a22b36.json,sha256=XYz33V_mFJfJ4mG6-Pig31YmMdDC3T4qrS1XiGxFir4,1694
10692
10747
  xinference/web/ui/node_modules/.cache/babel-loader/d6bc59a190b6b65141f4168139fc73ec2b6ad14836fe6f3386dcd61fb99d39d7.json,sha256=H62ZgV9wlGeepP68tkxtJ77flZuuwAPOoCklNnuEvPU,1336
10693
- xinference/web/ui/node_modules/.cache/babel-loader/d6c643278a0b28320e6f33a60f5fb64c053997cbdc39a60e53ccc574688ade9e.json,sha256=BxXZY4HaZo1NLKIbIDDwXZBlGQE6Yu5a3HlyavMtVoc,20555
10694
10748
  xinference/web/ui/node_modules/.cache/babel-loader/d6cb17c6b5a4427f4e87f9f5b7cbb7e94286c95036c47eaecf4998fdb0d0e7b1.json,sha256=cApaGSHkTZsuoNWtkAQom9CeIXwIC9Bxihu0SgX55w0,1065
10695
10749
  xinference/web/ui/node_modules/.cache/babel-loader/d6cb811acc22c9971b5f2bba3ada65b7546d1f6e055e07e930ed4f559f77628f.json,sha256=_FBjHRmRUuZX5ecWLO1GsaaxYS1knu9LTbuZWJlz0dw,1256
10696
10750
  xinference/web/ui/node_modules/.cache/babel-loader/d6cbf32aa7cc6185ef2d4c18ca6669975eb04cbcbc84f5946ab5729d2949e416.json,sha256=90ucsdOyjCGTUgp-P3ljrwTgoalD054HcJv80aVHXnM,3233
@@ -10725,6 +10779,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/d75613f88a88197e115fad4878d13
10725
10779
  xinference/web/ui/node_modules/.cache/babel-loader/d759b2241df679e1059e984966fbe1b81f30a651a6a8aa26ab73eb3756e66287.json,sha256=GusgrgttYr7VtkNgvUmB0Zc2d-GuQ107LThf6QdEgCk,1615
10726
10780
  xinference/web/ui/node_modules/.cache/babel-loader/d75bd2b9f3cd24f7e0865a953dd4f8774d5e9f3c85fd51f6279105b2fdf245d5.json,sha256=sMbShos_gGR5VX3g83SqVHYuYF_UWviYuSgiEtkpCIY,1541
10727
10781
  xinference/web/ui/node_modules/.cache/babel-loader/d760e46bd29bac1e8ccb58ec2f980ec7604c51c01bbff339d276b391fde84589.json,sha256=EDAxqswNYSv0iW8aVetIYgYsNm0WlrVxTIXRi1u8-p4,1292
10782
+ xinference/web/ui/node_modules/.cache/babel-loader/d7664d18c4ddbad9c3a6a31b91f7c00fb0dde804608674a9860ee50f33e54708.json,sha256=rOoDsHX9tvydOmOgiWdBXWGiVyC5qeeRjHRu_JmOoSk,14446
10728
10783
  xinference/web/ui/node_modules/.cache/babel-loader/d7680380a675a9632f0861b67901d9dfc62977c71409126711644b510bf17e2f.json,sha256=SVKIMqJLsgScB4B_jLpVFVD60-Z-ffxQ2SnAscNdkHo,1298
10729
10784
  xinference/web/ui/node_modules/.cache/babel-loader/d777212982ce7c44eec08a43ac0f5f92e31bc01431455dc16503287af91557dc.json,sha256=jjjIi1oIslJhj6qoBW5O1DmAlRPpGTTUgyh-_J044aw,1732
10730
10785
  xinference/web/ui/node_modules/.cache/babel-loader/d79d0270028cdc880a77c99ef91be97ddf98199fd14e7c5ef097df499e031657.json,sha256=AeIpEQtHn_qkZlgZNZzlLyNeFC065saJFWy92d-M9Sk,1183
@@ -10806,6 +10861,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/d8ee3ff0ced6a25ab754c2a2accc3
10806
10861
  xinference/web/ui/node_modules/.cache/babel-loader/d8f7933772c48137bc3b7f3297f8008c4a700f0d9048f07b0fbee9fbbf5483f1.json,sha256=yIfyg8qSQuq_zcAQYowDKckmVKivzflJrZdbut15tGE,1638
10807
10862
  xinference/web/ui/node_modules/.cache/babel-loader/d8fa07ac6e86b8f600a7d6c29fbaa976e39b668f23abc94bb30a1ffd6a0fd61f.json,sha256=6tfJIyefAbInvUdZjfZIGDqBRlxGXpQNqF_W8myWZ04,1111
10808
10863
  xinference/web/ui/node_modules/.cache/babel-loader/d8ff0efe321e0670862b1b6b61b04be1ae2e3dcf9280a3eb0dec104bd5d483a4.json,sha256=oDQ-lZl2bKn-WkKDTZwbu6c9pdBmPJXhDAo63vc3Hhc,2667
10864
+ xinference/web/ui/node_modules/.cache/babel-loader/d9072c318b819b7c90a0f7e9cc0b6413b4dbeb8e9859898e53d75ea882fcde99.json,sha256=fy8vZSA0-tAz8174fSh1B23vDzPGkSEEsp2cdszclJ0,332129
10809
10865
  xinference/web/ui/node_modules/.cache/babel-loader/d907925fb28912f2e98cccfe758bce680aa4f894cc9d2079d73d7e2d85481d47.json,sha256=UPCuxhQhD264I6OdoiVgJq6OiFxE_spo5bYn0ndNAeo,820
10810
10866
  xinference/web/ui/node_modules/.cache/babel-loader/d90f78c4fc0e5ff0864a9b6847086b12b9e31fe8a664aa55f7fc4d75e25fbb62.json,sha256=YRfWnDPPwGEzlgRfVdGBticZNBbVzRMKWXWbQ1BON0g,2596
10811
10867
  xinference/web/ui/node_modules/.cache/babel-loader/d919cc09187461766a55f1c2b05bab4de48247aaa8c73fe82d6b59c416fb208b.json,sha256=VYoCY0zb0QOp4bWNwrcWDG7tn4XfMuHz9YZWlPgDnhw,1132
@@ -10904,6 +10960,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/dafd1cb73ab6b2e006685775ded74
10904
10960
  xinference/web/ui/node_modules/.cache/babel-loader/db05f17be907c3949bd5e2c9ec0d15882e2b58cbe3bce580319d549721c44cba.json,sha256=N3QoaAZKVvpkblS2ZcyltdULpJnQC_QtAjfhiWsi2rw,1366
10905
10961
  xinference/web/ui/node_modules/.cache/babel-loader/db0611993b35d8dac5636de0291c976553370b238d9b3ec0a82f113097248ce4.json,sha256=JdeZxXhFETs2-jidhcp_LRgipMLNLYUrBZXmAUjs8VI,1231
10906
10962
  xinference/web/ui/node_modules/.cache/babel-loader/db15953920ab2516461a0a2fe60621c8eb4432aa33cece9fc1be791ffbec4f78.json,sha256=s0wQzOHrx9yFtuczKovy30FTCBPtEVWpMEUg_qTpY2w,5731
10963
+ xinference/web/ui/node_modules/.cache/babel-loader/db16a983bc08a05f0439cc61ca0840e49e1d8400eef678909f16c032a418a3d6.json,sha256=5HOCB5eyRTHGRk6zSjd0s5RB4ogq3gjYNWqkhUsHtzI,134257
10907
10964
  xinference/web/ui/node_modules/.cache/babel-loader/db17cddaad6632d5aa3b5bcf48c52db3d8b4f3973787cd82dc19237b54f4ba8d.json,sha256=PjS5jh5YNgXZ-fTjZ32wWHLzQSfCm0mtyfKMuPuuaOU,1451
10908
10965
  xinference/web/ui/node_modules/.cache/babel-loader/db29f84b7d8549a4a8eace5c6bd3985c96c83818ccedd6c9f2aec3506a7fd43d.json,sha256=2rxojBMoN3Yb7sAG5byGeAlof1HJLQGacycSt6yzOU8,1153
10909
10966
  xinference/web/ui/node_modules/.cache/babel-loader/db2e2835f8a89206146ffe08363d6437e906cbb2ab968b0ab4a9dd153d49734a.json,sha256=OV5eBv86tU3_-_dOdL7XapsYxos7-PgXUrA4ISHTYW0,25966
@@ -10959,6 +11016,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/dc106fd5eca2e1e1d9ff521802adc
10959
11016
  xinference/web/ui/node_modules/.cache/babel-loader/dc123ef902ae1bb7586b4b70c4201089358e6ff622f42b410fa82a13cc38b315.json,sha256=EYShIG-XnH_fu-xIvyhMrpSfsDmI9lkHhwE_-ECLtD8,1298
10960
11017
  xinference/web/ui/node_modules/.cache/babel-loader/dc16895830c47107867d8e75948385c255e20e8fb03a764655a25006f6bb3423.json,sha256=3Yi6y0LQHAgP_FXZhI3fIB4XuC0r2UO_XJjO7VoNLpI,1295
10961
11018
  xinference/web/ui/node_modules/.cache/babel-loader/dc197e00c2829779b4d2c7a719246313c3e5c4a94970acd26ed0e52ec144d8b1.json,sha256=6_bRqrA1hqhb96xl-KNl0OsjhRSD2PB6Uco2v1ooZtQ,1468
11019
+ xinference/web/ui/node_modules/.cache/babel-loader/dc249829767b8abcbc3677e0b07b6d3ecbfdfe6d08cfe23a665eb33373a9aa9d.json,sha256=l01XQAykRnJByqiQzw_2XWwPhTbIUvWYWvyRjs9B4Qc,5082
10962
11020
  xinference/web/ui/node_modules/.cache/babel-loader/dc320ecc40a5d7a5c27f1ad6b549f2c1c27dd0d2020ec006d8299acb5a28034b.json,sha256=2bufTSrhZekl4aWqPKp-UcRWO0XwjvSQCkmilf6kiC0,528
10963
11021
  xinference/web/ui/node_modules/.cache/babel-loader/dc345700ee479411b8cb72fe5383eb1a548496737cdcd763f19b400ec8b74341.json,sha256=NT8J2U0aMmh7oOtPoQ6GNt3RcWYCtkikp1DGJotDSyg,1149
10964
11022
  xinference/web/ui/node_modules/.cache/babel-loader/dc354a282ba6605953d9b1bdb12ea78f905ca709cdc4773b276d28d9ae940b79.json,sha256=ckcCdORBgbXu1M2ytktW66az1wN3exW_XmOZGe0ZD6c,1403
@@ -11272,6 +11330,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/e23332113bb465570807233881c67
11272
11330
  xinference/web/ui/node_modules/.cache/babel-loader/e233c270f6dfbe07d56794125b0dbc7b210aa9d60bfa800f1a65d1017725aacb.json,sha256=T-6Qh1Bd2ET2s7uwz_l-H1D4YmhxiPu0z9QtAUa13yE,2335
11273
11331
  xinference/web/ui/node_modules/.cache/babel-loader/e2355f65675bf448620913cb394bd1a7654c112c65fe9a2e9cad956b423cd2cf.json,sha256=1XBl_gKYZ1vXz5Dm8JCI6ueUIPf3CYJmq6Hyj7wmaYY,1348
11274
11332
  xinference/web/ui/node_modules/.cache/babel-loader/e235fddcc3d5be0176eb839158aec89cdbfe418229ffefd5b850096e0008e472.json,sha256=quJOT-8bzeSAB-duCR6ZUCth1R5GFdQuJcPMaHPAwAA,1519
11333
+ xinference/web/ui/node_modules/.cache/babel-loader/e242c583c2dbc2784f0fcf513523975f7d5df447e106c1c17e49e8578a6fc3ed.json,sha256=7A2ZoOlXOoKgZmyVlwd9rU63AhxlXPwrOK8vsbc6Tzs,5320
11275
11334
  xinference/web/ui/node_modules/.cache/babel-loader/e248f466e99f90d380f52c948985591af0f64c9476cabf153213e601f26d56fe.json,sha256=a3zY9Uhewn94UH_oEWgeZRn9JPuLEZRD_My-qrCh4II,1043
11276
11335
  xinference/web/ui/node_modules/.cache/babel-loader/e24e0a714c9c084f168b65d26d5ee47035313842ae464764b23cf4d446de84ec.json,sha256=TC141hTEzdmepi_8XUCZexM9eBNeEGfjFd7zsuv_N7g,503
11277
11336
  xinference/web/ui/node_modules/.cache/babel-loader/e25714cafcc654bab8c31de244d1df7b0ecfb122ad2de464b87c0f4edc6dc3ae.json,sha256=gDJ-qPupD8XRWMFgO1dzxSkcWe7nCzVMkka4KDmY1Dg,1167
@@ -11361,7 +11420,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/e41fb0f646b017f61d83076f66e15
11361
11420
  xinference/web/ui/node_modules/.cache/babel-loader/e42494915054a5dad23ba3b78b66088888c6b238a1b94ee189097228a1c0543a.json,sha256=7Y0AZQ6BjK9_ZRSLKx1b2bkyGPIsT64CwPyjUxOgl2I,2317
11362
11421
  xinference/web/ui/node_modules/.cache/babel-loader/e427f1000001e7d6f6b6e5c07e7b74c0a538b03b09cbbcb4ebf5a8ee2d5d0bc5.json,sha256=wb6iZjtQRRJuhQ7KGdW-BsIqw2iM6yUp47vJdp6-upk,2157
11363
11422
  xinference/web/ui/node_modules/.cache/babel-loader/e429d5a5014100a41c720a5324a139bcc1cf1a662a723ea7209d17719a480953.json,sha256=emqP8a3UO8tCaVZcqsItMi9u0dUqQeLpUNECJ1KvlH0,1879
11364
- xinference/web/ui/node_modules/.cache/babel-loader/e42b72d4cc1ea412ebecbb8d040dc6c6bfee462c33903c2f1f3facb602ad742e.json,sha256=4RdDbeoTkIPgwxqprQ4QzACTSNuK8l_xiug-sdAeoSw,9831
11365
11423
  xinference/web/ui/node_modules/.cache/babel-loader/e42cc78022decaa22d66b47d2e2970f777682872d52622cd0b239e06df3fd61c.json,sha256=5XJHafg1U5xiVCjr6iO5rEt7-H6FUVc2Sjjq3xlPYKQ,6379
11366
11424
  xinference/web/ui/node_modules/.cache/babel-loader/e43d0d99318a292776677dbd344d482e969ef8a57428b6aa1ef555f940f2aa1f.json,sha256=hbKSPSXQLPGpUq0CF1TAkDvzUhoI7g5ZCDlw46emb_A,2174
11367
11425
  xinference/web/ui/node_modules/.cache/babel-loader/e440da7abd7b46e4802e3e0251d6d5411eb4dce999cf08ec9cad1f7976614567.json,sha256=wL-lW1XVx1SQ1a5HDzSuaZXASZWdQqgTwh1pzIeneIw,1367
@@ -11476,7 +11534,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/e63bbf4e2be4e290d0ab27ab726c5
11476
11534
  xinference/web/ui/node_modules/.cache/babel-loader/e63bed6e2431a76d99ce23c459ac072cf2a600ad83a0cbc2ab70ccdb0b53ab19.json,sha256=CuCvhCZyvxvcaXU1_e886W9TYVxxw1HAZrij9dUEz-c,1548
11477
11535
  xinference/web/ui/node_modules/.cache/babel-loader/e6414327e9907ff2a0d0220af37e43f5538c3fc667a8d4b889fc60801db6a138.json,sha256=SyvJeiYIkAH8-Kv6FVLcoBQq4hOKr4KgSN7K85fdKWY,1865
11478
11536
  xinference/web/ui/node_modules/.cache/babel-loader/e6448192c1587bcf98d82d4982712b0bde2c260e77086708a662940dfddf702c.json,sha256=ExN7p6fiFkBRoVAwyCcVFWqkzx-uXet6IpTKKJbkKgg,309
11479
- xinference/web/ui/node_modules/.cache/babel-loader/e64b7e8cedcf43d4c95deba60ec1341855c887705805bb62431693118b870c69.json,sha256=VEQxXkIGOkcu3d5MIWHheeBa7WtuCeLlCYYPG9YHnU0,5440
11480
11537
  xinference/web/ui/node_modules/.cache/babel-loader/e64cac4631ac00f380657f80a294ec1747c2f7d6aef52c8578d728d15adf5b11.json,sha256=H7hKoTpT9ZxbPJAph0fLfVN1tR1PKnz3eg4oiV8Dsg0,1300
11481
11538
  xinference/web/ui/node_modules/.cache/babel-loader/e655899d292c5b498b8918292324d3027d0dc99efa3323f9a0011cb7e81ce5ba.json,sha256=GhTzdmLzTf4MkABonxPhJzv2197a3QJCbtUCIaB9whQ,426
11482
11539
  xinference/web/ui/node_modules/.cache/babel-loader/e656be73510c6cf2b89f06187a87c614e28a596f6ac4e52ab3ccba8569cf1082.json,sha256=b6L1XRGH7H2g3HvJSFJjX-WcA6o93NEez37y32LRMjg,1990
@@ -11702,6 +11759,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/eaa311b61f8dea79db1d046af8ab3
11702
11759
  xinference/web/ui/node_modules/.cache/babel-loader/eaacf53d9722fca6051c537570e31c23cc2c42c37b4a237afec96465759b0d6a.json,sha256=pCx3URNf2CtG8GPRThgJCHq6ke07G7HMXRJi2kvtiI0,1417
11703
11760
  xinference/web/ui/node_modules/.cache/babel-loader/eab37f71d46793e8d42637a18ae046f6b93da6e54af213375de495eddd9f4feb.json,sha256=yY-uIbbQsewocbi_Flczpy7-yi5Z9NQXxo-eR_FIpZQ,1826
11704
11761
  xinference/web/ui/node_modules/.cache/babel-loader/eac262a3ad29832be26f65084770e524abcecd6238fcf45160fb4ce5d079c8a5.json,sha256=j65gEyf66UYirRIIYiV9yOHjNGVs4PPn-6iIA4Caiqc,1079
11762
+ xinference/web/ui/node_modules/.cache/babel-loader/eac5f1296513e69e4b96f750ddccd4d0264e2bae4e4c449144e83274a48698d9.json,sha256=VL6zbGgVND_2rRh0vpDwEE0S5p5hqgY0TCcGVKsejxQ,3501
11705
11763
  xinference/web/ui/node_modules/.cache/babel-loader/eac65c0c9fa002884bb343228a5f572c73f70a9c1e367a52b589eadce6c94032.json,sha256=BS-4To808U1F-qhZ0gVb8VVyaHmHckRQ4iOPXSnmlNg,1347
11706
11764
  xinference/web/ui/node_modules/.cache/babel-loader/eac708e1c00823e08e93aa48286dfa0ec26bcb5c37d3415078e01be1eccdf07f.json,sha256=BiMl0MUruOEqLY-KL9P2CZbQhbiPhfMi_sHCK5Zz5ss,2365
11707
11765
  xinference/web/ui/node_modules/.cache/babel-loader/eadb6083f26fe6e3bf4592b407b6da4e9e4810192125b6e14437719fdc77c3b1.json,sha256=BmdoSlpjRJQ1YsxsHAx_p-bV3NFU6YDS4-kg-SnCMII,1396
@@ -11805,6 +11863,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/ed332503f7f9ee0b665b5e8183892
11805
11863
  xinference/web/ui/node_modules/.cache/babel-loader/ed37a4506676fe2b0ab1fcfe07c6a2279585f8121af90f2be5b6180a7b36a20f.json,sha256=FJeewi3aXSVj-5Jcuouz3w9lJppqlswz85Cwvia7jI8,3049
11806
11864
  xinference/web/ui/node_modules/.cache/babel-loader/ed48b21d0c244a7297e552bee452d2d440ee92561dfea73ca1d946fbcd9bb86e.json,sha256=s4s4mEQsgNVB_ptq1TBJIedbj2UpFEZ8jZxdVgb86C0,1404
11807
11865
  xinference/web/ui/node_modules/.cache/babel-loader/ed528b169ff6c5941b8b1fc8ada2e10d250d21867e76a09fb3f2b6c719f0a57b.json,sha256=ic1Qn1FhWevpzktCyCZscp4qtGA3p43zg16MzAUZPuk,1363
11866
+ xinference/web/ui/node_modules/.cache/babel-loader/ed57202cb79649bb716400436590245547df241988fc7c8e1d85d132299542d2.json,sha256=02rj8-yoiMC4-1ttT-O_RctuBq6658prnxskUDHlg6M,21135
11808
11867
  xinference/web/ui/node_modules/.cache/babel-loader/ed57c2762de9d32b9e6cfcb19b3213d4ab63d6cf0ba04d1ecaddd5f81cf71927.json,sha256=wZfwM8MpcVhdFfZWd2XL7Uw-Jg26cNisP0AFvxcGp64,1050
11809
11868
  xinference/web/ui/node_modules/.cache/babel-loader/ed580bd00e2356af6688efd3e478c030cfa0dad33e679128213b1245451afbca.json,sha256=bx7h-9YTZQVSBeIbTBs9W2Y4r4wfHUs0goH37W6D8CE,1483
11810
11869
  xinference/web/ui/node_modules/.cache/babel-loader/ed5b124e59321bdf3229bdfada580243b9d91db1af4330b6f7d930a76b946156.json,sha256=qIY_6ZbPTgwkkDiBmiUYJnLgq5KmLROKg0UaYUgtzig,1218
@@ -11987,6 +12046,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/f108323debea3f1c061800f13e272
11987
12046
  xinference/web/ui/node_modules/.cache/babel-loader/f110784262cb5e5b214e52117f5b3c5297d023b768a40490a5f872b0fc27f76e.json,sha256=CGH0LkkVkURm2To5ZAqTmxXStAH9mfWp_3rCH7JO__A,1606
11988
12047
  xinference/web/ui/node_modules/.cache/babel-loader/f119720849b267ba7e78a79e6632b8cc17602e8b8aa5f0aec2291082fc1cf2ad.json,sha256=fpUsdq5dT6kvK6PIFs8TvN4z6eQxTqNorhIKE8DaBLE,1314
11989
12048
  xinference/web/ui/node_modules/.cache/babel-loader/f11fae4007495156ff20e9d9ebd5c658ed81f1e945aaf42b69455bc1d4c70c56.json,sha256=FXJzjborA2BgoxXniH8xatywtq4pFNmeT73_Cqg_XC0,2299
12049
+ xinference/web/ui/node_modules/.cache/babel-loader/f125bf72e773a14cdaebd0c343e80adb909d12e317ee5c00cd4a57442fbe2c62.json,sha256=2aldnAzp8LHQMBILJF6cScj-5pzeh7KZ_IS1FB7-wF4,5345
11990
12050
  xinference/web/ui/node_modules/.cache/babel-loader/f129e97d726868ec9a3bbaa900e267b7fff9c4a26509b16ef4e4823183cd401b.json,sha256=sSPFust6Lizk8bPH--yJM5NlzUOTZQPGgk70jlLDfiM,2321
11991
12051
  xinference/web/ui/node_modules/.cache/babel-loader/f12caf265724e281f7f6451332b793aa36e91989b1003cddc431ea7e1a070a6f.json,sha256=brPur4sw70pexR4_acs47VBVUUWW5H5Qc_67phr4Jww,1515
11992
12052
  xinference/web/ui/node_modules/.cache/babel-loader/f1353cac2392bbd432028cf5eac6635252eddbedcff4b81b3116f1f1ec90fdd1.json,sha256=6ACwyAyaSE8tUCnbR4f6Qx9j8qhBccApTuOqiNUySFs,1327
@@ -12174,7 +12234,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/f4f343b04d11666f98f14a31e2a1b
12174
12234
  xinference/web/ui/node_modules/.cache/babel-loader/f4fc407c14fb0e71fec7f6993086752a43887f8a7bf7e7989846e60904b5e1c2.json,sha256=KoWp9emzLVKyh0AdeWCqgtAJctr1TxkTLoix6JNxfEA,1363
12175
12235
  xinference/web/ui/node_modules/.cache/babel-loader/f4fdaad59db5ed92a1c678affaf34b036740b5345d0cc696ae81c8fe5c60949b.json,sha256=4pk4GFrSiEVlWRwOTUA1oyQvYxdMsbykunwN3y4Qok4,1394
12176
12236
  xinference/web/ui/node_modules/.cache/babel-loader/f501fca5d4064783cb26d01e00f3b8c97e23781c59b9018a810f7cbdb8b203a4.json,sha256=cw5LNX7lTybhK8nAqz95Ju9h4YRBLulpA8zvrwJsK5g,1598
12177
- xinference/web/ui/node_modules/.cache/babel-loader/f5039ddbeb815c51491a1989532006b96fc3ae49c6c60e3c097f875b4ae915ae.json,sha256=XfXnMNV-QdWUJboPH_CLcTEfwJCynkJwW6k6IwX0CA8,14626
12178
12237
  xinference/web/ui/node_modules/.cache/babel-loader/f5166236bc3e182f8bfd009c91200dba9d7cf96c0002eb83fe4ffc17586dd531.json,sha256=ieblslAPgYaHbU-Yi_nRmNDm9xgdkmRa6ehWwiswOjA,1043
12179
12238
  xinference/web/ui/node_modules/.cache/babel-loader/f519c4de4494e4cbfec0261d864c14d67d3dd97f937ad42f4e856c9ade0cd097.json,sha256=OVVaC1LtZacvN21gLcZmeeconK68h2bL3bDn78JGYK8,1829
12180
12239
  xinference/web/ui/node_modules/.cache/babel-loader/f51a6ad07f134e87af4ca8cb2a95b8f21048ad48380d369f001ce87fd97886c6.json,sha256=SgcKRCCbTPp0TgoAbxPTIMyqp3Z6dJb33VeE5Ff2K6I,1254
@@ -12280,7 +12339,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/f70f1d8ec5d018de3ce7b363d1ea0
12280
12339
  xinference/web/ui/node_modules/.cache/babel-loader/f71419551f1c94ba50aa5d0a076697d8a282776fc982ee7954bb3a97ce82b066.json,sha256=7c1B0jy7uctlOtfmRYhn7MdvTyEMMHJqmLTFl4Uw8Hk,1265
12281
12340
  xinference/web/ui/node_modules/.cache/babel-loader/f71c37113c7ff54dacd86a97719e795aec998fbac52e30864901b2a92222aa16.json,sha256=ascnsrlL2_Np-7bcJqGQny_UiXq1AJKQr7pbloXK6BY,1256
12282
12341
  xinference/web/ui/node_modules/.cache/babel-loader/f721efe48ae867d730170b98c5d9329da7f6f5169a562ee2e2a6fe6995e52dc1.json,sha256=n7Y6FZL6OPXqliA__lR9gD1BZiYGZUzbMoKF18iv2Qg,1369
12283
- xinference/web/ui/node_modules/.cache/babel-loader/f72f011744c4649fabddca6f7a9327861ac0a315a89b1a2e62a39774e7863845.json,sha256=NMgZ0Lk6tKkuJC5EOv7XwcF7HYDGrSYIZop8qxR2IDg,9786
12284
12342
  xinference/web/ui/node_modules/.cache/babel-loader/f72f55720771ce53110ca40b8de2b354a2a277e2339d9b6093a0bdc8f4013a97.json,sha256=YWIeUTTNRB3U1aagaQ2G0--agug1D06FDrBQaYblQe4,1045
12285
12343
  xinference/web/ui/node_modules/.cache/babel-loader/f72f67c0ba1025e917ab6ec6aff36250aede4418ad1fa8e3c4059bad7e1eb305.json,sha256=IeAIeGn-E8kE5LHDLJYTBGLK6ODhk-FU-fxWC3tHuug,2318
12286
12344
  xinference/web/ui/node_modules/.cache/babel-loader/f7332c70db6530bb694071f0461bdcdb95812cc2455f9455d2a9deab06c2c5d5.json,sha256=qE2HWSobExOV_PdjHMK4UPfi74CoomEuI7NMAnAY0mE,1559
@@ -12374,6 +12432,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/f90a06d01c6f49f96be6d8dacfc05
12374
12432
  xinference/web/ui/node_modules/.cache/babel-loader/f91151b4dcbd0d780192d755f7ee7c0280b0dd9aa444b571fb8ce88ef727de79.json,sha256=xmTm3VW2LlE2lwVhSjb0iyZ1ReRvsfPZh0v2-5rs47Y,1206
12375
12433
  xinference/web/ui/node_modules/.cache/babel-loader/f913b95f47b5f73b60d3225502f1fa19d867d96b178233c25be3eac617751d58.json,sha256=eGrTDp2tjukVtFqTpX_qlCcuRQT5WNqX0CLFnKJp3rU,1286
12376
12434
  xinference/web/ui/node_modules/.cache/babel-loader/f915d6d3c96981f18174e40ad3b5f6bbbbceb35946c3ab3241a610a3226e041d.json,sha256=0Bx8VqX1eEtyk52RbgfnaiGKx3xAmpxxudQ513Fb6Ss,1950
12435
+ xinference/web/ui/node_modules/.cache/babel-loader/f91af913d7f91c410719ab13136aaed3aaf0f8dda06652f25c42cb5231587398.json,sha256=cTEPhC7FyLDe94nRu6iQdtn_ugc2gvUxLJWQEIZDXe0,1963
12377
12436
  xinference/web/ui/node_modules/.cache/babel-loader/f91e3dda1729ea500805fa915a019aada9ce8ea66b7402ca3002c36b7028d50f.json,sha256=dj7lf4L5Q_yXb7Rj3Za9KPdeGWTSwAhMZFh5dKXrRmY,1184
12378
12437
  xinference/web/ui/node_modules/.cache/babel-loader/f9232fc4d716e454755ff231179f4454f48b695cc8c14c56d37c762a070ff795.json,sha256=kQe9d4Ecmeh0THYN-QHOYV1KLo6g-yGMiJowmuLRUqU,1508
12379
12438
  xinference/web/ui/node_modules/.cache/babel-loader/f927a20c8492729544398c53966284f24919cab7a18547fd6eacaab85262d54b.json,sha256=87NbVzZ8TS_wfXQ2Zi575BvghSCzPPkP3YmOE5b4-Uk,1277
@@ -12649,7 +12708,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/fea30c99ca4d66aa9e28b97f3a53f
12649
12708
  xinference/web/ui/node_modules/.cache/babel-loader/fea50374ff9a5128187346c9afff58467b8334882943a0cecf2b8612f50a2de0.json,sha256=fI6pvwRtDq5ZHNHEepJNp2b1HLoCfn4azcFmswD-DwE,1754
12650
12709
  xinference/web/ui/node_modules/.cache/babel-loader/fea57c6780d7380597cc72e22aa7f153e28ed2530aff75cbe38be3d2f43467b0.json,sha256=GDAF23B7YGhDt6tB6NbR16KdTIlpApJiJjAldWj3xmM,382
12651
12710
  xinference/web/ui/node_modules/.cache/babel-loader/fea86398d4c077f1c87e5f9c00e3ecf510a22de4dd8aeb27d5582d271d0b83da.json,sha256=HX1nydAYreKMX4Eu5qwbGLDgAba3WYFmrhPtMEU-lMg,2881
12652
- xinference/web/ui/node_modules/.cache/babel-loader/feabb04b4aa507102da0a64398a40818e878fd1df9b75dda8461b3e1e7ff3f11.json,sha256=RvMWgzvvv0BIjMh3VrQUUDRMstyRBbnqsqFhHSEPeM0,6407
12653
12711
  xinference/web/ui/node_modules/.cache/babel-loader/feb1b098529b2e0b4ba580dc838eb30e98ca96a93c744aa29d555cc252621ed5.json,sha256=uRxCH-k_SOB8qU2yXbbbzile16KwdQzxWsuB7jbJB3M,15152
12654
12712
  xinference/web/ui/node_modules/.cache/babel-loader/feb218750f215bbd193160bbf99235be78ca185199a3723384de744d09045a3b.json,sha256=OConYgo96N2zQvwzW18axEnvI0SZKjQ6gW3W6TwI7bM,1894
12655
12713
  xinference/web/ui/node_modules/.cache/babel-loader/feb3a63f3602f17dc3413d5b184815fbf84724844150e50a5167ee63a7f8b596.json,sha256=L8mZnGwO9k1hNiBGIa1zjcbS-leO3lqy1ml0BLkGrrM,2600
@@ -12844,7 +12902,7 @@ xinference/web/ui/node_modules/@babel/preset-modules/package.json,sha256=kNWArL_
12844
12902
  xinference/web/ui/node_modules/@babel/preset-react/package.json,sha256=6C-5rDFo8uDI4M_Ocr_kezc5rlLn5U1lSUB2Qv1ro28,1181
12845
12903
  xinference/web/ui/node_modules/@babel/preset-typescript/package.json,sha256=ZgqZA30pAgRHCBGQPUr_b58eGHODVTdXYf7h1bd6Td0,1165
12846
12904
  xinference/web/ui/node_modules/@babel/regjsgen/package.json,sha256=iPuLZNZ28OmuFTgLw1ALgKNRpqgFAB_dUTcZSc9niKY,1020
12847
- xinference/web/ui/node_modules/@babel/runtime/package.json,sha256=gV8fCdjMRPqaRaT8b0elXuBDzr9rI-O3JZ72wJMuA_s,37225
12905
+ xinference/web/ui/node_modules/@babel/runtime/package.json,sha256=rcrTSIMEDfLrTVPBZBXVuq9RCwHpWewa26o1ihO7xzU,39095
12848
12906
  xinference/web/ui/node_modules/@babel/runtime/helpers/esm/package.json,sha256=0qrzJDmURlFrQtgmJL4Yrc1kZf3fEAt7p59XMj9j2lI,22
12849
12907
  xinference/web/ui/node_modules/@babel/runtime/node_modules/regenerator-runtime/package.json,sha256=kMpvmDX_3KELgzrtF3fqEzEGkkdL9FK14uEOUq9JOxc,463
12850
12908
  xinference/web/ui/node_modules/@babel/template/package.json,sha256=zSBH3uXjBP6MTkBSVEFHm_Z7_9o7N0zcZp04dAA1BBE,771
@@ -14318,6 +14376,7 @@ xinference/web/ui/node_modules/html-escaper/package.json,sha256=do4fPlfGgDKAkl5x
14318
14376
  xinference/web/ui/node_modules/html-escaper/cjs/package.json,sha256=-mlEogyl5vuvmP0gLrjHAE1bSreG42ue0C7jHb4ZbJ8,19
14319
14377
  xinference/web/ui/node_modules/html-escaper/test/package.json,sha256=-mlEogyl5vuvmP0gLrjHAE1bSreG42ue0C7jHb4ZbJ8,19
14320
14378
  xinference/web/ui/node_modules/html-minifier-terser/package.json,sha256=Fmdhssoyqvzi-lE_a0Kil9bjCqULodC7eaaxlBWDmOY,2187
14379
+ xinference/web/ui/node_modules/html-parse-stringify/package.json,sha256=QOBJkubUkoJWbNmy64J0fxWDH3HCCmnseRpQIWLWgYs,1260
14321
14380
  xinference/web/ui/node_modules/html-webpack-plugin/package.json,sha256=C19j0ExgWQ4bzskWmRN-bm0HtighUg714rPhAGFl9mI,2293
14322
14381
  xinference/web/ui/node_modules/htmlparser2/package.json,sha256=ZjQjTA7g62dpztvHyi0Fs_xmdwNhE_nz8pP1QVC8uCY,2004
14323
14382
  xinference/web/ui/node_modules/http-deceiver/package.json,sha256=2gUUNZ9Fw5OFs3KdXnV5cDDO0PD8kzASkQQ9rhz0tVQ,710
@@ -14329,6 +14388,8 @@ xinference/web/ui/node_modules/http-proxy-agent/package.json,sha256=iZP5XzXGvXre
14329
14388
  xinference/web/ui/node_modules/http-proxy-middleware/package.json,sha256=WltwxrNzc1XzcaGSR44_emvWo-h1eWg4stWHwHp7a64,2920
14330
14389
  xinference/web/ui/node_modules/https-proxy-agent/package.json,sha256=1B2RJ8vtQ9-OLUBL-vQTYZQqiv64LrV8z4UV4E6zPR0,1405
14331
14390
  xinference/web/ui/node_modules/human-signals/package.json,sha256=jQ5YIgQ7YgOBu6Abg1Ajqlh9rMxskwK9AC8YXRRB5YA,1220
14391
+ xinference/web/ui/node_modules/i18next/package.json,sha256=7tATkFDMbTti6XopUpvU1ynR1fmTr454_khWTCRmSPw,4379
14392
+ xinference/web/ui/node_modules/i18next/dist/esm/package.json,sha256=75pXrwOmWttCcS8Lf27UwkTrFkvCOlSIk5rp0nfScBo,38
14332
14393
  xinference/web/ui/node_modules/iconv-lite/package.json,sha256=OpWC_RIfhBwkXR_PhO8LnkHJS3hbjX62P59a7JutC5g,1131
14333
14394
  xinference/web/ui/node_modules/iconv-lite/encodings/tables/big5-added.json,sha256=25TbXl06tpbdsAJWhc-oXaGGSDmkomqrL4-G9rg4Iog,17717
14334
14395
  xinference/web/ui/node_modules/iconv-lite/encodings/tables/cp936.json,sha256=giW7aT79OAJ57XKAuPhBn9BpxfAY0g1ZRr8YetksDPc,47320
@@ -14950,6 +15011,9 @@ xinference/web/ui/node_modules/react-dev-utils/node_modules/supports-color/packa
14950
15011
  xinference/web/ui/node_modules/react-dom/package.json,sha256=6dwVI4Pwh1jOWbf0qUFxRkPY5A3XKkF4Xy8GIM8EG3g,1353
14951
15012
  xinference/web/ui/node_modules/react-error-overlay/package.json,sha256=CIjlts8Y64mehjDwuqkt7Zw9HhG35RbGz7DpjqxvkI8,2106
14952
15013
  xinference/web/ui/node_modules/react-fast-compare/package.json,sha256=FgehAGutvBOIuH1l_2Y5bxeDqBnrhDfXNwZQ_ZKzxCo,2311
15014
+ xinference/web/ui/node_modules/react-i18next/.eslintrc.json,sha256=Q_61XBL-WD3jT_Px6JaKwVYGM0tKPVXfwNEXWwoRC0I,2423
15015
+ xinference/web/ui/node_modules/react-i18next/package.json,sha256=BVwc2y_Krw4vBewP-Juq_GPs9jaubHzdACyU1z9weD0,5735
15016
+ xinference/web/ui/node_modules/react-i18next/dist/es/package.json,sha256=fLMf96jotttPm8baBM6XsbjhfwJXRuPrUfWv5dRWEPs,37
14953
15017
  xinference/web/ui/node_modules/react-is/build-info.json,sha256=6mU6yN6sfeCkmDwAxD5qAp5A05HOcfjEFWrRG72NmSk,167
14954
15018
  xinference/web/ui/node_modules/react-is/package.json,sha256=lgAtzFisvTHA4TKcVI9Nln6hRGxWWOUU3hJb5yk-XmA,529
14955
15019
  xinference/web/ui/node_modules/react-lifecycles-compat/package.json,sha256=5bvnjFAUuvBtAVcDySqt4yVdov9dCkoiU-VtYp4dRFI,1127
@@ -15283,6 +15347,7 @@ xinference/web/ui/node_modules/uuid/package.json,sha256=XWGBILKbLqnPYF6gllfyDC8S
15283
15347
  xinference/web/ui/node_modules/v8-compile-cache/package.json,sha256=D6A3MMOWgRD2-MCI6_ujekMZBpCpZPuLzG5IWtvl8cw,832
15284
15348
  xinference/web/ui/node_modules/v8-to-istanbul/package.json,sha256=uhTNNWqsSPBbx3IPaNDRLu_Aj_lWWPmRCtK4vaM5jyo,1074
15285
15349
  xinference/web/ui/node_modules/vary/package.json,sha256=c-2u6WTVJxF6n2nWNg--bOxTSr2RJ3lL4Bpq9YoTnao,1215
15350
+ xinference/web/ui/node_modules/void-elements/package.json,sha256=nMNQPmXGRxkmlCHBgg8Ru2atWl8Vl-5o41DtGN0juYo,754
15286
15351
  xinference/web/ui/node_modules/w3c-hr-time/package.json,sha256=urpGj9qK1qulwaRMlBI3f_tR6idf9TaYJdB_a2EZTWk,594
15287
15352
  xinference/web/ui/node_modules/w3c-xmlserializer/package.json,sha256=RHJW2GX0f5YzTjjr0ldTgDLZQj8URbkH2aWUTLRFH_o,573
15288
15353
  xinference/web/ui/node_modules/walker/package.json,sha256=9INDl979JvGm5_VJ1qkDP2Cvic2kvghwSK0zKsealTI,569
@@ -15575,9 +15640,11 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
15575
15640
  xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
15576
15641
  xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
15577
15642
  xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
15578
- xinference-1.1.0.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15579
- xinference-1.1.0.dist-info/METADATA,sha256=xlWoTS4luzdBOw0C4b2q2Axb6-DxFMoTRCFoDXMSUQA,23021
15580
- xinference-1.1.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
15581
- xinference-1.1.0.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15582
- xinference-1.1.0.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15583
- xinference-1.1.0.dist-info/RECORD,,
15643
+ xinference/web/ui/src/locales/en.json,sha256=MahpAAKmZPqtK5-M_kwdI9IUbBP-GcNqI0jSTVXHEE8,8169
15644
+ xinference/web/ui/src/locales/zh.json,sha256=9-Hu72a9FSB1ZCUMkKDzopBTh7Aer6b-3PB62cYxsOg,7933
15645
+ xinference-1.2.0.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15646
+ xinference-1.2.0.dist-info/METADATA,sha256=sSqOOxjrBFk2shW8aoLogkxglOMunGuSQZI6VeiHg4Y,23633
15647
+ xinference-1.2.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
15648
+ xinference-1.2.0.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15649
+ xinference-1.2.0.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15650
+ xinference-1.2.0.dist-info/RECORD,,