xinference 1.6.0.post1__py3-none-any.whl → 1.6.1__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 (87) hide show
  1. xinference/_version.py +3 -3
  2. xinference/client/restful/restful_client.py +1 -1
  3. xinference/conftest.py +0 -7
  4. xinference/core/media_interface.py +9 -8
  5. xinference/core/model.py +13 -6
  6. xinference/core/scheduler.py +1 -10
  7. xinference/core/worker.py +0 -10
  8. xinference/model/audio/model_spec.json +53 -1
  9. xinference/model/audio/model_spec_modelscope.json +57 -1
  10. xinference/model/embedding/core.py +19 -11
  11. xinference/model/image/model_spec.json +10 -1
  12. xinference/model/image/model_spec_modelscope.json +20 -0
  13. xinference/model/llm/__init__.py +6 -54
  14. xinference/model/llm/core.py +19 -5
  15. xinference/model/llm/llama_cpp/core.py +59 -3
  16. xinference/model/llm/llama_cpp/memory.py +455 -0
  17. xinference/model/llm/llm_family.json +185 -397
  18. xinference/model/llm/llm_family.py +88 -16
  19. xinference/model/llm/llm_family_modelscope.json +199 -421
  20. xinference/model/llm/llm_family_openmind_hub.json +0 -34
  21. xinference/model/llm/sglang/core.py +4 -0
  22. xinference/model/llm/transformers/__init__.py +27 -6
  23. xinference/model/llm/transformers/chatglm.py +4 -2
  24. xinference/model/llm/transformers/core.py +49 -28
  25. xinference/model/llm/transformers/deepseek_v2.py +6 -49
  26. xinference/model/llm/transformers/gemma3.py +119 -164
  27. xinference/{thirdparty/omnilmm/train → model/llm/transformers/multimodal}/__init__.py +1 -1
  28. xinference/model/llm/transformers/{cogagent.py → multimodal/cogagent.py} +58 -95
  29. xinference/model/llm/transformers/multimodal/core.py +205 -0
  30. xinference/model/llm/transformers/{deepseek_vl2.py → multimodal/deepseek_vl2.py} +59 -120
  31. xinference/model/llm/transformers/multimodal/gemma3.py +117 -0
  32. xinference/model/llm/transformers/{glm4v.py → multimodal/glm4v.py} +57 -93
  33. xinference/model/llm/transformers/multimodal/intern_vl.py +412 -0
  34. xinference/model/llm/transformers/{minicpmv26.py → multimodal/minicpmv26.py} +55 -102
  35. xinference/model/llm/transformers/{ovis2.py → multimodal/ovis2.py} +114 -175
  36. xinference/model/llm/transformers/{qwen-omni.py → multimodal/qwen-omni.py} +82 -167
  37. xinference/model/llm/transformers/multimodal/qwen2_audio.py +131 -0
  38. xinference/model/llm/transformers/{qwen2_vl.py → multimodal/qwen2_vl.py} +224 -256
  39. xinference/model/llm/transformers/opt.py +4 -2
  40. xinference/model/llm/transformers/utils.py +6 -37
  41. xinference/model/llm/vllm/core.py +4 -0
  42. xinference/model/rerank/core.py +7 -1
  43. xinference/model/rerank/utils.py +17 -0
  44. xinference/web/ui/build/asset-manifest.json +3 -3
  45. xinference/web/ui/build/index.html +1 -1
  46. xinference/web/ui/build/static/js/main.ddf9eaee.js +3 -0
  47. xinference/web/ui/build/static/js/main.ddf9eaee.js.map +1 -0
  48. xinference/web/ui/node_modules/.cache/babel-loader/12e637ed5fa9ca6491b03892b6949c03afd4960fe36ac25744488e7e1982aa19.json +1 -0
  49. xinference/web/ui/node_modules/.cache/babel-loader/567e49df411efb24425d289bb484758cb57067ca54f8b5c67fe4505f698deb96.json +1 -0
  50. xinference/web/ui/node_modules/.cache/babel-loader/77ac2665a784e99501ae95d32ef5937837a0439a47e965d291b38e99cb619f5b.json +1 -0
  51. xinference/web/ui/node_modules/.cache/babel-loader/d4ed4e82bfe69915999ec83f5feaa4301c75ecc6bdf1c78f2d03e4671ecbefc8.json +1 -0
  52. xinference/web/ui/src/locales/en.json +3 -1
  53. xinference/web/ui/src/locales/zh.json +3 -1
  54. {xinference-1.6.0.post1.dist-info → xinference-1.6.1.dist-info}/METADATA +6 -4
  55. {xinference-1.6.0.post1.dist-info → xinference-1.6.1.dist-info}/RECORD +60 -76
  56. {xinference-1.6.0.post1.dist-info → xinference-1.6.1.dist-info}/WHEEL +1 -1
  57. xinference/model/llm/transformers/cogvlm2.py +0 -442
  58. xinference/model/llm/transformers/cogvlm2_video.py +0 -333
  59. xinference/model/llm/transformers/deepseek_vl.py +0 -280
  60. xinference/model/llm/transformers/glm_edge_v.py +0 -213
  61. xinference/model/llm/transformers/intern_vl.py +0 -526
  62. xinference/model/llm/transformers/internlm2.py +0 -94
  63. xinference/model/llm/transformers/minicpmv25.py +0 -193
  64. xinference/model/llm/transformers/omnilmm.py +0 -132
  65. xinference/model/llm/transformers/qwen2_audio.py +0 -179
  66. xinference/model/llm/transformers/qwen_vl.py +0 -360
  67. xinference/thirdparty/omnilmm/LICENSE +0 -201
  68. xinference/thirdparty/omnilmm/__init__.py +0 -0
  69. xinference/thirdparty/omnilmm/chat.py +0 -218
  70. xinference/thirdparty/omnilmm/constants.py +0 -4
  71. xinference/thirdparty/omnilmm/conversation.py +0 -332
  72. xinference/thirdparty/omnilmm/model/__init__.py +0 -1
  73. xinference/thirdparty/omnilmm/model/omnilmm.py +0 -595
  74. xinference/thirdparty/omnilmm/model/resampler.py +0 -166
  75. xinference/thirdparty/omnilmm/model/utils.py +0 -578
  76. xinference/thirdparty/omnilmm/train/train_utils.py +0 -150
  77. xinference/thirdparty/omnilmm/utils.py +0 -134
  78. xinference/web/ui/build/static/js/main.ae579a97.js +0 -3
  79. xinference/web/ui/build/static/js/main.ae579a97.js.map +0 -1
  80. xinference/web/ui/node_modules/.cache/babel-loader/2fdc61dcb6a9d1fbcb44be592d0e87d8c3f21297a7327559ef5345665f8343f7.json +0 -1
  81. xinference/web/ui/node_modules/.cache/babel-loader/3d596a3e8dd6430d7ce81d164e32c31f8d47cfa5f725c328a298754d78563e14.json +0 -1
  82. xinference/web/ui/node_modules/.cache/babel-loader/5c08e2cd07809ed3e41486b16652253404cbb63a3ff8d0366ee50f57e2413cea.json +0 -1
  83. xinference/web/ui/node_modules/.cache/babel-loader/8472e58a31720892d534f3febda31f746b25ec4aa60787eef34217b074e67965.json +0 -1
  84. /xinference/web/ui/build/static/js/{main.ae579a97.js.LICENSE.txt → main.ddf9eaee.js.LICENSE.txt} +0 -0
  85. {xinference-1.6.0.post1.dist-info → xinference-1.6.1.dist-info}/entry_points.txt +0 -0
  86. {xinference-1.6.0.post1.dist-info → xinference-1.6.1.dist-info}/licenses/LICENSE +0 -0
  87. {xinference-1.6.0.post1.dist-info → xinference-1.6.1.dist-info}/top_level.txt +0 -0
@@ -53,6 +53,7 @@
53
53
  "modelFormat": "Model Format",
54
54
  "modelSize": "Model Size",
55
55
  "quantization": "Quantization",
56
+ "multimodelProjector": "Multimodel Projector",
56
57
  "nGPU": "GPU Count per Replica",
57
58
  "nGPUPerWorker": "GPU Count per Worker",
58
59
  "nGpuLayers": "N GPU Layers",
@@ -206,6 +207,7 @@
206
207
  },
207
208
 
208
209
  "components": {
209
- "copySuccess": "Copied to clipboard!"
210
+ "copySuccess": "Copied to clipboard!",
211
+ "suggestsCommonParameters": "Suggests common parameters; others allowed."
210
212
  }
211
213
  }
@@ -53,6 +53,7 @@
53
53
  "modelFormat": "模型格式",
54
54
  "modelSize": "模型大小",
55
55
  "quantization": "量化",
56
+ "multimodelProjector": "多模态投影器",
56
57
  "nGPU": "GPU 数量 (每个副本)",
57
58
  "nGPUPerWorker": "每个 Worker 上的 GPU 数量",
58
59
  "nGpuLayers": "GPU 层数",
@@ -206,6 +207,7 @@
206
207
  },
207
208
 
208
209
  "components": {
209
- "copySuccess": "已复制到剪贴板!"
210
+ "copySuccess": "已复制到剪贴板!",
211
+ "suggestsCommonParameters": "提示常用参数,也允许输入其他参数"
210
212
  }
211
213
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xinference
3
- Version: 1.6.0.post1
3
+ Version: 1.6.1
4
4
  Summary: Model Serving Made Easy
5
5
  Home-page: https://github.com/xorbitsai/inference
6
6
  Author: Qin Xuye
@@ -67,7 +67,8 @@ Requires-Dist: sphinx-tabs; extra == "dev"
67
67
  Requires-Dist: sphinx-design; extra == "dev"
68
68
  Provides-Extra: all
69
69
  Requires-Dist: uv; extra == "all"
70
- Requires-Dist: xllamacpp; extra == "all"
70
+ Requires-Dist: xllamacpp>=0.1.18; extra == "all"
71
+ Requires-Dist: gguf; extra == "all"
71
72
  Requires-Dist: transformers>=4.46.0; extra == "all"
72
73
  Requires-Dist: torch; extra == "all"
73
74
  Requires-Dist: accelerate>=0.28.0; extra == "all"
@@ -164,7 +165,8 @@ Provides-Extra: intel
164
165
  Requires-Dist: torch==2.1.0a0; extra == "intel"
165
166
  Requires-Dist: intel_extension_for_pytorch==2.1.10+xpu; extra == "intel"
166
167
  Provides-Extra: llama-cpp
167
- Requires-Dist: xllamacpp; extra == "llama-cpp"
168
+ Requires-Dist: xllamacpp>=0.1.18; extra == "llama-cpp"
169
+ Requires-Dist: gguf; extra == "llama-cpp"
168
170
  Provides-Extra: transformers
169
171
  Requires-Dist: transformers>=4.46.0; extra == "transformers"
170
172
  Requires-Dist: torch; extra == "transformers"
@@ -336,6 +338,7 @@ potential of cutting-edge AI models.
336
338
  - Support SGLang backend: [#1161](https://github.com/xorbitsai/inference/pull/1161)
337
339
  - Support LoRA for LLM and image models: [#1080](https://github.com/xorbitsai/inference/pull/1080)
338
340
  ### New Models
341
+ - Built-in support for [Deepseek-R1-0528](https://huggingface.co/deepseek-ai/DeepSeek-R1-0528): [#3539](https://github.com/xorbitsai/inference/pull/3539)
339
342
  - Built-in support for [Qwen3](https://qwenlm.github.io/blog/qwen3/): [#3347](https://github.com/xorbitsai/inference/pull/3347)
340
343
  - Built-in support for [Qwen2.5-Omni](https://github.com/QwenLM/Qwen2.5-Omni): [#3279](https://github.com/xorbitsai/inference/pull/3279)
341
344
  - Built-in support for [Skywork-OR1](https://github.com/SkyworkAI/Skywork-OR1): [#3274](https://github.com/xorbitsai/inference/pull/3274)
@@ -343,7 +346,6 @@ potential of cutting-edge AI models.
343
346
  - Built-in support for [SeaLLMs-v3](https://github.com/DAMO-NLP-SG/DAMO-SeaLLMs): [#3248](https://github.com/xorbitsai/inference/pull/3248)
344
347
  - Built-in support for [paraformer-zh](https://huggingface.co/funasr/paraformer-zh): [#3236](https://github.com/xorbitsai/inference/pull/3236)
345
348
  - Built-in support for [InternVL3](https://internvl.github.io/blog/2025-04-11-InternVL-3.0/): [#3235](https://github.com/xorbitsai/inference/pull/3235)
346
- - Built-in support for [MegaTTS3](https://github.com/bytedance/MegaTTS3): [#3224](https://github.com/xorbitsai/inference/pull/3224)
347
349
  ### Integrations
348
350
  - [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.
349
351
  - [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.
@@ -1,7 +1,7 @@
1
1
  xinference/__init__.py,sha256=nmTTrYbIpj964ZF6ojtgOM7E85JBOj1EyQbmYjbj1jw,915
2
2
  xinference/_compat.py,sha256=YF-lS6tX06zkFi2oFS0yq_LBn4hX_8u0Ft0vKxGALwA,4238
3
- xinference/_version.py,sha256=tW-4RTNGQ7cv_MFJneeHjNCu_V0bTSr4DiDotS_YdfQ,503
4
- xinference/conftest.py,sha256=ZB7li77s4_H4ZEQpDo2PX-b4zrs8-bIpvh59P_CaSoo,9691
3
+ xinference/_version.py,sha256=NlUIgSIdYsRat6A9yZ3BVO5Vr4C-nbkg0MJdh70Mmts,497
4
+ xinference/conftest.py,sha256=vETDpRBVIlWbWi7OTwf7og89U25KyYGyI7yPIB3O8N8,9564
5
5
  xinference/constants.py,sha256=-QqMRJo1MvTgnLmRZLF3DVj3PMXUzg1rV-XIsuN_nGI,4319
6
6
  xinference/device_utils.py,sha256=ELsqvnjvz9wYthTyQFzKSV4mZsaASz6hj_IsfMmfMWc,4447
7
7
  xinference/fields.py,sha256=0UtBFaDNzn1n9MRjyTkNrolsIML-TpZfudWOejqjni8,5245
@@ -18,21 +18,21 @@ xinference/client/__init__.py,sha256=Gc4HOzAy_1cic5kXlso7hahYgw89CKvZSJDicEU461k
18
18
  xinference/client/common.py,sha256=iciZRs5YjM2gYsXnwACPMaiBZp4_XpawWwfym0Iyu40,1617
19
19
  xinference/client/handlers.py,sha256=HYmQjG0BPK5PKcWVEDJqQz5iLjS8yjOq5j-HP_CAi_k,630
20
20
  xinference/client/restful/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
21
- xinference/client/restful/restful_client.py,sha256=VYJdDsbHppOtuQGSCE6vdSmCmvQtaLCVcaRPTx_b_D0,57936
21
+ xinference/client/restful/restful_client.py,sha256=C4z09rnPX49ZY5bcO8IvxDk8L6nU_IS38jTaDhAjPsU,58015
22
22
  xinference/core/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
23
23
  xinference/core/cache_tracker.py,sha256=3ubjYCU5aZToSp2GEuzedECVrg-PR4kThTefrFUkb9g,6971
24
24
  xinference/core/chat_interface.py,sha256=GbjCZgxv9t14r7-DK7G2tB5Xhuze8R4nLiB92D4mBjo,31174
25
25
  xinference/core/event.py,sha256=42F38H2WOl6aPxp2oxX6WNxHRRxbnvYRmbt4Ar7NP4U,1640
26
- xinference/core/media_interface.py,sha256=txwgcqlj5CdBi3zFbGobLclEdCkThR152TJqzqiQrts,27450
26
+ xinference/core/media_interface.py,sha256=CHvMsaKttx8kcTNtA3kMLo74bbTvBXQ1VHbbSBkusbA,27533
27
27
  xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
28
- xinference/core/model.py,sha256=Nq57d1AjdKsVtKuoscibLrGBs0OKmmqYURkleTeRdBc,46528
28
+ xinference/core/model.py,sha256=nFa1HaIaVKEogX-dvP2wQc77CVuP1wHu-PJfj8_s8-g,46887
29
29
  xinference/core/progress_tracker.py,sha256=CNCc1ZVscvp-JJznPTYJDPuis7ya6ZothZUIalDcxDo,6798
30
30
  xinference/core/resource.py,sha256=aTV89dmuKxw5JnwQglRkA2Wxu1EBLM5WjmLxITSXYgs,1808
31
- xinference/core/scheduler.py,sha256=0rbbaVYQ4g2W8P3tbbHonmFjFkllmoPB3OtkVPr5crA,15650
31
+ xinference/core/scheduler.py,sha256=QLT0FD2ICxtXtg7stfs58Cy7hK_XOiN2GmKo8hBjKF0,15242
32
32
  xinference/core/status_guard.py,sha256=VLhyqpobdclfyzcROqf4bmGDiKpuHllto316X3Z6Hrc,2860
33
33
  xinference/core/supervisor.py,sha256=uEmVyYFMCpec6MDNnEf3J3aWDqA2BYI1yOxnCuwRn_w,71711
34
34
  xinference/core/utils.py,sha256=VgcvxpTr2Q8am3MoHp7JPjC7jLYlKX2kLVdBo2Q_fRo,10430
35
- xinference/core/worker.py,sha256=RYGwwEPCtm6sU_mFU5aQJhozQ8tuE3r3EF4lxM20Mkw,61958
35
+ xinference/core/worker.py,sha256=bXVqC5wnhzP1zA6zF8KjFl5-xn-AAkRmleJaBe73P9A,61273
36
36
  xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
37
37
  xinference/deploy/cmdline.py,sha256=zUyfEwCpcyWpE3xHgfq-QAuO3YBZm1zM1Vrp9CqOM3A,50968
38
38
  xinference/deploy/local.py,sha256=sO3BcpEH9oCF87CxWVA4AXAYcfHGnrcop40ew5NOA2g,3979
@@ -56,13 +56,13 @@ xinference/model/audio/funasr.py,sha256=65z7U7_F14CCP-jg6BpeY3_49FK7Y5OCRSzrhhsk
56
56
  xinference/model/audio/kokoro.py,sha256=7gqMqsW9NW3xm9zOXbqB4y_1UmMnI5JCub14K3iyLL4,3729
57
57
  xinference/model/audio/megatts.py,sha256=fA2_vbEZ1ggIh2xSGacnyp72Kn2TyQGfjxFlO_w-oGw,3369
58
58
  xinference/model/audio/melotts.py,sha256=lJdOsce2mMOTQIslv6xq1JTEO7vC6Q9ga2xjY-_E7uw,3493
59
- xinference/model/audio/model_spec.json,sha256=wCKQGuw5w1oj7GobIAgzGn13kxF5jt-t-V-wNf174a8,11448
60
- xinference/model/audio/model_spec_modelscope.json,sha256=kw3w7kaegi5GFkzXat4GIvuyYSACwTqTirp51jq6u4g,4060
59
+ xinference/model/audio/model_spec.json,sha256=nU00Q7v0-Zc0jSikcmD1OlD5t1zaVGbfsxl2gTq-UPM,12997
60
+ xinference/model/audio/model_spec_modelscope.json,sha256=e62UDFDIoKegEbI-a7W66uaiaPmy3i9SWhv4MOz-2No,5621
61
61
  xinference/model/audio/utils.py,sha256=fnnQfZlhH6DRw6beXPUIO28u6qu2GgCONrWDIsTCNkw,1591
62
62
  xinference/model/audio/whisper.py,sha256=NePQOYy2CnVqi7g6uY9hq5tlUIxZ995FOIOPsPZCfJ8,9058
63
63
  xinference/model/audio/whisper_mlx.py,sha256=zBuCd7GUlsN9FC_-J11gqIkOCicihfbqxoabiXTvH2Q,7237
64
64
  xinference/model/embedding/__init__.py,sha256=xu6Q7KyX-WbNoetu2IIRAfeKFhnj5JknZQRf0aV5gdE,3210
65
- xinference/model/embedding/core.py,sha256=W4xQP3zCZLnWqSc__VM6xm8pUxFON49o-JXhAIZkzVY,32719
65
+ xinference/model/embedding/core.py,sha256=buLkzOBCj6In2b2qjtbfDMZMT69lUSijSHtWUXLfzk4,33050
66
66
  xinference/model/embedding/custom.py,sha256=757KncqhsOWVypHZFtuhBP_xy-UTNaFdy0BuZRfuIV8,3848
67
67
  xinference/model/embedding/model_spec.json,sha256=EqoR3mubGwCRhAiG6airmS1i881MAxRcwG0FkTyODjs,7233
68
68
  xinference/model/embedding/model_spec_modelscope.json,sha256=XGXKaB0sI-pDuboCW39AIugRuDFNvQE6hNhp67uoKsA,6414
@@ -76,8 +76,8 @@ xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRU
76
76
  xinference/model/image/__init__.py,sha256=n_RhozCUaU8fn8ZGTkJ9EWRVPTOit7uGVIoTsjCafNs,2835
77
77
  xinference/model/image/core.py,sha256=SYlUS-aTI3y5LvmWXivdEV5HbjY1Mpe-_kXge8E_4RE,13079
78
78
  xinference/model/image/custom.py,sha256=5gjujQpJVTJ-pVB5LzBo4-bWKKOHzFlRaoRKJ_CuIUg,3769
79
- xinference/model/image/model_spec.json,sha256=BvH1A1G8lpa_NuXi8XPJSA5E4ZOdnN7f4vJm1acgSBU,9904
80
- xinference/model/image/model_spec_modelscope.json,sha256=MGnnOve5DXD3BryYRpkrhb8DAOdTEmaQxb_j488J6tA,8785
79
+ xinference/model/image/model_spec.json,sha256=DHuznDN1LwrAk8EbBX3HGf_oz23sC46EjtmaJXvUO1I,10074
80
+ xinference/model/image/model_spec_modelscope.json,sha256=cUkfxzxcf1825_S3QRXaf1F5p4NVZHmc5TZreTYLrvw,9209
81
81
  xinference/model/image/sdapi.py,sha256=Xgdtnvw4Xwj1Nc0cBoDo_ogH6E2mFJqLvX0jSxxgdnA,5936
82
82
  xinference/model/image/utils.py,sha256=sJCxC8iCS7r9sVY4edKz2DYaZ-ebq_t9HjL7fZMS8z8,2344
83
83
  xinference/model/image/ocr/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
@@ -87,51 +87,47 @@ xinference/model/image/scheduler/flux.py,sha256=GHlpPfU5UxsiQWNyvNe9SaVZceNg_2Ci
87
87
  xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
88
88
  xinference/model/image/stable_diffusion/core.py,sha256=V3BaASwx8q1YERb4jhhaYEDFiwh3BuPAz8pVZTuktAQ,24717
89
89
  xinference/model/image/stable_diffusion/mlx.py,sha256=GZsozzGB04NfHAdU9MI6gwWE1t_A-s_Ddn_ic8DlkKQ,7476
90
- xinference/model/llm/__init__.py,sha256=C8oWRF0sdShzOvHrMYrdSb6EdOwfZFBDL8MQoQ63E9E,10845
91
- xinference/model/llm/core.py,sha256=HLShSFCE4cgy-b0Ye3L2icpovO0h10COo62eWRp-5X0,9465
92
- xinference/model/llm/llm_family.json,sha256=OV-9v9psMBVcBuB083oEB9l_qw4T0-AnVCmadbzN5fA,404945
93
- xinference/model/llm/llm_family.py,sha256=3mNGK_ow6CS2nVq5FWLzqwCxMPCW3S2rV2dAjdVIcFQ,42136
90
+ xinference/model/llm/__init__.py,sha256=Pm8hxP3E1m9-H-JaicIsUCvZ77uD0ClL0KvqcreO1aY,9137
91
+ xinference/model/llm/core.py,sha256=S8Ys69u6NWRjjHksBlGG50RPwHIDSQsUBiK-wRunfj0,10236
92
+ xinference/model/llm/llm_family.json,sha256=vfq-PN8iVMq-zYN_1-zCcfNSjYihYF9c3ys2DCl1SLY,410634
93
+ xinference/model/llm/llm_family.py,sha256=Nex1zvegUH1TvGjy8yILYiehY2QFOziRASGBlAa7wPg,44510
94
94
  xinference/model/llm/llm_family_csghub.json,sha256=OYve65CgLVHdyTC3UMe7vqhFwC09OR7XhzDsVEpkJhY,6908
95
- xinference/model/llm/llm_family_modelscope.json,sha256=1jeRHkOdWyCJtfrzzrGVog5HbcuSqBctYBtYkmHyhiQ,349628
96
- xinference/model/llm/llm_family_openmind_hub.json,sha256=siUXCbVjhh781Vdd7iTPpnobz61NOTiG01WLvx6eZ34,59604
95
+ xinference/model/llm/llm_family_modelscope.json,sha256=4e1yzxed72XbgCBZKhHobCFGNDzpGrCt-MsBvM0yu2g,355816
96
+ xinference/model/llm/llm_family_openmind_hub.json,sha256=sAWzttUasckGzNdcBHhdxvXB893tBhnm__w_1hr6JXw,58243
97
97
  xinference/model/llm/memory.py,sha256=GLNmXBI-AtMbuaJfEf50fnhN4rdbOZjLyT6L_Vjqa5g,10206
98
98
  xinference/model/llm/reasoning_parser.py,sha256=L9BGzsQiTw8QY6BtQfdEGJmCL_RpnYR1MXBkczOS6SU,17184
99
99
  xinference/model/llm/utils.py,sha256=b_QAng7OGLs40VIRfdcQrH5avNDSQzSoLaZtPXwCnGo,36292
100
100
  xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
101
- xinference/model/llm/llama_cpp/core.py,sha256=WDmTHmuqBzCNbsvaZPkpgwz8IHcsNL4ktCFoJv5Y2ns,11454
101
+ xinference/model/llm/llama_cpp/core.py,sha256=ZyOZoKZAXX0tM511OdSbEdV_jPxzfJyQ60YdK_x-IbI,13737
102
+ xinference/model/llm/llama_cpp/memory.py,sha256=8MvyonYVH_8EecXkUnKtZPp2LhO_MKW3KtOAC2YYIfQ,15592
102
103
  xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
104
  xinference/model/llm/lmdeploy/core.py,sha256=sLYhIzmIFv7IdPh2Ft8cC2_jCdJMQ2bBAzPpktDB3bA,19981
104
105
  xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
105
106
  xinference/model/llm/mlx/core.py,sha256=B3gO3wJNYAC6O5iVTHgSEBzjST3L90MrBd8taQSxSvc,24828
106
107
  xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
107
- xinference/model/llm/sglang/core.py,sha256=wXm7D9pxlvWQqtVnC0vGzBK0KjjTe-RW_QvQXQsb3uA,25161
108
- xinference/model/llm/transformers/__init__.py,sha256=RZKVW6N_S6XlFEFN0Krf_QcGkTUAj-k3-FXKC7aKDu0,1103
109
- xinference/model/llm/transformers/chatglm.py,sha256=yLRJENdeLfm-gCWNoCU-JWYjhJWQ8EbLJdl0Rpd7-6o,22746
110
- xinference/model/llm/transformers/cogagent.py,sha256=Bh_por_RJTIMgyxw91M-6CGj-arrgXDblHidI7plErk,9994
111
- xinference/model/llm/transformers/cogvlm2.py,sha256=GYQ7__4YC53XUmzeHvcpGafceoVjJ8cNnTipmFNMYSM,16075
112
- xinference/model/llm/transformers/cogvlm2_video.py,sha256=2lnKlJSMnGzyexbAgy759Yoav1b628TMZqykgsHI54Q,11715
113
- xinference/model/llm/transformers/core.py,sha256=rpsAcJSkNnLySeQN7sGK9zG9YB_LjS3QHsVEW1nGRrs,29561
114
- xinference/model/llm/transformers/deepseek_v2.py,sha256=8N4sFDBe19i2sWhS-4EJm1s-QGcHJN7Uh9-p8ftMU_I,4150
115
- xinference/model/llm/transformers/deepseek_vl.py,sha256=IrmAueiFJB7-hhuOwqJKbm2aqWXDjo4fQ8uhEQCePrY,10579
116
- xinference/model/llm/transformers/deepseek_vl2.py,sha256=eRN8hJoOD-M9sRvi-BgH7kU28OTsbCeuwRSW-2dThmU,11062
117
- xinference/model/llm/transformers/gemma3.py,sha256=sYQSJNA8OEv7jX6tuBd11Rputz3nuP_xxeolQwCAEjI,7159
118
- xinference/model/llm/transformers/glm4v.py,sha256=RZ-b4jQgnGeytnqqDK2ZeVFuQl5MugbB36lKDg4r4wg,13141
119
- xinference/model/llm/transformers/glm_edge_v.py,sha256=qpLihGAzAONL15LRS2-NDyrttiUF0hhTaKNNOfqPGuU,7427
120
- xinference/model/llm/transformers/intern_vl.py,sha256=YaOQBXkc8MoE2sr8c5pSmp1LD8ZrsiXJiwoGOXrQxdA,19080
121
- xinference/model/llm/transformers/internlm2.py,sha256=pkL32jkATCVvsH8wwsIb4LUdgqOnBwX35UsukBETkPQ,3226
122
- xinference/model/llm/transformers/minicpmv25.py,sha256=WssG5N4VZqoLD18Po6_d5JFqTaPUztm_zwppIntIyy8,6885
123
- xinference/model/llm/transformers/minicpmv26.py,sha256=r5dxqyOzJME0uqiEW4Xddiu5196fzULolR0ij89sR-M,14241
124
- xinference/model/llm/transformers/omnilmm.py,sha256=3JthdEbvJuZCJXdVexDAkDlEmU72Gv0dVznh14K-dWk,5177
125
- xinference/model/llm/transformers/opt.py,sha256=RLmKlhkHORPcNqAdlh8Snf_3bZAan9FUz39Id6SUsdI,2434
126
- xinference/model/llm/transformers/ovis2.py,sha256=Da_8u0Hv-2TywPYmXrxLI55N0tKie6xPAY_wAVXX3W8,10811
127
- xinference/model/llm/transformers/qwen-omni.py,sha256=XbvckerhJuQZSJ0zkRmPjr2Fx-SeLxKjqHATWwEINzw,10460
128
- xinference/model/llm/transformers/qwen2_audio.py,sha256=3fjgDIgTw4-CuA0GKNoRnPArdMxW1YNxaTmSPYmv0_Y,6352
129
- xinference/model/llm/transformers/qwen2_vl.py,sha256=xbbRoVHPCqcjghVh7TS0BVCwaDUId-kkypJJkj6Z-Hk,9378
130
- xinference/model/llm/transformers/qwen_vl.py,sha256=QDrElgb_tAJFWrvOzxZd8GmabFa39HRxziQNZOrEtDg,14172
108
+ xinference/model/llm/sglang/core.py,sha256=81LARxTrQRl3uh9c8S451kevW_GQB3M3IzsWKRjX_z4,25265
109
+ xinference/model/llm/transformers/__init__.py,sha256=_4hQ7BvHNE4WAyzNcTB0_iY5mBcaPGTkLvQcWiylBoI,1724
110
+ xinference/model/llm/transformers/chatglm.py,sha256=RP1Kg5zWMUJyd4ScgzxUVEmsqS4---VkSdgKyGaQ_0M,22875
111
+ xinference/model/llm/transformers/core.py,sha256=fAE7vtclIQLaEk2AwMoPxjF3WhfmrJuZWOF2Pco2aDw,31019
112
+ xinference/model/llm/transformers/deepseek_v2.py,sha256=HxEyYLx1aCXxk6NPrOClo0OV5YW1MknAI8ksyyggUqA,2624
113
+ xinference/model/llm/transformers/gemma3.py,sha256=8t2qzBK1yrzJcIFkynr4W8fp0qz8cPSSfgb4ojwZOIo,5481
114
+ xinference/model/llm/transformers/opt.py,sha256=iMFpUOYWWZp7DZj3fqWHQKq-ZH1DXthDrOhhGz8F8RE,2541
131
115
  xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
132
- xinference/model/llm/transformers/utils.py,sha256=KETjuVR_RpF--fno0KxT068fD1v4REFhe-0wy_sCwRs,19584
116
+ xinference/model/llm/transformers/utils.py,sha256=bXBohOCjZuTrwC-Hh3n3k37PSA8E_qw4i9GGxxUHSLE,18415
117
+ xinference/model/llm/transformers/multimodal/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
118
+ xinference/model/llm/transformers/multimodal/cogagent.py,sha256=p-rL-1bjuyIRFchyvrVOXBO7e6KlCdQI_PEDu4M0VNg,8773
119
+ xinference/model/llm/transformers/multimodal/core.py,sha256=uUIlTYfqafcj7kz2mWYWyGSqTdAfql_WhjM4WKUZQOI,6982
120
+ xinference/model/llm/transformers/multimodal/deepseek_vl2.py,sha256=fHhsNbLiUMFJOK4BXBxY5kdsVRoJLwuk-7l20nuvs4E,8759
121
+ xinference/model/llm/transformers/multimodal/gemma3.py,sha256=8GJjAaddeoJo_iNQdhq4FS3Oq0xYtEfJbQGojJoLLzU,4217
122
+ xinference/model/llm/transformers/multimodal/glm4v.py,sha256=2Purvv7WBYiG9Av5o6KjMks5wvArEF28d1nQBce21Hg,11666
123
+ xinference/model/llm/transformers/multimodal/intern_vl.py,sha256=xu6bBoEMiNWhzExD7UR19IwSdoIpzKK0j7wVhOBzOUY,15743
124
+ xinference/model/llm/transformers/multimodal/minicpmv26.py,sha256=KEz7Qv7AO5CLc4hcewqhwLmIosVupaMR--HDjTNQ_Io,12943
125
+ xinference/model/llm/transformers/multimodal/ovis2.py,sha256=6AL_Zc2yUjeV-6YVWnrQ6_uuuNb7dUTQoiPLJ9b8y5M,8903
126
+ xinference/model/llm/transformers/multimodal/qwen-omni.py,sha256=8qtBMU1jcXaEGo7sMIUpPVFy4IjdcaoeZitHtMX3PGc,8149
127
+ xinference/model/llm/transformers/multimodal/qwen2_audio.py,sha256=_T8rgg1U28PegijTMX3ycVm9m2xUMmB5yXPyCXNFYII,4678
128
+ xinference/model/llm/transformers/multimodal/qwen2_vl.py,sha256=45D95cxlJbw295cbZkN-20FxSiYxAarznqO0MK-_N4M,8541
133
129
  xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
134
- xinference/model/llm/vllm/core.py,sha256=4VxgW5_dADLxpLi9SxV-l_MXwWg6gPHE1urjyhLa04U,49287
130
+ xinference/model/llm/vllm/core.py,sha256=QwN8nkuHWAyl6ulsgBrOnvatrCb3OiCeC9VZyRRd9to,49527
135
131
  xinference/model/llm/vllm/distributed_executor.py,sha256=wxIjZ9-TAr6kHqQAHInY3ZWJsLuno_CU0lXl1xP3W6I,11735
136
132
  xinference/model/llm/vllm/utils.py,sha256=LKOmwfFRrlSecawxT-uE39tC2RQbf1UIiSH9Uz90X6w,1313
137
133
  xinference/model/llm/vllm/xavier/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
@@ -148,11 +144,11 @@ xinference/model/llm/vllm/xavier/transfer.py,sha256=2IbaiAhRnJMwa9qsMa5bowngqfjx
148
144
  xinference/model/llm/vllm/xavier/test/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
149
145
  xinference/model/llm/vllm/xavier/test/test_xavier.py,sha256=lSfo4caaLdWRh0diJ1jd_sY85GV-_9BT40ySs_nirJQ,4695
150
146
  xinference/model/rerank/__init__.py,sha256=yxxv4OOHCl3UUOLENP45Eghf_dEsRaCkUUcW5bth_NE,3141
151
- xinference/model/rerank/core.py,sha256=tKNKx8df8l4BIu77I4YFhx9l7bkFkcXEFx6rppRmXSM,14849
147
+ xinference/model/rerank/core.py,sha256=iGXYHRK2KR7Mc10_UIQbNS_T_zwwhbBBumSofjwQH5M,15033
152
148
  xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
153
149
  xinference/model/rerank/model_spec.json,sha256=xUuJgJ8Ad4l2v8gEHxAdF_xoaSkA8j8AX51LhrjGEA0,2005
154
150
  xinference/model/rerank/model_spec_modelscope.json,sha256=pf5hX4g0HdVjk2-ibHTl_mXHgQSSPYMTBOIwvnwMMkk,1616
155
- xinference/model/rerank/utils.py,sha256=MJAFL47G3r3zLVGXKoi0QLTgU3Xr4Ffv72Ipn--psew,713
151
+ xinference/model/rerank/utils.py,sha256=eLS78Fl_RiMAvXpBZHyl3ZfP2nFrgZXemFlmWttkSEs,1144
156
152
  xinference/model/video/__init__.py,sha256=K8zlxWsflB2vmIQgQJCttbudHvblKUSYkoBQcCZYO4k,1797
157
153
  xinference/model/video/core.py,sha256=jrBLq1MwB8rI0Mny8mvHlQ8N91uSC_O4tbkjbKHcWjc,6205
158
154
  xinference/model/video/diffusers.py,sha256=GKlntHkOYJD_QsQe50jS63CMz7UGn7ITn06tONUrn5s,12780
@@ -598,18 +594,6 @@ xinference/thirdparty/mlx/flux/t5.py,sha256=L_tclSkRtFDuBqVKMbKCp9N_40cj9kjjuanX
598
594
  xinference/thirdparty/mlx/flux/tokenizers.py,sha256=bWy-XYX3n84L9HXw18ay9uMKDevD7eZouNenHriT5pg,5470
599
595
  xinference/thirdparty/mlx/flux/trainer.py,sha256=Di_TGricvnInvAtX4uYMH9ZI_wXFZo4aghPJjnMueVk,3389
600
596
  xinference/thirdparty/mlx/flux/utils.py,sha256=mB_nO2oHMmsnD2vA-d3dwTU3TTdlnvJ3sLboA7bJ-0Q,5184
601
- xinference/thirdparty/omnilmm/LICENSE,sha256=WYLj56GZNvkMgbPWkCNpWlTFbbaeXKVEvUTrzw82stk,11337
602
- xinference/thirdparty/omnilmm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
603
- xinference/thirdparty/omnilmm/chat.py,sha256=oi0I-yVkvvnW_Vqj-iQzKaPUbGJ__EBn1we9AHlaGn4,6784
604
- xinference/thirdparty/omnilmm/constants.py,sha256=bq6C4oIANqwTtt5G7sjJUdRlLyTa-_urOHMJN7VBmU4,84
605
- xinference/thirdparty/omnilmm/conversation.py,sha256=m0lzft61Sw1Z4RxEpucweeQvV0PZEyrvh0mXL7Psh8I,13276
606
- xinference/thirdparty/omnilmm/utils.py,sha256=VUMXIgq1tx3qwDmS2VewsXra6XqCUArQB0ik0_qk7x0,3989
607
- xinference/thirdparty/omnilmm/model/__init__.py,sha256=CLYHL_fUqFqH7osJnRhVevBlnHaF06GBoNeYNRSmzq4,40
608
- xinference/thirdparty/omnilmm/model/omnilmm.py,sha256=5m7b-keWplZG1-_YfLqwgaSvuhMJROYTq7AqrEFBl60,23919
609
- xinference/thirdparty/omnilmm/model/resampler.py,sha256=a4zxggEqFDU-T-vE-6iUZ3Pr65qP5_D_DA59pj5F6pc,5202
610
- xinference/thirdparty/omnilmm/model/utils.py,sha256=u2ulK2vb-FgAoAPBPWEO8fb_owles1Uuh57LMrX2D-I,16467
611
- xinference/thirdparty/omnilmm/train/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
612
- xinference/thirdparty/omnilmm/train/train_utils.py,sha256=L4JtFWDKtdEcQYpGW-UV6GCswTqHkiskK3phM9J-xUM,5634
613
597
  xinference/thirdparty/whisper/__init__.py,sha256=NZaWcMHAfd_FFUed1OavzCHHIsKACyM1XsVR9Ngwgco,6901
614
598
  xinference/thirdparty/whisper/__main__.py,sha256=xRnVhsOmtjn2TlnS1v1rWRpn7Nc5-XJ0kpEfxM5NVFo,35
615
599
  xinference/thirdparty/whisper/audio.py,sha256=2TslvajXAWMHZPNI0wI9H2209OpeFwjVVu0rEdKwHfI,4932
@@ -630,14 +614,14 @@ xinference/thirdparty/whisper/normalizers/english.json,sha256=Zgf5SL6YJNLhsvoiI8
630
614
  xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc3yhvWzWuMhQzRnp2dM6IQdA,20868
631
615
  xinference/web/ui/package-lock.json,sha256=Q3gwsjjCFtDjVg5Yk7s4jfMAZ1wiyFfS_TJCw3ECB64,762407
632
616
  xinference/web/ui/package.json,sha256=iitsROb4-TLzxbOftXJqUGpp38TuPhzfLKy5n9THQYg,2081
633
- xinference/web/ui/build/asset-manifest.json,sha256=BCqyv0Yw9W6tkZgzgfowrAPyn0FMyCTw04uVw9-S4qY,453
617
+ xinference/web/ui/build/asset-manifest.json,sha256=6nuaz4gAo3N-YfoKXrFzAb5sWpIX8dUV_yAdQzxcC_A,453
634
618
  xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
635
- xinference/web/ui/build/index.html,sha256=WC1C6818TaoDCWF_XazygkYDr3abE9_1H4wkLSwyI1U,650
619
+ xinference/web/ui/build/index.html,sha256=GAy8oa9_fSiBG1G5PqiuT77BeURPFwSNWZoUi7DaB9E,650
636
620
  xinference/web/ui/build/static/css/main.337afe76.css,sha256=2gpwMegLjHVlFTO6g0bp9f1NPMbiycoZS0RKeQB25ko,5273
637
621
  xinference/web/ui/build/static/css/main.337afe76.css.map,sha256=qg8_Ykb0_Zo1QXgq3Vm0nMv01_AgL8hxxk84sFfqlg8,9920
638
- xinference/web/ui/build/static/js/main.ae579a97.js,sha256=5TFDB3UflE94zr0B5oHcqMFSFqBYSKHMcEEHVjV2FW4,1239783
639
- xinference/web/ui/build/static/js/main.ae579a97.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
640
- xinference/web/ui/build/static/js/main.ae579a97.js.map,sha256=ph-6CTWNhWAS3OMHuCu4BrcxAB3XCyUD2zpdJ4Jq2bM,5230012
622
+ xinference/web/ui/build/static/js/main.ddf9eaee.js,sha256=jjQByKWZSEec1kOens7zH14h3Akb63cFmqaft45sZmg,1241597
623
+ xinference/web/ui/build/static/js/main.ddf9eaee.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
624
+ xinference/web/ui/build/static/js/main.ddf9eaee.js.map,sha256=bKflyCcMeAJEbBdVtZx7kjFszu1Y-x36UKnPCmNJBjA,5235662
641
625
  xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
642
626
  xinference/web/ui/node_modules/.package-lock.json,sha256=2kL1sQ4ZuDQilki9DnRFFM8CxT13fyGl3chLK6i3DQY,760261
643
627
  xinference/web/ui/node_modules/.cache/babel-loader/00012b59e7dc64a18400bdddb660faa295258241c0b9cd15c78cdba63b858ed8.json,sha256=FhiSQ9MQv6bT7TkLBlXXskoaG2HCKhsuTXXlkDV-pM4,668
@@ -1557,6 +1541,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/12d9910498e04dc27f4dab7f101f2
1557
1541
  xinference/web/ui/node_modules/.cache/babel-loader/12da966f84472c881ea980bec44b2e1e7f8b3609a98dafe32e1155143e27389e.json,sha256=jE273ShkPRoV1X5DlreHnbXzHV78nbUwyYL_6RyqDD0,1140
1558
1542
  xinference/web/ui/node_modules/.cache/babel-loader/12e02ee790dbf57ead09a241a93bb5f893393aa36628ca741d44390e836a103f.json,sha256=4r0SOuZcNrN4YOatbgAKUKEsJQoXtvv25gNKU1S-Pvo,80373
1559
1543
  xinference/web/ui/node_modules/.cache/babel-loader/12e2171ec6f8c0ba2e6af95bf09fbdc6fb8d80bd4661ef95a555176c3bbb4c3a.json,sha256=wfkhMvhvaFkYfFDsimUk--86GdR2u_BbegRNcX4EzAo,1085
1544
+ xinference/web/ui/node_modules/.cache/babel-loader/12e637ed5fa9ca6491b03892b6949c03afd4960fe36ac25744488e7e1982aa19.json,sha256=hgWJy4BX7gYYLxbu3I_XreRXQktetHuj1zCwjbeymPY,39981
1560
1545
  xinference/web/ui/node_modules/.cache/babel-loader/12ecd49fd7bb3daf76f2827e7a5e83e95de15031a6b619b855d4955b7a8c59ad.json,sha256=cfHM4rcbpjtUUjoRaDJmajfYPvn0MskDxsE8t-1_PJA,1902
1561
1546
  xinference/web/ui/node_modules/.cache/babel-loader/12efca6ed9ec73bf07c46375e62cbc63c302cb4c4ff10a06b1d0f99314f7b3aa.json,sha256=DJDWAbnYdNF_eJ4CORn7K2UAtrpOzcdq_RxxxSIBZUo,1193
1562
1547
  xinference/web/ui/node_modules/.cache/babel-loader/12fd6ed6006d6b8b1390b68853450bcf7c7515550f5d7b3fa298f1004f5abb86.json,sha256=Z1WATGF-Kb3c7rbujoVbB9GlO0rSLgiQJmiXX5ICJDA,2332
@@ -2902,7 +2887,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/2fc189e202eae477881f2c10d59b1
2902
2887
  xinference/web/ui/node_modules/.cache/babel-loader/2fc8e4cdea909fdcb1ada0d21b488911edee695ed5ca0c18c876f0505451ee7a.json,sha256=VOdrB5mZjuySA7TEmXCoas-wUADB0B2EBPN6ZVIBwWo,1426
2903
2888
  xinference/web/ui/node_modules/.cache/babel-loader/2fd18d65da9fbb1a18fe819308c9daf1921acc644c53949c50770eb653a8c6fb.json,sha256=_bzUIw1Apuhz8Ylbh8c3mjMSMk8nQFuoU_3_S59sIpw,1598
2904
2889
  xinference/web/ui/node_modules/.cache/babel-loader/2fd8d435d25c6018b095eea3d6d4ad5e85f4b7b9f3b017d6b08b60e8bcc9cf8d.json,sha256=BIvru61ynUq4vbgtEnZynljG0kv0jmkL3Zqk6ulgztY,2618
2905
- xinference/web/ui/node_modules/.cache/babel-loader/2fdc61dcb6a9d1fbcb44be592d0e87d8c3f21297a7327559ef5345665f8343f7.json,sha256=lp668J986pSxK6fvKgBkALkdQ5ZUuYkLiO8ynmOH-Mo,6749
2906
2890
  xinference/web/ui/node_modules/.cache/babel-loader/2ff4f5a23fead4fb48c3bbf26d5369ae79e6de56e6251f3d9046d61fbcde02b7.json,sha256=0GqyXVYfvI8zFXnonK_4zIR7rowzRogdaGiykU7DkdM,1329
2907
2891
  xinference/web/ui/node_modules/.cache/babel-loader/2ff76ec00267b5b389d0908cfa950a64796d19bedccf6395601f3217e169b3b5.json,sha256=INkaAHK1A9DqQHC0_fIH5CL659opNm9Jega0u3dc3nU,2082
2908
2892
  xinference/web/ui/node_modules/.cache/babel-loader/2ffade481b2ea5baa4a13772d89d66ddb07b833293d2fa58a316a37ee1445437.json,sha256=RxTIGzl3HY3HsmlTiPPvixutt04_vcZEEf4XvRunqoQ,1049
@@ -3562,7 +3546,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/3d46cda78855b594d94dbe5af0d98
3562
3546
  xinference/web/ui/node_modules/.cache/babel-loader/3d4892f4c02bac7d3c66b3d3ea58b3692f4b7a93adacb692f29ffbcefaa8ba6b.json,sha256=EVA86-fTVjJ3gqmjAbGS-w33HBs96nKZUnTrji5WgIk,1788
3563
3547
  xinference/web/ui/node_modules/.cache/babel-loader/3d4c55fb485a06c859383e364c9caf093a827a8dea74c9c6edf0160a1847eb7c.json,sha256=NuGr3nRXp2kE-bOUuR6_3fgeMtH81J1ZENCkUG9bhqU,1258
3564
3548
  xinference/web/ui/node_modules/.cache/babel-loader/3d5044cf335b17b846e340f72f4f8f088c54a891b56ef999f33a36a7249a2cc9.json,sha256=Pt0SV2qFtrlzxwzKlmXPcxC1ttlxY3zFVlY-QcHt-L0,1307
3565
- xinference/web/ui/node_modules/.cache/babel-loader/3d596a3e8dd6430d7ce81d164e32c31f8d47cfa5f725c328a298754d78563e14.json,sha256=zryG1uM9xUx1Bj-2dMW4AwkbVpD8J_j-ZKuXnQkJA7A,238499
3566
3549
  xinference/web/ui/node_modules/.cache/babel-loader/3d59eeb9e8f1da165bb38cc6eb60c9050c7b9d729e21d3f1f9e214dc44099af2.json,sha256=IGLSliUPB_qzqHlz7tRclhQCM8_U8SkwEzBrasv7dsE,1252
3567
3550
  xinference/web/ui/node_modules/.cache/babel-loader/3d627879fcf67b5e23905e9795d157dac39ba8cc02977e1e29c317dd54ffb803.json,sha256=8DqHl5-th3qDpAvAvxXw7UA7IbK5xi1BvGM5ZmXm9qY,1943
3568
3551
  xinference/web/ui/node_modules/.cache/babel-loader/3d645dabc20e9ed970ded1a707fb81dcac29f998ba708da9325b6d321a87a331.json,sha256=LRO7ONCteecctdWw83bAPg67oRzPqMWrKb-q2SK2JOM,2367
@@ -4744,6 +4727,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/566e8fac5b2279b99ba21e33ca7a5
4744
4727
  xinference/web/ui/node_modules/.cache/babel-loader/5672780e148a6bddcccd0fb89ff5b7f203df617a371ea79393a301cb2d7e9b28.json,sha256=QiRsaLHZ1EMQpHLd5Owx4CKpMCuZlnnPQKwwBlObQ64,1452
4745
4728
  xinference/web/ui/node_modules/.cache/babel-loader/567b48eeb1d12eb5d29131fe737cd895a77dcdfcbe35bdcb8e56c16aecf40c88.json,sha256=JZyETHZlkrOx19MTDJYQwwIAHECCoBtUeuXKHQlpB9E,1905
4746
4729
  xinference/web/ui/node_modules/.cache/babel-loader/567d2b3c840854644fb0b904be56647807a9cab2d3810a9c1d28232ed5467bb5.json,sha256=QdWa-L57C52UxF8_rOYlidhrTmPokH6DCxTK1zWvMOE,1703
4730
+ xinference/web/ui/node_modules/.cache/babel-loader/567e49df411efb24425d289bb484758cb57067ca54f8b5c67fe4505f698deb96.json,sha256=i3R7EsGf3lqhX20SlFBzyccuCnqa5dnZvkHsfXubtUs,17748
4747
4731
  xinference/web/ui/node_modules/.cache/babel-loader/56854c4b226cc888d6363523ae8d388098e038f25b67940b6c37097b7c7d23c6.json,sha256=L-YdvUexxCoQcABXfjcWIrVQ4qG6MT1-27a3Y7m02Y0,1467
4748
4732
  xinference/web/ui/node_modules/.cache/babel-loader/568d4dcb60cf7f4bdafd004fc0afecee2374efe38121a85a8ef694df4f54b218.json,sha256=akQXyREMFvL7MJtTBA91lB6v5jUDXtneOP20knFlnRo,2516
4749
4733
  xinference/web/ui/node_modules/.cache/babel-loader/56955587f8d10037971b1e32b71f2f8f47478df2d61d918cf1067256a27754d5.json,sha256=78JiyWk3aRFsBejH7e5nu4xJs0ixnqA6zoeJegKF6s4,1447
@@ -5011,7 +4995,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/5bfb820f69dfc04a4993b7090bf47
5011
4995
  xinference/web/ui/node_modules/.cache/babel-loader/5c00283a6fbb0e6ae22b666ccb37c986a6b269bbc1cbe962d6f40a5df75b11af.json,sha256=etGzllHfNXIWGoIlAtS53yvp0PCiTnKR1TOKv3iSN-o,1556
5012
4996
  xinference/web/ui/node_modules/.cache/babel-loader/5c05e11fc5a7475ebd3427f20a7a2feb7f42ddbb1f48a13f3a236a1dcaf00831.json,sha256=aahh_1EGeWSqVOLU2iwybu72Id8SpozpkG6n0VvAzu8,1603
5013
4997
  xinference/web/ui/node_modules/.cache/babel-loader/5c07a46affaa31bbea5d19eecfcbd656af5ce9dd7c7a3a9a8384d7210d21c180.json,sha256=OSRP5iAGwyuzJTk4PiCSAOjprgXzvxFOJwRRsAVDeD4,1364
5014
- xinference/web/ui/node_modules/.cache/babel-loader/5c08e2cd07809ed3e41486b16652253404cbb63a3ff8d0366ee50f57e2413cea.json,sha256=soGI3_kUtbGbV6t8TG3Nug3wTll-Xahi9ZdzISsLHgM,17191
5015
4998
  xinference/web/ui/node_modules/.cache/babel-loader/5c0c94a8c5ea216f513701ff66bb717096e4f08c9d1133dc8c04f6fe0a86027e.json,sha256=BNXhy34ndO0Q6RhD42JWc3D6T6nOwCB225uoYQI4o0I,1383
5016
4999
  xinference/web/ui/node_modules/.cache/babel-loader/5c0fb1d13fcafcaec0933fd52e295a6ee59c67a5f5b5bfce9276693b16613c1e.json,sha256=KP_hG3aOfeEMKc13RwvxFedXKcwhrqy_neaa359gH6g,1074
5017
5000
  xinference/web/ui/node_modules/.cache/babel-loader/5c2307007caf7113727f4d99aed80bfd4c88a7398598b3acc25753471cf03046.json,sha256=iAo5B4KaBge4vDxXgvw2ge5aiRsVJXut41j9rDjCvrk,1161
@@ -6308,6 +6291,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/7791a7694e2c1396f7737c7253507
6308
6291
  xinference/web/ui/node_modules/.cache/babel-loader/7794f7cefee8fc6af99d1cd5b89bd75f02b6e3ca1c9bab57e9e68382ab51d85a.json,sha256=gGs3be8jIl_j4wf1BoxqNLi9xFwrloImFtfrQhSIFdI,991
6309
6292
  xinference/web/ui/node_modules/.cache/babel-loader/77992d1ebf5aa51abc4fb18b21ad653dd04688b3bebe809f2c24b10762bb102b.json,sha256=FKwKmPIHhJIenn_hD4GKbXBH_7Oc0JWNvMp_go7os6E,1377
6310
6293
  xinference/web/ui/node_modules/.cache/babel-loader/77a3f24262c9b2499b7c21b78707e17a2abf55879bac2347839afbb05d78f0f6.json,sha256=3X-aj7UYjFzdkCCEBev11QjnjEUwwpVGa3_3u6-g5jQ,955
6294
+ xinference/web/ui/node_modules/.cache/babel-loader/77ac2665a784e99501ae95d32ef5937837a0439a47e965d291b38e99cb619f5b.json,sha256=zcPqr05eENrYA7OA-BsPQ6q_JD4f9T63zrOzmhU_h9o,6836
6311
6295
  xinference/web/ui/node_modules/.cache/babel-loader/77ade097d6cf2a9d102d93853c65b3777c5a79e7f74b7674b2f0b6a94ae6460c.json,sha256=pX5nwRWcxhcMQagCcEN3Gc0URXL8LLodEsD7se9dSt0,1695
6312
6296
  xinference/web/ui/node_modules/.cache/babel-loader/77af8572e3869ee486c6691a109d8a5f1ba4819f7c5a54b49eaa732bcc1c1684.json,sha256=7Kqesspl57R_ZS7nXB_s41_paAQA2URx9X4OppRYo44,1258
6313
6297
  xinference/web/ui/node_modules/.cache/babel-loader/77b106bfdc081b40e6dc5dacd76b29a6168a5872adec93a26ebfc8ecb2495e33.json,sha256=7eI_VQMOFpwE71rDsiKsEP5887VHcfvxbjXr4ONRGT8,1095
@@ -6950,7 +6934,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/84620c70172ef6d9dda1ff8c37859
6950
6934
  xinference/web/ui/node_modules/.cache/babel-loader/846828992047b539dc44d65dc88d06d45f4f25e60fa65c5815b840e1f95a5610.json,sha256=NytuV8Al9lZSLUVWYbzR3e90MJ15MHosrK82PIx_dfg,1073
6951
6935
  xinference/web/ui/node_modules/.cache/babel-loader/8469e42a6f8d93fcf2176af8b5145b1cfdd6a0b8b96d301c27fd9a7e56aec812.json,sha256=4k24EcgXcOjP0HrjGm_TDowDs3RzAqwprqhv0n4EDH0,1413
6952
6936
  xinference/web/ui/node_modules/.cache/babel-loader/846cfc4c2c91a5d98523b5dcae87829da0c9b20c304aa29ec0ab41a798419509.json,sha256=xTDeuiNbi97a6I9utMEgJQbHcC_QfYSl-Gu9OysYpzA,1305
6953
- xinference/web/ui/node_modules/.cache/babel-loader/8472e58a31720892d534f3febda31f746b25ec4aa60787eef34217b074e67965.json,sha256=wa6BrowvTHPAjRGRUqBQy07I4Prt-KgjkJYMOs6qcCI,39773
6954
6937
  xinference/web/ui/node_modules/.cache/babel-loader/8477a9a6b340f5b3b8388b526f57ff0fbfdbfbce7c14a0f88ec03b014bbf535e.json,sha256=HMC3fe4KzXkLRWI8CiszigsRZjAxGJ32loxo7MMnNUs,1465
6955
6938
  xinference/web/ui/node_modules/.cache/babel-loader/847c21791b961b79acbd5221ad11c3044b6b82dd6d0577e30b67586e312f0c04.json,sha256=y8o3k1j7Rnli_oHmuG3WD256tVe4bWNNwHFpDNh9FcM,1500
6956
6939
  xinference/web/ui/node_modules/.cache/babel-loader/848420a85c5edebcbc50a27d6e8ebf83410ef6a64d35a82e89c34397a036d694.json,sha256=N-n6thqWZqy0g8Fi3jNdXU4tY1waHlRZPaPGlOgg4Ko,3702
@@ -10801,6 +10784,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/d4c349478b310cdd73d6266ff80c3
10801
10784
  xinference/web/ui/node_modules/.cache/babel-loader/d4c98f0bbda372ae967f09be6f47d3a4026d97ade4f22c6cbb98b4f4f7e40590.json,sha256=Bjy57VDT1cx4EkORCyEqLbrn3fd5aEqfzOa6JafKR8c,2250
10802
10785
  xinference/web/ui/node_modules/.cache/babel-loader/d4cc27c8dac7a6374f85a187e3a2378a81840edb433a87dfa5cda2725dbf04c0.json,sha256=8GxLQINBQL-YumutGe21PoFk_xTnGJdB5WPlHgs3yVo,1036
10803
10786
  xinference/web/ui/node_modules/.cache/babel-loader/d4d61a537c45c4506a6b7e3478206b71dc96e0c6c6410cef9b5d2f47018bc578.json,sha256=T-dHLL1EpIt82sRujiv5OInlCDt6h71VXYmsbk45PHM,411
10787
+ xinference/web/ui/node_modules/.cache/babel-loader/d4ed4e82bfe69915999ec83f5feaa4301c75ecc6bdf1c78f2d03e4671ecbefc8.json,sha256=E8mdqDC6SJpMxgs0r_1XmgPFCaMrhqxMqeNdqL-BWMc,247134
10804
10788
  xinference/web/ui/node_modules/.cache/babel-loader/d4f81b94b15ddb008997a41b136ca6e2d5b3d753863a8d52d22de4a5d25cf8aa.json,sha256=JIu5gZOXaZtfLCpqYeHB4-jLtWOixTKaHSpmjD7-H00,1397
10805
10789
  xinference/web/ui/node_modules/.cache/babel-loader/d4f8f9cc5b049595da9a6aa31c46e20e4699f48f100f84ceae14d4311fb34328.json,sha256=eBHBNNKPuRwIt4Kx8L2FM51vMkKkzeB3B1MuwL70CAs,1368
10806
10790
  xinference/web/ui/node_modules/.cache/babel-loader/d4fd09806da5a09cd61f54d6e74efc984af4f8a86ca8cd1cbcf558bbbbcb4238.json,sha256=xb1bMCpMKmfDB5OziPAbpWmb8ek2Bg3qlMRIOf5bFOI,1171
@@ -15783,11 +15767,11 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
15783
15767
  xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
15784
15768
  xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
15785
15769
  xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
15786
- xinference/web/ui/src/locales/en.json,sha256=ue1A_MrBJs6kxQkCDajqQoiZAozS41zNq5Us-KhdI2A,9181
15787
- xinference/web/ui/src/locales/zh.json,sha256=cz-vYznol3gMRIJxSMdFJQeqSiNMelBum5dn6f06ISA,8882
15788
- xinference-1.6.0.post1.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15789
- xinference-1.6.0.post1.dist-info/METADATA,sha256=5slGQ89B1lpuzn1HwEZEvfP03Hdb9Z75ZiGpWOxxZlc,25984
15790
- xinference-1.6.0.post1.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
15791
- xinference-1.6.0.post1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15792
- xinference-1.6.0.post1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15793
- xinference-1.6.0.post1.dist-info/RECORD,,
15770
+ xinference/web/ui/src/locales/en.json,sha256=4qdxsFKfPrqvQq87_K94ncvTu7POaVp9lq_OoNzMTqo,9311
15771
+ xinference/web/ui/src/locales/zh.json,sha256=cTo9VHSvnvaTbSJpJ0WAk_VdQ3oXX0ej9GDUwJXNuEE,9015
15772
+ xinference-1.6.1.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15773
+ xinference-1.6.1.dist-info/METADATA,sha256=HVKaDpvhX-6VHxkrT7bijVXyjAelf0UkXAP4tRNasEU,26094
15774
+ xinference-1.6.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
15775
+ xinference-1.6.1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15776
+ xinference-1.6.1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15777
+ xinference-1.6.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.7.1)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5