xinference 1.2.0__py3-none-any.whl → 1.2.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of xinference might be problematic. Click here for more details.

Files changed (124) hide show
  1. xinference/_version.py +3 -3
  2. xinference/api/restful_api.py +4 -7
  3. xinference/client/handlers.py +3 -0
  4. xinference/core/chat_interface.py +6 -1
  5. xinference/core/model.py +2 -0
  6. xinference/core/scheduler.py +4 -7
  7. xinference/core/supervisor.py +114 -23
  8. xinference/core/worker.py +70 -4
  9. xinference/deploy/local.py +2 -1
  10. xinference/model/audio/core.py +11 -0
  11. xinference/model/audio/cosyvoice.py +16 -5
  12. xinference/model/audio/kokoro.py +139 -0
  13. xinference/model/audio/melotts.py +110 -0
  14. xinference/model/audio/model_spec.json +80 -0
  15. xinference/model/audio/model_spec_modelscope.json +18 -0
  16. xinference/model/audio/whisper.py +35 -10
  17. xinference/model/llm/llama_cpp/core.py +21 -14
  18. xinference/model/llm/llm_family.json +527 -1
  19. xinference/model/llm/llm_family.py +4 -1
  20. xinference/model/llm/llm_family_modelscope.json +495 -3
  21. xinference/model/llm/memory.py +1 -1
  22. xinference/model/llm/mlx/core.py +24 -6
  23. xinference/model/llm/transformers/core.py +9 -1
  24. xinference/model/llm/transformers/qwen2_audio.py +3 -1
  25. xinference/model/llm/transformers/qwen2_vl.py +20 -3
  26. xinference/model/llm/transformers/utils.py +22 -11
  27. xinference/model/llm/utils.py +115 -1
  28. xinference/model/llm/vllm/core.py +14 -4
  29. xinference/model/llm/vllm/xavier/block.py +3 -4
  30. xinference/model/llm/vllm/xavier/block_tracker.py +71 -58
  31. xinference/model/llm/vllm/xavier/collective.py +74 -0
  32. xinference/model/llm/vllm/xavier/collective_manager.py +147 -0
  33. xinference/model/llm/vllm/xavier/executor.py +18 -16
  34. xinference/model/llm/vllm/xavier/scheduler.py +79 -63
  35. xinference/model/llm/vllm/xavier/test/test_xavier.py +60 -35
  36. xinference/model/llm/vllm/xavier/transfer.py +53 -32
  37. xinference/thirdparty/cosyvoice/bin/spk2info.pt +0 -0
  38. xinference/thirdparty/melo/__init__.py +0 -0
  39. xinference/thirdparty/melo/api.py +135 -0
  40. xinference/thirdparty/melo/app.py +61 -0
  41. xinference/thirdparty/melo/attentions.py +459 -0
  42. xinference/thirdparty/melo/commons.py +160 -0
  43. xinference/thirdparty/melo/configs/config.json +94 -0
  44. xinference/thirdparty/melo/data/example/metadata.list +20 -0
  45. xinference/thirdparty/melo/data_utils.py +413 -0
  46. xinference/thirdparty/melo/download_utils.py +67 -0
  47. xinference/thirdparty/melo/infer.py +25 -0
  48. xinference/thirdparty/melo/init_downloads.py +14 -0
  49. xinference/thirdparty/melo/losses.py +58 -0
  50. xinference/thirdparty/melo/main.py +36 -0
  51. xinference/thirdparty/melo/mel_processing.py +174 -0
  52. xinference/thirdparty/melo/models.py +1030 -0
  53. xinference/thirdparty/melo/modules.py +598 -0
  54. xinference/thirdparty/melo/monotonic_align/__init__.py +16 -0
  55. xinference/thirdparty/melo/monotonic_align/core.py +46 -0
  56. xinference/thirdparty/melo/preprocess_text.py +135 -0
  57. xinference/thirdparty/melo/split_utils.py +174 -0
  58. xinference/thirdparty/melo/text/__init__.py +35 -0
  59. xinference/thirdparty/melo/text/chinese.py +199 -0
  60. xinference/thirdparty/melo/text/chinese_bert.py +107 -0
  61. xinference/thirdparty/melo/text/chinese_mix.py +253 -0
  62. xinference/thirdparty/melo/text/cleaner.py +36 -0
  63. xinference/thirdparty/melo/text/cleaner_multiling.py +110 -0
  64. xinference/thirdparty/melo/text/cmudict.rep +129530 -0
  65. xinference/thirdparty/melo/text/cmudict_cache.pickle +0 -0
  66. xinference/thirdparty/melo/text/english.py +284 -0
  67. xinference/thirdparty/melo/text/english_bert.py +39 -0
  68. xinference/thirdparty/melo/text/english_utils/__init__.py +0 -0
  69. xinference/thirdparty/melo/text/english_utils/abbreviations.py +35 -0
  70. xinference/thirdparty/melo/text/english_utils/number_norm.py +97 -0
  71. xinference/thirdparty/melo/text/english_utils/time_norm.py +47 -0
  72. xinference/thirdparty/melo/text/es_phonemizer/__init__.py +0 -0
  73. xinference/thirdparty/melo/text/es_phonemizer/base.py +140 -0
  74. xinference/thirdparty/melo/text/es_phonemizer/cleaner.py +109 -0
  75. xinference/thirdparty/melo/text/es_phonemizer/es_symbols.json +79 -0
  76. xinference/thirdparty/melo/text/es_phonemizer/es_symbols.txt +1 -0
  77. xinference/thirdparty/melo/text/es_phonemizer/es_symbols_v2.json +83 -0
  78. xinference/thirdparty/melo/text/es_phonemizer/es_to_ipa.py +12 -0
  79. xinference/thirdparty/melo/text/es_phonemizer/example_ipa.txt +400 -0
  80. xinference/thirdparty/melo/text/es_phonemizer/gruut_wrapper.py +253 -0
  81. xinference/thirdparty/melo/text/es_phonemizer/punctuation.py +174 -0
  82. xinference/thirdparty/melo/text/es_phonemizer/spanish_symbols.txt +1 -0
  83. xinference/thirdparty/melo/text/es_phonemizer/test.ipynb +124 -0
  84. xinference/thirdparty/melo/text/fr_phonemizer/__init__.py +0 -0
  85. xinference/thirdparty/melo/text/fr_phonemizer/base.py +140 -0
  86. xinference/thirdparty/melo/text/fr_phonemizer/cleaner.py +122 -0
  87. xinference/thirdparty/melo/text/fr_phonemizer/en_symbols.json +78 -0
  88. xinference/thirdparty/melo/text/fr_phonemizer/example_ipa.txt +1 -0
  89. xinference/thirdparty/melo/text/fr_phonemizer/fr_symbols.json +89 -0
  90. xinference/thirdparty/melo/text/fr_phonemizer/fr_to_ipa.py +30 -0
  91. xinference/thirdparty/melo/text/fr_phonemizer/french_abbreviations.py +48 -0
  92. xinference/thirdparty/melo/text/fr_phonemizer/french_symbols.txt +1 -0
  93. xinference/thirdparty/melo/text/fr_phonemizer/gruut_wrapper.py +258 -0
  94. xinference/thirdparty/melo/text/fr_phonemizer/punctuation.py +172 -0
  95. xinference/thirdparty/melo/text/french.py +94 -0
  96. xinference/thirdparty/melo/text/french_bert.py +39 -0
  97. xinference/thirdparty/melo/text/japanese.py +647 -0
  98. xinference/thirdparty/melo/text/japanese_bert.py +49 -0
  99. xinference/thirdparty/melo/text/ko_dictionary.py +44 -0
  100. xinference/thirdparty/melo/text/korean.py +192 -0
  101. xinference/thirdparty/melo/text/opencpop-strict.txt +429 -0
  102. xinference/thirdparty/melo/text/spanish.py +122 -0
  103. xinference/thirdparty/melo/text/spanish_bert.py +39 -0
  104. xinference/thirdparty/melo/text/symbols.py +290 -0
  105. xinference/thirdparty/melo/text/tone_sandhi.py +769 -0
  106. xinference/thirdparty/melo/train.py +635 -0
  107. xinference/thirdparty/melo/train.sh +19 -0
  108. xinference/thirdparty/melo/transforms.py +209 -0
  109. xinference/thirdparty/melo/utils.py +424 -0
  110. xinference/types.py +2 -0
  111. xinference/web/ui/build/asset-manifest.json +3 -3
  112. xinference/web/ui/build/index.html +1 -1
  113. xinference/web/ui/build/static/js/{main.1eb206d1.js → main.b0936c54.js} +3 -3
  114. xinference/web/ui/build/static/js/main.b0936c54.js.map +1 -0
  115. xinference/web/ui/node_modules/.cache/babel-loader/a3ff866acddf34917a7ee399e0e571a4dfd8ba66d5057db885f243e16a6eb17d.json +1 -0
  116. {xinference-1.2.0.dist-info → xinference-1.2.2.dist-info}/METADATA +37 -27
  117. {xinference-1.2.0.dist-info → xinference-1.2.2.dist-info}/RECORD +122 -45
  118. xinference/web/ui/build/static/js/main.1eb206d1.js.map +0 -1
  119. xinference/web/ui/node_modules/.cache/babel-loader/2213d49de260e1f67c888081b18f120f5225462b829ae57c9e05a05cec83689d.json +0 -1
  120. /xinference/web/ui/build/static/js/{main.1eb206d1.js.LICENSE.txt → main.b0936c54.js.LICENSE.txt} +0 -0
  121. {xinference-1.2.0.dist-info → xinference-1.2.2.dist-info}/LICENSE +0 -0
  122. {xinference-1.2.0.dist-info → xinference-1.2.2.dist-info}/WHEEL +0 -0
  123. {xinference-1.2.0.dist-info → xinference-1.2.2.dist-info}/entry_points.txt +0 -0
  124. {xinference-1.2.0.dist-info → xinference-1.2.2.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: xinference
3
- Version: 1.2.0
3
+ Version: 1.2.2
4
4
  Summary: Model Serving Made Easy
5
5
  Home-page: https://github.com/xorbitsai/inference
6
6
  Author: Qin Xuye
@@ -98,15 +98,14 @@ Requires-Dist: tomli; extra == "all"
98
98
  Requires-Dist: vocos; extra == "all"
99
99
  Requires-Dist: jieba; extra == "all"
100
100
  Requires-Dist: soundfile; extra == "all"
101
- Requires-Dist: qwen-vl-utils; extra == "all"
101
+ Requires-Dist: qwen-vl-utils!=0.0.9; extra == "all"
102
102
  Requires-Dist: datamodel-code-generator; extra == "all"
103
103
  Requires-Dist: jsonschema; extra == "all"
104
104
  Requires-Dist: verovio>=4.3.1; extra == "all"
105
105
  Requires-Dist: auto-gptq; sys_platform != "darwin" and extra == "all"
106
106
  Requires-Dist: autoawq<0.2.6; sys_platform != "darwin" and extra == "all"
107
- Requires-Dist: mlx<0.22.0; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
108
- Requires-Dist: mlx-lm; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
109
- Requires-Dist: mlx-vlm>=0.1.7; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
107
+ Requires-Dist: mlx-lm>=0.21.1; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
108
+ Requires-Dist: mlx-vlm>=0.1.11; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
110
109
  Requires-Dist: mlx-whisper; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
111
110
  Requires-Dist: f5-tts-mlx; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
112
111
  Requires-Dist: vllm>=0.2.6; sys_platform == "linux" and extra == "all"
@@ -145,6 +144,17 @@ Requires-Dist: tomli; extra == "audio"
145
144
  Requires-Dist: vocos; extra == "audio"
146
145
  Requires-Dist: jieba; extra == "audio"
147
146
  Requires-Dist: soundfile; extra == "audio"
147
+ Requires-Dist: cached-path; extra == "audio"
148
+ Requires-Dist: unidic-lite; extra == "audio"
149
+ Requires-Dist: cn2an; extra == "audio"
150
+ Requires-Dist: mecab-python3; extra == "audio"
151
+ Requires-Dist: num2words; extra == "audio"
152
+ Requires-Dist: pykakasi; extra == "audio"
153
+ Requires-Dist: fugashi; extra == "audio"
154
+ Requires-Dist: g2p-en; extra == "audio"
155
+ Requires-Dist: anyascii; extra == "audio"
156
+ Requires-Dist: gruut[de,es,fr]; extra == "audio"
157
+ Requires-Dist: kokoro>=0.7.9; extra == "audio"
148
158
  Requires-Dist: nemo-text-processing<1.1.0; sys_platform == "linux" and extra == "audio"
149
159
  Requires-Dist: WeTextProcessing<1.0.4; sys_platform == "linux" and extra == "audio"
150
160
  Provides-Extra: benchmark
@@ -198,12 +208,11 @@ Requires-Dist: intel-extension-for-pytorch==2.1.10+xpu; extra == "intel"
198
208
  Provides-Extra: llama_cpp
199
209
  Requires-Dist: llama-cpp-python!=0.2.58,>=0.2.25; extra == "llama-cpp"
200
210
  Provides-Extra: mlx
201
- Requires-Dist: mlx<0.22.0; extra == "mlx"
202
- Requires-Dist: mlx-lm; extra == "mlx"
203
- Requires-Dist: mlx-vlm>=0.1.7; extra == "mlx"
211
+ Requires-Dist: mlx-lm>=0.21.1; extra == "mlx"
212
+ Requires-Dist: mlx-vlm>=0.1.11; extra == "mlx"
204
213
  Requires-Dist: mlx-whisper; extra == "mlx"
205
214
  Requires-Dist: f5-tts-mlx; extra == "mlx"
206
- Requires-Dist: qwen-vl-utils; extra == "mlx"
215
+ Requires-Dist: qwen-vl-utils!=0.0.9; extra == "mlx"
207
216
  Requires-Dist: tomli; extra == "mlx"
208
217
  Provides-Extra: rerank
209
218
  Requires-Dist: FlagEmbedding; extra == "rerank"
@@ -217,7 +226,6 @@ Requires-Dist: torch; extra == "transformers"
217
226
  Requires-Dist: accelerate>=0.28.0; extra == "transformers"
218
227
  Requires-Dist: sentencepiece; extra == "transformers"
219
228
  Requires-Dist: transformers-stream-generator; extra == "transformers"
220
- Requires-Dist: bitsandbytes; extra == "transformers"
221
229
  Requires-Dist: protobuf; extra == "transformers"
222
230
  Requires-Dist: einops; extra == "transformers"
223
231
  Requires-Dist: tiktoken; extra == "transformers"
@@ -228,11 +236,12 @@ Requires-Dist: torchvision; extra == "transformers"
228
236
  Requires-Dist: peft; extra == "transformers"
229
237
  Requires-Dist: eva-decord; extra == "transformers"
230
238
  Requires-Dist: jj-pytorchvideo; extra == "transformers"
231
- Requires-Dist: qwen-vl-utils; extra == "transformers"
239
+ Requires-Dist: qwen-vl-utils!=0.0.9; extra == "transformers"
232
240
  Requires-Dist: datamodel-code-generator; extra == "transformers"
233
241
  Requires-Dist: jsonschema; extra == "transformers"
234
242
  Requires-Dist: auto-gptq; sys_platform != "darwin" and extra == "transformers"
235
243
  Requires-Dist: autoawq<0.2.6; sys_platform != "darwin" and extra == "transformers"
244
+ Requires-Dist: bitsandbytes; sys_platform == "linux" and extra == "transformers"
236
245
  Provides-Extra: video
237
246
  Requires-Dist: diffusers>=0.32.0; extra == "video"
238
247
  Requires-Dist: imageio-ffmpeg; extra == "video"
@@ -254,7 +263,7 @@ Requires-Dist: vllm>=0.2.6; extra == "vllm"
254
263
  [![PyPI Latest Release](https://img.shields.io/pypi/v/xinference.svg?style=for-the-badge)](https://pypi.org/project/xinference/)
255
264
  [![License](https://img.shields.io/pypi/l/xinference.svg?style=for-the-badge)](https://github.com/xorbitsai/inference/blob/main/LICENSE)
256
265
  [![Build Status](https://img.shields.io/github/actions/workflow/status/xorbitsai/inference/python.yaml?branch=main&style=for-the-badge&label=GITHUB%20ACTIONS&logo=github)](https://actions-badge.atrox.dev/xorbitsai/inference/goto?ref=main)
257
- [![Slack](https://img.shields.io/badge/join_Slack-781FF5.svg?logo=slack&style=for-the-badge)](https://join.slack.com/t/xorbitsio/shared_invite/zt-1o3z9ucdh-RbfhbPVpx7prOVdM1CAuxg)
266
+ [![Discord](https://img.shields.io/badge/join_Discord-5462eb.svg?logo=discord&style=for-the-badge&logoColor=%23f5f5f5)](https://discord.gg/Xw9tszSkr5)
258
267
  [![Twitter](https://img.shields.io/twitter/follow/xorbitsio?logo=x&style=for-the-badge)](https://twitter.com/xorbitsio)
259
268
 
260
269
  <p align="center">
@@ -274,7 +283,7 @@ researcher, developer, or data scientist, Xorbits Inference empowers you to unle
274
283
  potential of cutting-edge AI models.
275
284
 
276
285
  <div align="center">
277
- <i><a href="https://join.slack.com/t/xorbitsio/shared_invite/zt-1z3zsm9ep-87yI9YZ_B79HLB2ccTq4WA">👉 Join our Slack community!</a></i>
286
+ <i><a href="https://discord.gg/Xw9tszSkr5">👉 Join our Discord community!</a></i>
278
287
  </div>
279
288
 
280
289
  ## 🔥 Hot Topics
@@ -288,19 +297,20 @@ potential of cutting-edge AI models.
288
297
  - Support speech recognition model: [#929](https://github.com/xorbitsai/inference/pull/929)
289
298
  - Metrics support: [#906](https://github.com/xorbitsai/inference/pull/906)
290
299
  ### New Models
291
- - Built-in support for [Stable Diffusion 3.5](https://huggingface.co/collections/stabilityai/stable-diffusion-35-671785cca799084f71fa2838): [#2706](https://github.com/xorbitsai/inference/pull/2706)
292
- - Built-in support for [CosyVoice 2](https://huggingface.co/FunAudioLLM/CosyVoice2-0.5B): [#2684](https://github.com/xorbitsai/inference/pull/2684)
293
- - Built-in support for [Fish Speech V1.5](https://huggingface.co/fishaudio/fish-speech-1.5): [#2672](https://github.com/xorbitsai/inference/pull/2672)
294
- - Built-in support for [F5-TTS](https://github.com/SWivid/F5-TTS): [#2626](https://github.com/xorbitsai/inference/pull/2626)
295
- - Built-in support for [GLM Edge](https://github.com/THUDM/GLM-Edge): [#2582](https://github.com/xorbitsai/inference/pull/2582)
296
- - Built-in support for [QwQ-32B-Preview](https://qwenlm.github.io/blog/qwq-32b-preview/): [#2602](https://github.com/xorbitsai/inference/pull/2602)
297
- - Built-in support for [Qwen 2.5 Series](https://qwenlm.github.io/blog/qwen2.5/): [#2325](https://github.com/xorbitsai/inference/pull/2325)
298
- - Built-in support for [DeepSeek-V2.5](https://huggingface.co/deepseek-ai/DeepSeek-V2.5): [#2292](https://github.com/xorbitsai/inference/pull/2292)
300
+ - Built-in support for [DeepSeek-R1-Distill-Qwen](https://github.com/deepseek-ai/DeepSeek-R1?tab=readme-ov-file#deepseek-r1-distill-models): [#2781](https://github.com/xorbitsai/inference/pull/2781)
301
+ - Built-in support for [qwen2.5-vl](https://github.com/QwenLM/Qwen2.5-VL): [#2788](https://github.com/xorbitsai/inference/pull/2788)
302
+ - Built-in support for [internlm3-instruct](https://github.com/InternLM/InternLM): [#2789](https://github.com/xorbitsai/inference/pull/2789)
303
+ - Built-in support for [MeloTTS](https://github.com/myshell-ai/MeloTTS): [#2760](https://github.com/xorbitsai/inference/pull/2760)
304
+ - Built-in support for [CogAgent](https://github.com/THUDM/CogAgent): [#2740](https://github.com/xorbitsai/inference/pull/2740)
305
+ - Built-in support for [HunyuanVideo](https://github.com/Tencent/HunyuanVideo): [#2721](https://github.com/xorbitsai/inference/pull/2721)
306
+ - Built-in support for [HunyuanDiT](https://github.com/Tencent/HunyuanDiT): [#2727](https://github.com/xorbitsai/inference/pull/2727)
307
+ - Built-in support for [Macro-o1](https://github.com/AIDC-AI/Marco-o1): [#2749](https://github.com/xorbitsai/inference/pull/2749)
299
308
  ### Integrations
300
309
  - [Dify](https://docs.dify.ai/advanced/model-configuration/xinference): an LLMOps platform that enables developers (and even non-developers) to quickly build useful applications based on large language models, ensuring they are visual, operable, and improvable.
301
310
  - [FastGPT](https://github.com/labring/FastGPT): a knowledge-based platform built on the LLM, offers out-of-the-box data processing and model invocation capabilities, allows for workflow orchestration through Flow visualization.
302
- - [Chatbox](https://chatboxai.app/): a desktop client for multiple cutting-edge LLM models, available on Windows, Mac and Linux.
303
311
  - [RAGFlow](https://github.com/infiniflow/ragflow): is an open-source RAG engine based on deep document understanding.
312
+ - [MaxKB](https://github.com/1Panel-dev/MaxKB): MaxKB = Max Knowledge Base, it is a chatbot based on Large Language Models (LLM) and Retrieval-Augmented Generation (RAG).
313
+ - [Chatbox](https://chatboxai.app/): a desktop client for multiple cutting-edge LLM models, available on Windows, Mac and Linux.
304
314
 
305
315
 
306
316
  ## Key Features
@@ -416,11 +426,11 @@ Once Xinference is running, there are multiple ways you can try it: via the web
416
426
 
417
427
  ## Getting involved
418
428
 
419
- | Platform | Purpose |
420
- |-----------------------------------------------------------------------------------------------|----------------------------------------------------|
421
- | [Github Issues](https://github.com/xorbitsai/inference/issues) | Reporting bugs and filing feature requests. |
422
- | [Slack](https://join.slack.com/t/xorbitsio/shared_invite/zt-1o3z9ucdh-RbfhbPVpx7prOVdM1CAuxg) | Collaborating with other Xorbits users. |
423
- | [Twitter](https://twitter.com/xorbitsio) | Staying up-to-date on new features. |
429
+ | Platform | Purpose |
430
+ |-------------------------------------------------------------------------------------------------|---------------------------------------------|
431
+ | [Github Issues](https://github.com/xorbitsai/inference/issues) | Reporting bugs and filing feature requests. |
432
+ | [Discord](https://discord.gg/Xw9tszSkr5) | Collaborating with other Xinference users. |
433
+ | [Twitter](https://twitter.com/xorbitsio) | Staying up-to-date on new features. |
424
434
 
425
435
  ## Citation
426
436
 
@@ -1,41 +1,41 @@
1
1
  xinference/__init__.py,sha256=nmTTrYbIpj964ZF6ojtgOM7E85JBOj1EyQbmYjbj1jw,915
2
2
  xinference/_compat.py,sha256=URSJQLXrcsTO9B_4x0wVDPijYQDhuVJmZ95npID560w,4197
3
- xinference/_version.py,sha256=GAClfR3cqBVqaVAxpzjZVxVh61ko4WPMyfwpihoTDXg,497
3
+ xinference/_version.py,sha256=tyoMIoWH7JrsR3odtmfwgrhewV2IdEEE1IRf42ATx28,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=7BO7P1Cs6RYpP3l_WKBTzlvPr7q1I6Iz_fllqaIwI7E,12999
9
+ xinference/types.py,sha256=p9IV2vmbtFfpo9P66IynkEgU2N6310uVMKBuq0rbtNc,13102
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=NlWmA1pDu8oPybI9daU4pplQXkRD-NExTO2L_E4Y2zM,92876
12
+ xinference/api/restful_api.py,sha256=XENr9892-WHZ1XKaCwijdTAAd1uX2D0oMKUF6Pw99GQ,92730
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
16
16
  xinference/api/oauth2/utils.py,sha256=SIiiUj6VuTEsj3bZ2TYUyhx3cGlLSX3ZNWDOgUwRtXc,1410
17
17
  xinference/client/__init__.py,sha256=Gc4HOzAy_1cic5kXlso7hahYgw89CKvZSJDicEU461k,669
18
18
  xinference/client/common.py,sha256=iciZRs5YjM2gYsXnwACPMaiBZp4_XpawWwfym0Iyu40,1617
19
- xinference/client/handlers.py,sha256=OKl_i5FA341wsQf_0onSOPbbW6V861WJrSP7ghtDc8c,527
19
+ xinference/client/handlers.py,sha256=HYmQjG0BPK5PKcWVEDJqQz5iLjS8yjOq5j-HP_CAi_k,630
20
20
  xinference/client/restful/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
21
21
  xinference/client/restful/restful_client.py,sha256=JwzP7etUZBR0mmU7y3dUOEWN_D7ol_2hXN9KMAzKZaw,53601
22
22
  xinference/core/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
23
23
  xinference/core/cache_tracker.py,sha256=3ubjYCU5aZToSp2GEuzedECVrg-PR4kThTefrFUkb9g,6971
24
- xinference/core/chat_interface.py,sha256=Kiqs1XOXgYBlP7DOXLEXaFjbVuS0yC1-dXJyxrxiRNE,20785
24
+ xinference/core/chat_interface.py,sha256=5fUr9-OLrFTZ5TvFGE8gX4N_-N4EmYRp74b5fD6cyAU,21048
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=2ohKVnm4CwLP4I-t7Cb1dx_47PxPrNYFbmIY8-FNSNM,43327
28
+ xinference/core/model.py,sha256=8FaEJK4tTL7wvYivLEqWKkZOrAMODBSoxg9A4fYzUH0,43365
29
29
  xinference/core/progress_tracker.py,sha256=LIF6CLIlnEoSBkuDCraJktDOzZ31mQ4HOo6EVr3KpQM,6453
30
30
  xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
31
- xinference/core/scheduler.py,sha256=gdj3SyP_jelJ86vTRrgnFynhxz5JSwLRsQgx8PTtBi8,15671
31
+ xinference/core/scheduler.py,sha256=WHWOlbzAPoURXNzjFNdfvhkgBYO8ufZtIu3JXfq7fmY,15576
32
32
  xinference/core/status_guard.py,sha256=4an1KjUOhCStgRQUw1VSzXcycXUtvhxwiMREKKcl1UI,2828
33
- xinference/core/supervisor.py,sha256=xr4zcluR2ahY6hX0yvRNGOv_1c470QfMXsdKC3mq2tU,56268
33
+ xinference/core/supervisor.py,sha256=4beE9EZx5xWpSLZtZwT3CPYWT25zPFl9gRj2oK8Za3w,60208
34
34
  xinference/core/utils.py,sha256=RR3XDioh52Wy8vmAqhCZ6EQskr-HPDfUp0vCCAPIAvs,11302
35
- xinference/core/worker.py,sha256=Sv4bp3odUw9s0PtwDGQPn4cVJCTZYJ8suVGrPLNoD1Y,47749
35
+ xinference/core/worker.py,sha256=FVy_zXOHovYLPQQr6DSpjSGWaLyH425gTUUH_vwKVfk,50666
36
36
  xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
37
37
  xinference/deploy/cmdline.py,sha256=gPwp9IngaXCypUEnPDS_22U8GntsKr7qHDST7duyAoI,48478
38
- xinference/deploy/local.py,sha256=gcH6WfTxfhjvNkxxKZH3tcGtXV48BEPoaLWYztZHaeo,3954
38
+ xinference/deploy/local.py,sha256=sO3BcpEH9oCF87CxWVA4AXAYcfHGnrcop40ew5NOA2g,3979
39
39
  xinference/deploy/supervisor.py,sha256=68rB2Ey5KFeF6zto9YGbw3P8QLZmF_KSh1NwH_pNP4w,2986
40
40
  xinference/deploy/utils.py,sha256=jdL7i2WV6u_BZ8IiE1d3YktvCARcB3ntzMQ5rHGD5DM,6756
41
41
  xinference/deploy/worker.py,sha256=VQ71ClWpeGsyFgDmcOes2ub1cil10cBjhFLHYeuVwC4,2974
@@ -46,17 +46,19 @@ 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=jQN-0podPYYu1FEjTPQtlTc4g1fZnk89lgapkshp3Ss,7290
50
- xinference/model/audio/cosyvoice.py,sha256=aGg2twmh4_NHHbW2jFVQ7x6bi-iZrFLSM5v5dqfbnBM,7301
49
+ xinference/model/audio/core.py,sha256=AAuss7fGwGktcB_aGRwuR4TJIM6-Rrm0YCU752QoxfQ,7710
50
+ xinference/model/audio/cosyvoice.py,sha256=vw7OR2t7zNimQn3Q74iiL1-2en5o6gvdcZsDgkmYpy4,7796
51
51
  xinference/model/audio/custom.py,sha256=8GXBRmTtR-GY03-E91nlRGTIuabCRzlt20ecU6Un6Y8,4985
52
52
  xinference/model/audio/f5tts.py,sha256=RyfEYVvKhV7JygIv4F45C8wBr-u0mx9WpXj3gIOtL7o,6809
53
53
  xinference/model/audio/f5tts_mlx.py,sha256=SbYIo1C3EfZ8L30P7OTx0Dx7KuXIIpQKf8uZqR1e760,8527
54
54
  xinference/model/audio/fish_speech.py,sha256=U1NtEhQFtzVYZ0vpx10EqBnqUz-hmx1ZTAzD9OSPskQ,6767
55
55
  xinference/model/audio/funasr.py,sha256=65z7U7_F14CCP-jg6BpeY3_49FK7Y5OCRSzrhhsklCg,4075
56
- xinference/model/audio/model_spec.json,sha256=7tHhrduauuIAawExL8kUg9QSqqSS4Gz0LZQ7dNCnJr0,8029
57
- xinference/model/audio/model_spec_modelscope.json,sha256=T-dbWajqrY0aXhUJa2CIxj0gtT7TwOuTmTazs68Wr5k,2521
56
+ xinference/model/audio/kokoro.py,sha256=7n2l0MWRvTz6uI4rtf-22MlrB6-HivmG8rp-JKdJCgY,4063
57
+ xinference/model/audio/melotts.py,sha256=lJdOsce2mMOTQIslv6xq1JTEO7vC6Q9ga2xjY-_E7uw,3493
58
+ xinference/model/audio/model_spec.json,sha256=VbeNoQIWW1qe9TOEgU_m9wlfaaDjE_iKAMMhLs-kCqM,10477
59
+ xinference/model/audio/model_spec_modelscope.json,sha256=aFCqDC74wlisqhWzt42k0vE42b8eshfz2YXhJf95nNQ,3029
58
60
  xinference/model/audio/utils.py,sha256=fnnQfZlhH6DRw6beXPUIO28u6qu2GgCONrWDIsTCNkw,1591
59
- xinference/model/audio/whisper.py,sha256=PQL7rebGC7WlIOItuDtjdEtSJtlhxFkolot-Fj-8uDU,7982
61
+ xinference/model/audio/whisper.py,sha256=NePQOYy2CnVqi7g6uY9hq5tlUIxZ995FOIOPsPZCfJ8,9058
60
62
  xinference/model/audio/whisper_mlx.py,sha256=zBuCd7GUlsN9FC_-J11gqIkOCicihfbqxoabiXTvH2Q,7237
61
63
  xinference/model/embedding/__init__.py,sha256=1GmvQsbeeVUT-VRaRGetf8UT4RQgLWIzfp5kfX5jw-k,3567
62
64
  xinference/model/embedding/core.py,sha256=ijobgaf8ZXY7epxE4m1jqnMIJDaAwzHPoWExhaMtBMY,32201
@@ -86,19 +88,19 @@ xinference/model/image/stable_diffusion/core.py,sha256=SaeBYNdRdqarEwoyjHDz_SfRI
86
88
  xinference/model/image/stable_diffusion/mlx.py,sha256=GZsozzGB04NfHAdU9MI6gwWE1t_A-s_Ddn_ic8DlkKQ,7476
87
89
  xinference/model/llm/__init__.py,sha256=zKmkoNsUoQk1_jnLHNpno4UPKGl5O_vJK5R5R-TYF9w,14140
88
90
  xinference/model/llm/core.py,sha256=g-luuAjZizrPunhyFE9IRjn57l0g6FY_1xUwtlRegbs,8151
89
- xinference/model/llm/llm_family.json,sha256=zxMJizuGREQEB43nnLMvqtuJehhw8x6fYpWS7UTljqg,321060
90
- xinference/model/llm/llm_family.py,sha256=HiWobT1SInGXWT78g673K5-FoDkDi1dSUU4pmfFAPPI,39050
91
+ xinference/model/llm/llm_family.json,sha256=6GXYmnqKZAh2dwnaDyg1tzk583hRLy33KAI4B5rDQc8,339783
92
+ xinference/model/llm/llm_family.py,sha256=tee7rQYayo46-lK3QhrZqoGKYQM5ijA5tb6xQTPGZa0,39125
91
93
  xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
92
- xinference/model/llm/llm_family_modelscope.json,sha256=1A2qe0VrkNYcr5zCvxYNkPEt58clsRGel-KZ_PCKb_w,251625
94
+ xinference/model/llm/llm_family_modelscope.json,sha256=-JAca-vryl6svsL1Nk4gd3eq-03BFJ8KfdS3q0g7A-U,269784
93
95
  xinference/model/llm/llm_family_openmind_hub.json,sha256=jl9pfbe5DztoxgEwKBxDk1Wd7TziTiJ48_Ie_lJdYjA,67872
94
- xinference/model/llm/memory.py,sha256=NEIMw6wWaF9S_bnBYq-EyuDhVbUEEeceQhwE1iwsrhI,10207
95
- xinference/model/llm/utils.py,sha256=H8chuTrurRNYa0jhrK5fxB0rZmF7fuxyKikKkDsM5Qw,25210
96
+ xinference/model/llm/memory.py,sha256=GLNmXBI-AtMbuaJfEf50fnhN4rdbOZjLyT6L_Vjqa5g,10206
97
+ xinference/model/llm/utils.py,sha256=AUm_q51rmV8HgVMcRttd8B8TA-EXxU1oJVdkLYYGhes,28641
96
98
  xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
97
- xinference/model/llm/llama_cpp/core.py,sha256=vjuTapwbn-ZjUX-8WA0nFyicE4UGUSehU_csSetvcZw,10928
99
+ xinference/model/llm/llama_cpp/core.py,sha256=3GSGk42c8Oy_jTqRv4nLC482V2tUis3V0LlohQy_I1U,11312
98
100
  xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
101
  xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc3ua8yPTI,19835
100
102
  xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
101
- xinference/model/llm/mlx/core.py,sha256=EMtFNsRkNzJLOhCyAW1sGsRmOg5CElga1IJN9Rcojr0,22556
103
+ xinference/model/llm/mlx/core.py,sha256=WQN2iURiWSL_MY5hR0GkCYa08qr5wtOFx522_c2vW30,23130
102
104
  xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
103
105
  xinference/model/llm/sglang/core.py,sha256=Ab0i6Q3M-DqQi5bHMyfa9klPElGSk1ThEke4mdsBHXU,16747
104
106
  xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
@@ -107,7 +109,7 @@ xinference/model/llm/transformers/cogagent.py,sha256=JbIiqVW-S9MA3d4CN2DlI7-WDB_
107
109
  xinference/model/llm/transformers/cogvlm2.py,sha256=I5Ftm0VYjbTAv5ZARZCo32Ggpw58PJfHs5B_nX_BIlU,15972
108
110
  xinference/model/llm/transformers/cogvlm2_video.py,sha256=ZGkpC4x2uEtjwoMrLSODmAUYTjOeSNYxZi9VpQrpnhU,11857
109
111
  xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
110
- xinference/model/llm/transformers/core.py,sha256=t1tujy8-IfD83CjKkvxZ-jqZISDQVFJpSiDkeIL4LGM,28286
112
+ xinference/model/llm/transformers/core.py,sha256=7VkOA04mpiuyA8-P62NSC74_WkKLFb_O51hIEtUHPBw,28493
111
113
  xinference/model/llm/transformers/deepseek_v2.py,sha256=-RKlI3mhja730md4evQ2vfIxBnZD5vWyrgmg_3eovms,4096
112
114
  xinference/model/llm/transformers/deepseek_vl.py,sha256=pB6i6DW5oyfHdqTgKpi2DkIKVGlPLGIDR_Op0sB1uKA,10445
113
115
  xinference/model/llm/transformers/glm4v.py,sha256=goph2HhpV8gUm2t8-T1P-jTF2r_kPeH6QNe64lmlm0g,13871
@@ -118,26 +120,28 @@ xinference/model/llm/transformers/minicpmv25.py,sha256=mr80-OlSlK_opSuAO3cz_Qlkq
118
120
  xinference/model/llm/transformers/minicpmv26.py,sha256=_e2C4vmyKIzKt7S7AvKgiqhDOhGiBXa6Xoiix4UaYtI,13440
119
121
  xinference/model/llm/transformers/omnilmm.py,sha256=2ZLW979ETqDDKo9CaTNwi9uLBZ2d6itHAYqjUA4jdro,5172
120
122
  xinference/model/llm/transformers/opt.py,sha256=dkZFNwtw_sUuVaz9He6LWfEojRGfOQFQ5atvC5OYPuY,2429
121
- xinference/model/llm/transformers/qwen2_audio.py,sha256=1XmlawVF-Xh2pgGoLDX7kOYIiF_bDUR3doSOnM59QbQ,6107
122
- xinference/model/llm/transformers/qwen2_vl.py,sha256=TKn7p0-bNzzv7ZVZ18mOD9NYgJ9q_y_CJMA3OWWvv2c,7768
123
+ xinference/model/llm/transformers/qwen2_audio.py,sha256=RkKSUFTgyolVSuFoLj2GdzsFfU8goOIYtDFLoRLiZ2s,6259
124
+ xinference/model/llm/transformers/qwen2_vl.py,sha256=HEtxPJyhfsvcULu8guLwasB0DaXRgOGxP1WrhgDUWec,8437
123
125
  xinference/model/llm/transformers/qwen_vl.py,sha256=LG19qJW30bFiZOS-t9OM3JP6K1KCLj_Sv3nKSCLvyts,14058
124
126
  xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
125
- xinference/model/llm/transformers/utils.py,sha256=a4-X5P9_L--rgSx5jI8haYA6GSpKhMdOYE97VNh54yM,19389
127
+ xinference/model/llm/transformers/utils.py,sha256=GHJsjBjEXpzZAFbcfKiMxMjFnOBYeZt-eXF5S4HQ8I8,19582
126
128
  xinference/model/llm/transformers/yi_vl.py,sha256=iCdRLw-wizbU-qXXc8CT4DhC0Pt-uYg0vFwXEhAZjQg,8961
127
129
  xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
128
- xinference/model/llm/vllm/core.py,sha256=kwYoo54bioZfVVHLqv_BrdXzpe21CF3gJZoSLZp4SjI,37255
130
+ xinference/model/llm/vllm/core.py,sha256=p6s5qsz9564yOfkD6nG2dISenwrRAtYUaGOe5plHs04,37708
129
131
  xinference/model/llm/vllm/utils.py,sha256=LKOmwfFRrlSecawxT-uE39tC2RQbf1UIiSH9Uz90X6w,1313
130
132
  xinference/model/llm/vllm/xavier/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
131
133
  xinference/model/llm/vllm/xavier/allocator.py,sha256=SJ2eCOxF6CWTBZIP39FRxeK6fxIE8pRshOPnSRc72d4,2691
132
- xinference/model/llm/vllm/xavier/block.py,sha256=5j-ihgpIBvmE6t0Mifw8xW5VYil-ti2bDZyeDQ2HHpk,4455
134
+ xinference/model/llm/vllm/xavier/block.py,sha256=cdxHi-dqojbdng9tt3lMcc8AfL6gkT4lRXqqGUO5G8M,4457
133
135
  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
136
+ xinference/model/llm/vllm/xavier/block_tracker.py,sha256=h4kqWhnLVol2hPykN7yxMbpFcWhCgye9D7LJXiPj1s8,5599
137
+ xinference/model/llm/vllm/xavier/collective.py,sha256=_yENFr-SJ38TywSYW2MgnEsagkTxarQOjLTacrdriYs,2563
138
+ xinference/model/llm/vllm/xavier/collective_manager.py,sha256=oyenv3OziB1sUZylVpdi7piGbOIEgxtVWwuHa-y0vuc,5584
135
139
  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
140
+ xinference/model/llm/vllm/xavier/executor.py,sha256=XUSKLDxejMccSMh9qC_IjWLktStf7gHIWdxpUd2AYPk,5645
141
+ xinference/model/llm/vllm/xavier/scheduler.py,sha256=3_tim9DRia-fOEkuvtlQxbcroNszsQtnizVXXkGOQq4,20264
142
+ xinference/model/llm/vllm/xavier/transfer.py,sha256=2IbaiAhRnJMwa9qsMa5bowngqfjxDeht0JS1BMbRmyA,11319
139
143
  xinference/model/llm/vllm/xavier/test/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
140
- xinference/model/llm/vllm/xavier/test/test_xavier.py,sha256=lFhz2rZkz6h6yz07M0L6D3K3r8nF8MGVr1NizeWXq4g,3940
144
+ xinference/model/llm/vllm/xavier/test/test_xavier.py,sha256=E7MDGTeGJMaULoIKez6lt2Vhz0w6FJlPyAELUjE0Chw,4890
141
145
  xinference/model/rerank/__init__.py,sha256=wRpf1bOMfmAsuEKEGczMTB5fWEvuqltlJbIbRb-x8Ko,3483
142
146
  xinference/model/rerank/core.py,sha256=e-QoFgVk-6LOQPM5zqbEj095J-1bkuyd9c5zRI5DlF8,14560
143
147
  xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
@@ -156,6 +160,7 @@ xinference/thirdparty/cosyvoice/bin/export_jit.py,sha256=o6qMUNJDrvXw5MHwIKS6Tj_
156
160
  xinference/thirdparty/cosyvoice/bin/export_onnx.py,sha256=PjD9UHpK2uGn4i7NBows5vpDd2Ho5oXy-jey2p0Jz8E,4560
157
161
  xinference/thirdparty/cosyvoice/bin/export_trt.sh,sha256=LS96nBmlkJn097zmyGhSAdDLQpZBtAkQGxCFedNikAQ,931
158
162
  xinference/thirdparty/cosyvoice/bin/inference.py,sha256=l4wX0LPraGw41VFQOMWp8_kMe1Ac3ZkuK4tXQHhjXko,5471
163
+ xinference/thirdparty/cosyvoice/bin/spk2info.pt,sha256=-0kWCdolo1FLdtdtVdvyZoY5TDeNWWEo-z4V8rdM30Q,1317821
159
164
  xinference/thirdparty/cosyvoice/bin/train.py,sha256=8S9T_DIGY-hYsq_jQJ5y74Wp3w-fhojLD8ChZYWH1Gg,6806
160
165
  xinference/thirdparty/cosyvoice/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
166
  xinference/thirdparty/cosyvoice/cli/cosyvoice.py,sha256=VrtqD6do3ISDH74-HdRTyyz-NKBDZOg4oB39ZHeauRc,10150
@@ -448,6 +453,78 @@ xinference/thirdparty/matcha/utils/utils.py,sha256=u5u7cDnY4SPv1-Citj6A-J34lfMvc
448
453
  xinference/thirdparty/matcha/utils/monotonic_align/__init__.py,sha256=_s_INV7vL_N9mhYtZADAk11CsSGP8kykn0fEyyM73ts,646
449
454
  xinference/thirdparty/matcha/utils/monotonic_align/core.pyx,sha256=t2jJamslaDGkFZnWhdUQ0qs4T4gjntMOAXSPMtZaq0w,1236
450
455
  xinference/thirdparty/matcha/utils/monotonic_align/setup.py,sha256=bf0d0cvGRaACC22qq0sqgZEBBhz4qzDlMqBxOyTKC2g,207
456
+ xinference/thirdparty/melo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
457
+ xinference/thirdparty/melo/api.py,sha256=lC93OiqQrOABEI2ZbmReSPM4xRNzPw9mZ8YHDgTfenA,5108
458
+ xinference/thirdparty/melo/app.py,sha256=vlR_k9cmTjZ6E71qKomAxrYK8xJ4lZr-nqekX1oFiIw,3167
459
+ xinference/thirdparty/melo/attentions.py,sha256=UmG3PklFZR6fcTM3X0-DwVMqMPgif2JJxwBtaWpzc1M,15936
460
+ xinference/thirdparty/melo/commons.py,sha256=BGlD0mVjXD2cmRlVYucDVkomMAmBp9tbh9TNP9GArg0,4956
461
+ xinference/thirdparty/melo/data_utils.py,sha256=I5mFqkRTys9VRN9And9xvaC04alvTAT0anwf9mnu6-c,14829
462
+ xinference/thirdparty/melo/download_utils.py,sha256=Bm3a0on7P0eyvuz1zwA7GItHLI48jlLJAgg5bHNMtnk,3440
463
+ xinference/thirdparty/melo/infer.py,sha256=bVr2sgO_moxUuXz8XV9qusQnwFuB0o9dN3Ql9saxjTs,998
464
+ xinference/thirdparty/melo/init_downloads.py,sha256=J-kfI5O0qfM_CVEKRFEKfo3wKBpjekPFOfl4FN_EEI8,393
465
+ xinference/thirdparty/melo/losses.py,sha256=qGWb5DU_Cxl0DtFGN3Lx7hVELOlQ8nIIqizFlQRXtGA,1386
466
+ xinference/thirdparty/melo/main.py,sha256=L1uFgkaKeUMy-wZoYAMJwmhXCklyYh3DlV2-jePpU_M,1850
467
+ xinference/thirdparty/melo/mel_processing.py,sha256=BLuxjFiJIcZDnIm_t71CBg__F7Oko1v61tZfJXxJQ5E,5868
468
+ xinference/thirdparty/melo/models.py,sha256=-W7vUoRSJLV5flQAgBOltqX6-tIDVxPcUYGl24v4vvQ,34027
469
+ xinference/thirdparty/melo/modules.py,sha256=3oC67n3I2J1iHFQbiZqEGT30uz75X15tB2zDe2uxC_Y,18975
470
+ xinference/thirdparty/melo/preprocess_text.py,sha256=JyI-nIagq_U9LWiQGHJgvE_jzN9r0y-8dePI0grhqfE,4423
471
+ xinference/thirdparty/melo/split_utils.py,sha256=-Fz8s5VZRrNyjui-fS7HlNMFS0ilOVruqIb5mPhr1i4,6777
472
+ xinference/thirdparty/melo/train.py,sha256=BOn3j4vWnePADu-GlLg6LltNXifgXtIOG_lW-uRq-6Q,22501
473
+ xinference/thirdparty/melo/train.sh,sha256=YRyc5i0wjZJVCnYViqzX0zgt6rB1jBGb80nSFA9bhy8,391
474
+ xinference/thirdparty/melo/transforms.py,sha256=5nmJiaDXXL7EXn4k42l-HEiGs2ZMaoCkUmRe8dKpP5w,7253
475
+ xinference/thirdparty/melo/utils.py,sha256=-YLTekozKAMBzG-BGiLRzTiEBGgAjKj-EKZfoHmrJyU,13223
476
+ xinference/thirdparty/melo/configs/config.json,sha256=DlLLcV_BUQcwwouDDKSmwaBuaTZSExmDdPMk5IVmCzI,1681
477
+ xinference/thirdparty/melo/data/example/metadata.list,sha256=jeD_ZHchMWQPazAM9LjLkVAzsfnqGsJGx4rbWJnRG44,2860
478
+ xinference/thirdparty/melo/monotonic_align/__init__.py,sha256=vNZaLNmieXSwlboYfxYJZsdviumeuWf8Nl8PEpR3GLw,563
479
+ xinference/thirdparty/melo/monotonic_align/core.py,sha256=yMStKbqZR5FkpRo2GR68I3LUaG2OhLRaDY4Ne4mw8uU,1270
480
+ xinference/thirdparty/melo/text/__init__.py,sha256=7KjBd2TE3NV9OnEYV3XRxuTVNonWqaVHCOxjV3oqyLo,1477
481
+ xinference/thirdparty/melo/text/chinese.py,sha256=upLyLTy3KiKxOqkqhuq-ayIFgrnACnFQLgVu8ACGDVE,5823
482
+ xinference/thirdparty/melo/text/chinese_bert.py,sha256=wLNu3ZTlSycdlx2rVZf4-wqsA9HmNNuh5_8wRxRRjbk,2521
483
+ xinference/thirdparty/melo/text/chinese_mix.py,sha256=I_j_NZbaEW3Au7KsrYIzlEmZR0KhSp-aSGyUuZzGCAI,8571
484
+ xinference/thirdparty/melo/text/cleaner.py,sha256=aHHcw_qchjiSU-9t_JiAUKyXhIbb_rCh1qqumLaOxSo,1245
485
+ xinference/thirdparty/melo/text/cleaner_multiling.py,sha256=pEvgY06RXHFrjAZ86tzq_xolMdLmtUE-0MgLWNUBOvo,2639
486
+ xinference/thirdparty/melo/text/cmudict.rep,sha256=0Se1zouOaVcycB6O_eBLmw-hGZEhix-50hvQySZGNqo,3969309
487
+ xinference/thirdparty/melo/text/cmudict_cache.pickle,sha256=ubIbIDJUcZNLqS8uSll2mJ59kgyqMueihurLAn0ZeUk,6212655
488
+ xinference/thirdparty/melo/text/english.py,sha256=KFJ_V0URv8E_4fL2u7W_5AcsBuHH6baVmBOK74G5kFs,6496
489
+ xinference/thirdparty/melo/text/english_bert.py,sha256=CYfEzmX_mv9MGyOyX1kDpYDkyQez0YFOLpfbbcsCCAU,1194
490
+ xinference/thirdparty/melo/text/french.py,sha256=JAc-t5k8Ql651VvR5ZQChSM1R8pbDga_EYTIIOBlCl4,2900
491
+ xinference/thirdparty/melo/text/french_bert.py,sha256=c22JhZpyVw5tn6nvFuTsNnKCcmkHfRxQJsVAU0GJ96c,1215
492
+ xinference/thirdparty/melo/text/japanese.py,sha256=I_oKyeEHcgEpeKt0eXDRQ6awAu910AFMYeraehaiV1g,15323
493
+ xinference/thirdparty/melo/text/japanese_bert.py,sha256=kJXc8sByXsj5btFnmDsH6TqJfJA0-48VRLSCM36xKs8,1510
494
+ xinference/thirdparty/melo/text/ko_dictionary.py,sha256=5R1UTgdN5TFN-fQJyUjjlkiJHC1gl9oX8vVC7B3g_j4,922
495
+ xinference/thirdparty/melo/text/korean.py,sha256=VMBehFxnb1X7jpPtd1vjWBw9wme0JcQgmlWZ-xt7iJA,6260
496
+ xinference/thirdparty/melo/text/opencpop-strict.txt,sha256=1mu7E4Co6_F9es5b9LRZ83KKRp7qKq6uKus5abiCI_8,4084
497
+ xinference/thirdparty/melo/text/spanish.py,sha256=ESLsUQtC9HbZ7ZPixZ95tU6qbvegGJzj1wl6dRt6-cM,3175
498
+ xinference/thirdparty/melo/text/spanish_bert.py,sha256=r770FBdI8xQRbPDxm3qepi2VAikBnRXboXVaVOwsLyc,1216
499
+ xinference/thirdparty/melo/text/symbols.py,sha256=TB84OffiCbXaRdrrJp-VWzAtDUwN9tv5vojVNLJc7qI,4329
500
+ xinference/thirdparty/melo/text/tone_sandhi.py,sha256=Iwup_-E9rcX4DBF-oyNPiFEjgKfUUGmgiGHiT8KjOqk,23396
501
+ xinference/thirdparty/melo/text/english_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
502
+ xinference/thirdparty/melo/text/english_utils/abbreviations.py,sha256=sIrQB6kxEczFtTPhs4z6mk7hXp9RfEZeuAkDscjfCIw,948
503
+ xinference/thirdparty/melo/text/english_utils/number_norm.py,sha256=yPxApFzFKY8tpboJn_uKthWo56_vjpBjip5nLkQTxo4,2810
504
+ xinference/thirdparty/melo/text/english_utils/time_norm.py,sha256=QJzLcWZBhKpAgsS7bCJv3d0-Q-TmYKxPfoSBpylVMl4,1173
505
+ xinference/thirdparty/melo/text/es_phonemizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
506
+ xinference/thirdparty/melo/text/es_phonemizer/base.py,sha256=uwwlNgaMTAj20_VbyY8UdsQR_BKiasGXW6Xkqc-CY5Y,4339
507
+ xinference/thirdparty/melo/text/es_phonemizer/cleaner.py,sha256=Kr56gOgv7A8xhTZqc_0RHUung37-5quQE-daJOMXiSU,2598
508
+ xinference/thirdparty/melo/text/es_phonemizer/es_symbols.json,sha256=er0uKP56jFm5LtZH4Ysfr_Gd9g4pnWHprm8kR35Q4nw,1180
509
+ xinference/thirdparty/melo/text/es_phonemizer/es_symbols.txt,sha256=-EW-b2imrvw-R5BJMXzWsXIEf7c2bWIKP1Zg9-4msB8,123
510
+ xinference/thirdparty/melo/text/es_phonemizer/es_symbols_v2.json,sha256=rG4Ce3vfZU97Uvdka-CsOhL8o3l9SxMqGhw3_SXbEGA,1243
511
+ xinference/thirdparty/melo/text/es_phonemizer/es_to_ipa.py,sha256=GsCNJ_Y6CtlvG5_RKGToO_IIqqiUtEt5oHm4NA1Lc9I,396
512
+ xinference/thirdparty/melo/text/es_phonemizer/example_ipa.txt,sha256=VMjp6zCEuE-NBJpCvJOidKO_A6wUhnoIviqFQ9K4XxY,44840
513
+ xinference/thirdparty/melo/text/es_phonemizer/gruut_wrapper.py,sha256=ADw8Lla-w2YNhYb6EB1KRxOgMpWcoF35KgpCR9SblZA,7010
514
+ xinference/thirdparty/melo/text/es_phonemizer/punctuation.py,sha256=VzoW7CcVyVfW24p5gNqMazRMICza6x1-vdmHzsQOqZA,5538
515
+ xinference/thirdparty/melo/text/es_phonemizer/spanish_symbols.txt,sha256=gZyyBUKSzo8_Ol8ThlYhai3XplxJYMyR5xeyeeymrO8,54
516
+ xinference/thirdparty/melo/text/es_phonemizer/test.ipynb,sha256=FpJ1JbPUh2M-peJg3gdWhUrrM83MkcWri7sfW3-75zc,5605
517
+ xinference/thirdparty/melo/text/fr_phonemizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
518
+ xinference/thirdparty/melo/text/fr_phonemizer/base.py,sha256=uwwlNgaMTAj20_VbyY8UdsQR_BKiasGXW6Xkqc-CY5Y,4339
519
+ xinference/thirdparty/melo/text/fr_phonemizer/cleaner.py,sha256=nNcKRzr8ANufppC9cpVaO6SJlfwcZTfJvV7hB8WSvNY,2926
520
+ xinference/thirdparty/melo/text/fr_phonemizer/en_symbols.json,sha256=4bD57IMvN0hOQYGwtE3Q0UzyCzQLA94mYo7Zoi9--y0,853
521
+ xinference/thirdparty/melo/text/fr_phonemizer/example_ipa.txt,sha256=jPeFL2yvUURR8rw-heQ3poP7cl9FaNWHdkmw2b7QpL0,11784078
522
+ xinference/thirdparty/melo/text/fr_phonemizer/fr_symbols.json,sha256=T51pyvX-cSrbNyWMnjKaQWmJQ9iHMFrjMxpErjpF60o,1351
523
+ xinference/thirdparty/melo/text/fr_phonemizer/fr_to_ipa.py,sha256=BsTgk9v_4HnPzxlHdKawUUmMRXhjRap-Wo8GpWLY9Lc,742
524
+ xinference/thirdparty/melo/text/fr_phonemizer/french_abbreviations.py,sha256=BPZiAroBOk4SpYNb7AmzGyHHs1M-g2LRryC9M7mbno8,1368
525
+ xinference/thirdparty/melo/text/fr_phonemizer/french_symbols.txt,sha256=i2YVhikvyq5UXD3uhaTKf4Hlx4p63Xf_zNTEo5kQPC0,135
526
+ xinference/thirdparty/melo/text/fr_phonemizer/gruut_wrapper.py,sha256=Sz371tAJIhEA5yY_OfYeHakkkSvxNJhK7zTlFgcCZmE,7193
527
+ xinference/thirdparty/melo/text/fr_phonemizer/punctuation.py,sha256=x_XBBX7R4nkFUoHkPvhh5WGM8fXdSla1x53TpZMUYlw,5454
451
528
  xinference/thirdparty/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
452
529
  xinference/thirdparty/mlx/flux/__init__.py,sha256=zZr1fIAdvqgR4iF0aBUfYkRzDB7RZ0CqSl9E2qQv32A,331
453
530
  xinference/thirdparty/mlx/flux/autoencoder.py,sha256=mPWdTwtM8bAZZcFDOLSI5wgdKp9waIJsnHjsIr-kljE,10797
@@ -494,14 +571,14 @@ xinference/thirdparty/whisper/normalizers/english.json,sha256=Zgf5SL6YJNLhsvoiI8
494
571
  xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc3yhvWzWuMhQzRnp2dM6IQdA,20868
495
572
  xinference/web/ui/package-lock.json,sha256=Q3gwsjjCFtDjVg5Yk7s4jfMAZ1wiyFfS_TJCw3ECB64,762407
496
573
  xinference/web/ui/package.json,sha256=iitsROb4-TLzxbOftXJqUGpp38TuPhzfLKy5n9THQYg,2081
497
- xinference/web/ui/build/asset-manifest.json,sha256=JQl6bknXSiy3ZjsyhgBiYjtKBpMyOLpEU8LnBGfTvBk,453
574
+ xinference/web/ui/build/asset-manifest.json,sha256=wE7KyJFtvvGjDGfDwZ8LVzyqUq5StxvnIxsXtCPBnvQ,453
498
575
  xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
499
- xinference/web/ui/build/index.html,sha256=OESE5w59JgC1TC8WX7SVMfBGYefnyd3_5s2lKHzYoiM,650
576
+ xinference/web/ui/build/index.html,sha256=ud056vePJIPtod4V2ve46pMh5X8lQUlGYpFHUkG2vRM,650
500
577
  xinference/web/ui/build/static/css/main.51a587ff.css,sha256=44-dxrjYALv45A8qiUuz2y24UwPdHgzR1gAe9TlRnRE,4459
501
578
  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
579
+ xinference/web/ui/build/static/js/main.b0936c54.js,sha256=143qaIeUlopMZEJBwbofLRYLeVvbjmaOCNO42axcsbQ,1210619
580
+ xinference/web/ui/build/static/js/main.b0936c54.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
581
+ xinference/web/ui/build/static/js/main.b0936c54.js.map,sha256=7osXfAyBqHN5nT5FOa9RBrILCVpS5F2Sh3lsCQX3KjY,5142136
505
582
  xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
506
583
  xinference/web/ui/node_modules/.package-lock.json,sha256=2kL1sQ4ZuDQilki9DnRFFM8CxT13fyGl3chLK6i3DQY,760261
507
584
  xinference/web/ui/node_modules/.cache/babel-loader/00012b59e7dc64a18400bdddb660faa295258241c0b9cd15c78cdba63b858ed8.json,sha256=FhiSQ9MQv6bT7TkLBlXXskoaG2HCKhsuTXXlkDV-pM4,668
@@ -2176,7 +2253,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/2209837e3dec6a6d671039bd8a41d
2176
2253
  xinference/web/ui/node_modules/.cache/babel-loader/22115378a90065fd3e7763dd7a5028d6bc33836160f5e52d4060205b79f9f791.json,sha256=Hwx2oLYIK6BMd71oW-Hu7zXnFUgcAxz-mB1VqE7DDLo,1345
2177
2254
  xinference/web/ui/node_modules/.cache/babel-loader/2211b1bb74632d4ad20c591921330b81b71701b6275b909a7992415304baa267.json,sha256=z5xNeuuIPmvJ0BlOrjL8Web--p_x5g2C5Mgi4ayRMyA,1006
2178
2255
  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
2180
2256
  xinference/web/ui/node_modules/.cache/babel-loader/22153206becd53da2d627735b9f342526acde720c539f25b6487bc6c72631c43.json,sha256=vA0GKmhGQC00meMQSx5jNPp9_P61Pg0fRVktf3DOGfg,1671
2181
2257
  xinference/web/ui/node_modules/.cache/babel-loader/22153d21beb9730f33c51c2efbbfeee895a5f170c612457a8f0e493ff0d44191.json,sha256=7z6Dtm_gE9zcK9eirJemWt104JcGvlp7s3n1buOkZzk,1570
2182
2258
  xinference/web/ui/node_modules/.cache/babel-loader/22176c85523cf046c50517b5e594c37ffd923e4840cfae0995fd3637f005637d.json,sha256=YdD-JD1RsyeP3LKDABQeJHKwBbWY4IdMPhkrdc55rzA,1574
@@ -8349,6 +8425,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/a3ef0ae53a0b4f21d85bbb4fb5a82
8349
8425
  xinference/web/ui/node_modules/.cache/babel-loader/a3f03cbec4df500cce421fd1efdbd64a09173bcf57b05feb9bcbeda965d4d22b.json,sha256=lQ_YeeXrjiIZ8AjpLYAb4cPseEmYd6mY8hBwSVuUv9g,1274
8350
8426
  xinference/web/ui/node_modules/.cache/babel-loader/a3f0fd5b99583db00436a6495f05cdd028a382de4c03a62925aeaf5af8a26af2.json,sha256=Xuf0azpq-b2PiR1d-JhSUwIXUtvBJQWmCxG6oldAJ6s,1812
8351
8427
  xinference/web/ui/node_modules/.cache/babel-loader/a3fd339d82e8c1c17f1ffaff55c9e724a7549ac2c5a8ab75b6d67898c16a67f8.json,sha256=VSL7y_QTFuxxgtzTbPrlaMQQzZB38mb13kI5zDBT7G8,2177
8428
+ xinference/web/ui/node_modules/.cache/babel-loader/a3ff866acddf34917a7ee399e0e571a4dfd8ba66d5057db885f243e16a6eb17d.json,sha256=tKiB9Pweo7P8IQHo0zkfiRslIvhOcXPm1RdXE-YOLmw,208053
8352
8429
  xinference/web/ui/node_modules/.cache/babel-loader/a400ae3500d8e2480ef56b672afcb3828cf2c620b7daa9793fbc3a9f62f9b8b1.json,sha256=Ge0HJ9BgWGRizmVVGtI6dNcfilL1p09kHkywryhrHh4,1866
8353
8430
  xinference/web/ui/node_modules/.cache/babel-loader/a403ca07d8be675101f9d4bba17a4268c0b16e88c3bdc347ecde94af2957679c.json,sha256=sQw_AHZ4NGV7OGQAZbx36pBA6I3YD_EPzU4A7cq1-Es,1137
8354
8431
  xinference/web/ui/node_modules/.cache/babel-loader/a4045b0f07b6077cb028d95a9b91c70ea074012362104bb480bcc509c3171605.json,sha256=qNjnWGkFt0aew4zPpIUshTQd_SMcqoi1m2dZJlEnVnk,2078
@@ -15642,9 +15719,9 @@ xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9
15642
15719
  xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
15643
15720
  xinference/web/ui/src/locales/en.json,sha256=MahpAAKmZPqtK5-M_kwdI9IUbBP-GcNqI0jSTVXHEE8,8169
15644
15721
  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,,
15722
+ xinference-1.2.2.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15723
+ xinference-1.2.2.dist-info/METADATA,sha256=IKf5udmeYA8AAAPMHGwry4YSehJPGvxp30AKB57P80Y,23991
15724
+ xinference-1.2.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
15725
+ xinference-1.2.2.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15726
+ xinference-1.2.2.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15727
+ xinference-1.2.2.dist-info/RECORD,,