xinference 1.3.1.post1__py3-none-any.whl → 1.4.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 (75) hide show
  1. xinference/_compat.py +1 -0
  2. xinference/_version.py +3 -3
  3. xinference/api/restful_api.py +4 -0
  4. xinference/core/chat_interface.py +1 -1
  5. xinference/core/model.py +23 -3
  6. xinference/core/supervisor.py +6 -0
  7. xinference/core/worker.py +54 -11
  8. xinference/model/llm/__init__.py +7 -2
  9. xinference/model/llm/core.py +1 -0
  10. xinference/model/llm/llama_cpp/core.py +50 -15
  11. xinference/model/llm/llm_family.json +388 -13
  12. xinference/model/llm/llm_family_modelscope.json +373 -14
  13. xinference/model/llm/mlx/core.py +15 -11
  14. xinference/model/llm/reasoning_parser.py +17 -9
  15. xinference/model/llm/sglang/core.py +112 -12
  16. xinference/model/llm/transformers/core.py +4 -2
  17. xinference/model/llm/transformers/deepseek_vl.py +1 -1
  18. xinference/model/llm/transformers/deepseek_vl2.py +287 -0
  19. xinference/model/llm/transformers/gemma3.py +185 -0
  20. xinference/model/llm/transformers/intern_vl.py +0 -2
  21. xinference/model/llm/utils.py +62 -42
  22. xinference/model/llm/vllm/core.py +157 -11
  23. xinference/model/llm/vllm/distributed_executor.py +314 -0
  24. xinference/model/rerank/core.py +16 -11
  25. xinference/thirdparty/deepseek_vl2/__init__.py +31 -0
  26. xinference/thirdparty/deepseek_vl2/models/__init__.py +26 -0
  27. xinference/thirdparty/deepseek_vl2/models/configuration_deepseek.py +210 -0
  28. xinference/thirdparty/deepseek_vl2/models/conversation.py +310 -0
  29. xinference/thirdparty/deepseek_vl2/models/modeling_deepseek.py +1975 -0
  30. xinference/thirdparty/deepseek_vl2/models/modeling_deepseek_vl_v2.py +697 -0
  31. xinference/thirdparty/deepseek_vl2/models/processing_deepseek_vl_v2.py +675 -0
  32. xinference/thirdparty/deepseek_vl2/models/siglip_vit.py +661 -0
  33. xinference/thirdparty/deepseek_vl2/serve/__init__.py +0 -0
  34. xinference/thirdparty/deepseek_vl2/serve/app_modules/__init__.py +0 -0
  35. xinference/thirdparty/deepseek_vl2/serve/app_modules/gradio_utils.py +83 -0
  36. xinference/thirdparty/deepseek_vl2/serve/app_modules/overwrites.py +81 -0
  37. xinference/thirdparty/deepseek_vl2/serve/app_modules/presets.py +115 -0
  38. xinference/thirdparty/deepseek_vl2/serve/app_modules/utils.py +333 -0
  39. xinference/thirdparty/deepseek_vl2/serve/assets/Kelpy-Codos.js +100 -0
  40. xinference/thirdparty/deepseek_vl2/serve/assets/avatar.png +0 -0
  41. xinference/thirdparty/deepseek_vl2/serve/assets/custom.css +355 -0
  42. xinference/thirdparty/deepseek_vl2/serve/assets/custom.js +22 -0
  43. xinference/thirdparty/deepseek_vl2/serve/assets/favicon.ico +0 -0
  44. xinference/thirdparty/deepseek_vl2/serve/assets/simsun.ttc +0 -0
  45. xinference/thirdparty/deepseek_vl2/serve/inference.py +197 -0
  46. xinference/thirdparty/deepseek_vl2/utils/__init__.py +18 -0
  47. xinference/thirdparty/deepseek_vl2/utils/io.py +80 -0
  48. xinference/types.py +2 -2
  49. xinference/web/ui/build/asset-manifest.json +6 -6
  50. xinference/web/ui/build/index.html +1 -1
  51. xinference/web/ui/build/static/css/main.b494ae7e.css +2 -0
  52. xinference/web/ui/build/static/css/main.b494ae7e.css.map +1 -0
  53. xinference/web/ui/build/static/js/main.5ca4eea1.js +3 -0
  54. xinference/web/ui/build/static/js/main.5ca4eea1.js.map +1 -0
  55. xinference/web/ui/node_modules/.cache/babel-loader/0f0967acaec5df1d45b80010949c258d64297ebbb0f44b8bb3afcbd45c6f0ec4.json +1 -0
  56. xinference/web/ui/node_modules/.cache/babel-loader/68249645124f37d01eef83b1d897e751f895bea919b6fb466f907c1f87cebc84.json +1 -0
  57. xinference/web/ui/node_modules/.cache/babel-loader/cc97b49285d7717c63374766c789141a4329a04582ab32756d7e0e614d4c5c7f.json +1 -0
  58. xinference/web/ui/node_modules/.cache/babel-loader/f199e8173f6409a5802ed44acb95f218388131136504b2e9132129e150c92f9a.json +1 -0
  59. xinference/web/ui/src/locales/en.json +2 -2
  60. xinference/web/ui/src/locales/zh.json +1 -1
  61. {xinference-1.3.1.post1.dist-info → xinference-1.4.1.dist-info}/METADATA +4 -4
  62. {xinference-1.3.1.post1.dist-info → xinference-1.4.1.dist-info}/RECORD +67 -41
  63. xinference/web/ui/build/static/css/main.f8177338.css +0 -2
  64. xinference/web/ui/build/static/css/main.f8177338.css.map +0 -1
  65. xinference/web/ui/build/static/js/main.55b70cb7.js +0 -3
  66. xinference/web/ui/build/static/js/main.55b70cb7.js.map +0 -1
  67. xinference/web/ui/node_modules/.cache/babel-loader/2deac8d5636974533e3714f34e94fc754f9153a07c6ee11e72846cb8eae47e4b.json +0 -1
  68. xinference/web/ui/node_modules/.cache/babel-loader/db16a983bc08a05f0439cc61ca0840e49e1d8400eef678909f16c032a418a3d6.json +0 -1
  69. xinference/web/ui/node_modules/.cache/babel-loader/e23d476fcbf6fd69c8986bf82133d257d28aa8fc9a5cab231d81c1c75c58cd99.json +0 -1
  70. xinference/web/ui/node_modules/.cache/babel-loader/e7a8c37fda8725cab69c7ef8c627060bd7fc806adc67e00fe628ba148cb86d7f.json +0 -1
  71. /xinference/web/ui/build/static/js/{main.55b70cb7.js.LICENSE.txt → main.5ca4eea1.js.LICENSE.txt} +0 -0
  72. {xinference-1.3.1.post1.dist-info → xinference-1.4.1.dist-info}/LICENSE +0 -0
  73. {xinference-1.3.1.post1.dist-info → xinference-1.4.1.dist-info}/WHEEL +0 -0
  74. {xinference-1.3.1.post1.dist-info → xinference-1.4.1.dist-info}/entry_points.txt +0 -0
  75. {xinference-1.3.1.post1.dist-info → xinference-1.4.1.dist-info}/top_level.txt +0 -0
@@ -1,15 +1,15 @@
1
1
  xinference/__init__.py,sha256=nmTTrYbIpj964ZF6ojtgOM7E85JBOj1EyQbmYjbj1jw,915
2
- xinference/_compat.py,sha256=URSJQLXrcsTO9B_4x0wVDPijYQDhuVJmZ95npID560w,4197
3
- xinference/_version.py,sha256=qMz600g9USAjrV1nTxM3bBcpOiTBWs1VJPEtdMggVGg,503
2
+ xinference/_compat.py,sha256=YF-lS6tX06zkFi2oFS0yq_LBn4hX_8u0Ft0vKxGALwA,4238
3
+ xinference/_version.py,sha256=UhgtSU4lzPem1tUQM-aNbfXqJQmmE6BBf2PpKgsMVS8,497
4
4
  xinference/conftest.py,sha256=ZB7li77s4_H4ZEQpDo2PX-b4zrs8-bIpvh59P_CaSoo,9691
5
5
  xinference/constants.py,sha256=mEW4HDzjXtDXN61Mt6TtJrJ4ljbB6VUkh97e3oDbNx4,3905
6
6
  xinference/device_utils.py,sha256=ELsqvnjvz9wYthTyQFzKSV4mZsaASz6hj_IsfMmfMWc,4447
7
7
  xinference/fields.py,sha256=0UtBFaDNzn1n9MRjyTkNrolsIML-TpZfudWOejqjni8,5245
8
8
  xinference/isolation.py,sha256=gTU1em5fxg1m-7hxieWBMZvVkXZX4GZYmeT7XxXsYrU,2699
9
- xinference/types.py,sha256=4mmuCVRx2BuciB4kQoot6Z-yw3ixa7GITM1M_75yeGQ,13291
9
+ xinference/types.py,sha256=fhz2qO_CzOu9_w_pT0D1lPL_mkx_2HVC5f1X0yZiWr4,13317
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=GENX8AMUFxHjhImCIZYorxYonGOixzHhuQBLOsB7orI,92774
12
+ xinference/api/restful_api.py,sha256=Py9e0rkKJ_NMSVg3SoTdvK2tkZ6ftvzJi4wiKosif90,92925
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
@@ -21,18 +21,18 @@ xinference/client/restful/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7
21
21
  xinference/client/restful/restful_client.py,sha256=DofFF0ZaOmBpCVp9qtAeYDGbvd-KS5u4_GMGp8AbbM4,53994
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=X5ZC91M_uKIG8NW1xupKUDNoqzUHMpLp4-ijf-YhjbE,21766
24
+ xinference/core/chat_interface.py,sha256=0w5CoMyCp0gWUoGmLrjlPQMwMtHD-Zbu4jhUYuHYSBs,21794
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=8JMm_h-d6Zl1qHcqh9pcHHnAGuKE9DhsLzN0UV6R7rc,44225
28
+ xinference/core/model.py,sha256=3lAex-DZLnsJcggY3Pgb_06_ZvhQR8r80MsauTyAoYE,45164
29
29
  xinference/core/progress_tracker.py,sha256=LIF6CLIlnEoSBkuDCraJktDOzZ31mQ4HOo6EVr3KpQM,6453
30
30
  xinference/core/resource.py,sha256=aTV89dmuKxw5JnwQglRkA2Wxu1EBLM5WjmLxITSXYgs,1808
31
31
  xinference/core/scheduler.py,sha256=0rbbaVYQ4g2W8P3tbbHonmFjFkllmoPB3OtkVPr5crA,15650
32
32
  xinference/core/status_guard.py,sha256=VLhyqpobdclfyzcROqf4bmGDiKpuHllto316X3Z6Hrc,2860
33
- xinference/core/supervisor.py,sha256=JgfEY7LkP9m48abukMXKBumEqeV9Q-IImSAJjk6YslE,69304
33
+ xinference/core/supervisor.py,sha256=8qJacawaf8NCpI3WrsNaIyR6YFHge0mFG7O9Kgt1wvU,69648
34
34
  xinference/core/utils.py,sha256=TpUHNFcA4pEXq084Quz-ilIccuDMUAsdLrEJxj0Zn6I,10414
35
- xinference/core/worker.py,sha256=M16ixEI0y9DzsyqpTLiYNhYbAxUFvM0GgnTpyh7iLZU,51749
35
+ xinference/core/worker.py,sha256=p22jF1NPhrTQeqC65ncOqqa7ak5OrT11esqSkmL4JNk,53750
36
36
  xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
37
37
  xinference/deploy/cmdline.py,sha256=fOuD4HixyI6VuuVO7XJ-0_C3JutDe1sv4MwVjZPluS8,49338
38
38
  xinference/deploy/local.py,sha256=sO3BcpEH9oCF87CxWVA4AXAYcfHGnrcop40ew5NOA2g,3979
@@ -86,36 +86,38 @@ xinference/model/image/scheduler/flux.py,sha256=GHlpPfU5UxsiQWNyvNe9SaVZceNg_2Ci
86
86
  xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
87
87
  xinference/model/image/stable_diffusion/core.py,sha256=V3BaASwx8q1YERb4jhhaYEDFiwh3BuPAz8pVZTuktAQ,24717
88
88
  xinference/model/image/stable_diffusion/mlx.py,sha256=GZsozzGB04NfHAdU9MI6gwWE1t_A-s_Ddn_ic8DlkKQ,7476
89
- xinference/model/llm/__init__.py,sha256=UJOSz9zr5mAj8Fm09yoZbEe4xBWYnSxUV9aGE50e5dc,14184
90
- xinference/model/llm/core.py,sha256=2AYRKdiJ5L1iKU9CE_C09IbEtE2KrsIy4dqkqg2txes,8626
91
- xinference/model/llm/llm_family.json,sha256=xszAQbwI5lvkdcxRSoowNddvPfuFF2aT6xnvzeyzo8w,374447
89
+ xinference/model/llm/__init__.py,sha256=gM2a4VJFssAZhfIwf1K5J63j91FFwGcXu4k9VZcvhV8,14456
90
+ xinference/model/llm/core.py,sha256=b9J7U0binlneKfLEbtmfe2YCcukgXlaF32BzHGr-RPA,8673
91
+ xinference/model/llm/llm_family.json,sha256=gkh3CGm15HTTvsXs1AaZOxBiFZ_T-9RlivNNJ34O04s,388247
92
92
  xinference/model/llm/llm_family.py,sha256=SrgTmEKspAELhVqmMs7Rz6xUk7rmc9V61urvbWAZOVE,39214
93
93
  xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
94
- xinference/model/llm/llm_family_modelscope.json,sha256=2OuPertAGKnryliUofjnqemLrhHW1aaq6-4tPsrbKNI,304592
94
+ xinference/model/llm/llm_family_modelscope.json,sha256=8t1Ho01TUXjfTPu30xPe-_Hgq-brSmkKBHPyz68mVTA,318442
95
95
  xinference/model/llm/llm_family_openmind_hub.json,sha256=jl9pfbe5DztoxgEwKBxDk1Wd7TziTiJ48_Ie_lJdYjA,67872
96
96
  xinference/model/llm/memory.py,sha256=GLNmXBI-AtMbuaJfEf50fnhN4rdbOZjLyT6L_Vjqa5g,10206
97
- xinference/model/llm/reasoning_parser.py,sha256=Gqf2WS5olkD2SfJ3wlCAQsmQUZOIc1185h_01pIs7TQ,6067
98
- xinference/model/llm/utils.py,sha256=QYYGfaPYr3GG7dyowNgs4qyayid-gOtJ_ToXqAMVhSU,32846
97
+ xinference/model/llm/reasoning_parser.py,sha256=Vms1G8I_ujakATjMxBbnWt0e-Zuky86HBqu05T1KiCU,6386
98
+ xinference/model/llm/utils.py,sha256=tHY7a2hwn_IA7CbPLv2O4gFeNb3MLlrlv2ws8tPrly0,33681
99
99
  xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
100
- xinference/model/llm/llama_cpp/core.py,sha256=rUVyaP5tE6xz9jy0m4iZ0ys99vl3sicnWZsEnbaXPfw,21181
100
+ xinference/model/llm/llama_cpp/core.py,sha256=H6tMpMr8F4nCQrR9ZW1hMRSvhWr9I-duX2yJo0lCuHw,22530
101
101
  xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
102
102
  xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc3ua8yPTI,19835
103
103
  xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
104
- xinference/model/llm/mlx/core.py,sha256=l4_MKw5UckM81kaCwgriy0KZU3zPN38p36P3J9USmgA,23568
104
+ xinference/model/llm/mlx/core.py,sha256=20jbCxsKoUqdUOU54PzmoKkplIkHSEJ9XXIwh9gh7YM,23722
105
105
  xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
106
- xinference/model/llm/sglang/core.py,sha256=tMbvQOwQu5uBXBTMK5Vh-FR2Gc-Nbc0HIhp2iy47wCA,20606
106
+ xinference/model/llm/sglang/core.py,sha256=NuwUIz-u3F6LRcB_DIn173jRbzJG8L-0E8ROqxEQoPM,24152
107
107
  xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
108
108
  xinference/model/llm/transformers/chatglm.py,sha256=pIBPhR4cpeOR6ok5dKPK1633M1RMHCzrxB2fpDRaCuY,22426
109
109
  xinference/model/llm/transformers/cogagent.py,sha256=JbIiqVW-S9MA3d4CN2DlI7-WDB_nuCbX8JSypR5TmVU,10080
110
110
  xinference/model/llm/transformers/cogvlm2.py,sha256=I5Ftm0VYjbTAv5ZARZCo32Ggpw58PJfHs5B_nX_BIlU,15972
111
111
  xinference/model/llm/transformers/cogvlm2_video.py,sha256=ZGkpC4x2uEtjwoMrLSODmAUYTjOeSNYxZi9VpQrpnhU,11857
112
112
  xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
113
- xinference/model/llm/transformers/core.py,sha256=4-dtT7QdZW1yf_tzCScYaixU0qIHEe8YrSm_b73Z46s,29071
113
+ xinference/model/llm/transformers/core.py,sha256=Ko1KyQiKGwVtK_XBUH70YiM72hVatSZmmfTzf_kILCA,29055
114
114
  xinference/model/llm/transformers/deepseek_v2.py,sha256=-RKlI3mhja730md4evQ2vfIxBnZD5vWyrgmg_3eovms,4096
115
- xinference/model/llm/transformers/deepseek_vl.py,sha256=pB6i6DW5oyfHdqTgKpi2DkIKVGlPLGIDR_Op0sB1uKA,10445
115
+ xinference/model/llm/transformers/deepseek_vl.py,sha256=efbuqo5hKPZOVdiWkl2DXPd0Ml9bIAatcJNFVOeZSjQ,10453
116
+ xinference/model/llm/transformers/deepseek_vl2.py,sha256=2rgHBH9P_N0pMe17SeC7Ga_OATNYhdnZ64-VLNpRfWI,10990
117
+ xinference/model/llm/transformers/gemma3.py,sha256=LIfVNpiFDVNswftrziDIasOJNXQy1hf2JLSoXgDjiNE,6121
116
118
  xinference/model/llm/transformers/glm4v.py,sha256=goph2HhpV8gUm2t8-T1P-jTF2r_kPeH6QNe64lmlm0g,13871
117
119
  xinference/model/llm/transformers/glm_edge_v.py,sha256=sedHB4iRd37UC__1MeXs33NLMQQKFYBIFf3A71rMEZU,8159
118
- xinference/model/llm/transformers/intern_vl.py,sha256=N3-wKrW076Ik0oRUNpHIIXIZxHmPJ6f4KVUcpDLfCdQ,18792
120
+ xinference/model/llm/transformers/intern_vl.py,sha256=taeq1WEupmpOWCBbsZhP-1cyJB4eEsyHTWNJdUzRgWk,18714
119
121
  xinference/model/llm/transformers/internlm2.py,sha256=3mjRgqU0RgCFF0F46ieVH0NO2JCKGsQkmkoVlWJrh8E,3221
120
122
  xinference/model/llm/transformers/minicpmv25.py,sha256=mr80-OlSlK_opSuAO3cz_QlkqujLr6V-OsTP0ebwpE8,6814
121
123
  xinference/model/llm/transformers/minicpmv26.py,sha256=_e2C4vmyKIzKt7S7AvKgiqhDOhGiBXa6Xoiix4UaYtI,13440
@@ -128,7 +130,8 @@ xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjD
128
130
  xinference/model/llm/transformers/utils.py,sha256=KETjuVR_RpF--fno0KxT068fD1v4REFhe-0wy_sCwRs,19584
129
131
  xinference/model/llm/transformers/yi_vl.py,sha256=iCdRLw-wizbU-qXXc8CT4DhC0Pt-uYg0vFwXEhAZjQg,8961
130
132
  xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
131
- xinference/model/llm/vllm/core.py,sha256=j5sdlrctBnouLJAfBs0Ofa1JbngTlYsDzrs2ManQN0o,38261
133
+ xinference/model/llm/vllm/core.py,sha256=99G5FloDMj2NnIWmS1Dp4TH6SxdsbZJrGxBmBM2bJsA,44297
134
+ xinference/model/llm/vllm/distributed_executor.py,sha256=G4jSm8gRFKn7s32lFDhxm1nOrMIspCMtPo2z_4PvkVI,11488
132
135
  xinference/model/llm/vllm/utils.py,sha256=LKOmwfFRrlSecawxT-uE39tC2RQbf1UIiSH9Uz90X6w,1313
133
136
  xinference/model/llm/vllm/xavier/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
134
137
  xinference/model/llm/vllm/xavier/allocator.py,sha256=SJ2eCOxF6CWTBZIP39FRxeK6fxIE8pRshOPnSRc72d4,2691
@@ -144,7 +147,7 @@ xinference/model/llm/vllm/xavier/transfer.py,sha256=2IbaiAhRnJMwa9qsMa5bowngqfjx
144
147
  xinference/model/llm/vllm/xavier/test/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
145
148
  xinference/model/llm/vllm/xavier/test/test_xavier.py,sha256=E7MDGTeGJMaULoIKez6lt2Vhz0w6FJlPyAELUjE0Chw,4890
146
149
  xinference/model/rerank/__init__.py,sha256=wRpf1bOMfmAsuEKEGczMTB5fWEvuqltlJbIbRb-x8Ko,3483
147
- xinference/model/rerank/core.py,sha256=e-QoFgVk-6LOQPM5zqbEj095J-1bkuyd9c5zRI5DlF8,14560
150
+ xinference/model/rerank/core.py,sha256=B-PWs6e-8OPxVeGWb9c42C4nZvFBasWTZvhVagJ0QTc,14717
148
151
  xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
149
152
  xinference/model/rerank/model_spec.json,sha256=xUuJgJ8Ad4l2v8gEHxAdF_xoaSkA8j8AX51LhrjGEA0,2005
150
153
  xinference/model/rerank/model_spec_modelscope.json,sha256=pf5hX4g0HdVjk2-ibHTl_mXHgQSSPYMTBOIwvnwMMkk,1616
@@ -235,6 +238,29 @@ xinference/thirdparty/deepseek_vl/serve/examples/rap.jpeg,sha256=AL_pk3nX1ChriPT
235
238
  xinference/thirdparty/deepseek_vl/utils/__init__.py,sha256=u8C--egJMT_DDm0JG3frXGSQNNv6cfIAumPhghzkxhk,1091
236
239
  xinference/thirdparty/deepseek_vl/utils/conversation.py,sha256=7oITA8TsIuOfumVZ8hcoDpA6dm1jz7n8-VXPe_7-4YA,11702
237
240
  xinference/thirdparty/deepseek_vl/utils/io.py,sha256=HQqLoONZF4nl1E9oMrm7_2LwU8ZSh1C9htm7vLN4YfI,2751
241
+ xinference/thirdparty/deepseek_vl2/__init__.py,sha256=N5CYTfTFEiTT7mrNrrGTSyvDOVkGVO3pE_fWm8ugcAw,1458
242
+ xinference/thirdparty/deepseek_vl2/models/__init__.py,sha256=cj7JV8Dl6cZ5uVMLPddZBQ968WlkU5f2FXc_CR1LV4c,1289
243
+ xinference/thirdparty/deepseek_vl2/models/configuration_deepseek.py,sha256=arIfKaRyLib6KMjg1Cd1kWiaWY3xfPbHEjMOj2Kz_Hw,10646
244
+ xinference/thirdparty/deepseek_vl2/models/conversation.py,sha256=tGv8wXFdTGK7ewYqLMi8hQ8tqqfC1dpLa_6NFuhRs7E,10189
245
+ xinference/thirdparty/deepseek_vl2/models/modeling_deepseek.py,sha256=nHMJubp-jCVI7J4R1vj8IyVhA-0LWJJeqUKeAUmVV48,81807
246
+ xinference/thirdparty/deepseek_vl2/models/modeling_deepseek_vl_v2.py,sha256=_7PUGe-GnndYdAKokIB-_YxMcZp3PmMLAjT-Zi4tlhA,27473
247
+ xinference/thirdparty/deepseek_vl2/models/processing_deepseek_vl_v2.py,sha256=tXXsPbyD_MmJ91NyLWMYDv1Xf-eBt7X0ktoxDVVIkns,29068
248
+ xinference/thirdparty/deepseek_vl2/models/siglip_vit.py,sha256=RRLuhLtH0GSOPO_RJtxG9dC9A4cp5HjiMxGEtd5k5Tc,25487
249
+ xinference/thirdparty/deepseek_vl2/serve/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
250
+ xinference/thirdparty/deepseek_vl2/serve/inference.py,sha256=Zj23wJ_F6sj4s7Ri-tyCnekABAGOMeW0SOzMc5hRp98,6296
251
+ xinference/thirdparty/deepseek_vl2/serve/app_modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
+ xinference/thirdparty/deepseek_vl2/serve/app_modules/gradio_utils.py,sha256=Ahtvp6FXsfF15rQPKAAtOT_iXJPuK1LJV2U5w7dER_0,2276
253
+ xinference/thirdparty/deepseek_vl2/serve/app_modules/overwrites.py,sha256=FA4Ikx2wNJNdKiKJUEVm24vqMbaDeHprso0xcSFVVMw,3276
254
+ xinference/thirdparty/deepseek_vl2/serve/app_modules/presets.py,sha256=sJ7sET1MtpEzrIJeDeF22fSqcO6Bjg2RTUnTr4UucXc,3934
255
+ xinference/thirdparty/deepseek_vl2/serve/app_modules/utils.py,sha256=j11cl44PqZh4EC-HnGvMD4fzRFvsEbUxb724D97MZG8,10835
256
+ xinference/thirdparty/deepseek_vl2/serve/assets/Kelpy-Codos.js,sha256=TSVPz9Nt8UT1Ck6NeLuc6lKY_St-VIf0rg1WhOsywrY,3760
257
+ xinference/thirdparty/deepseek_vl2/serve/assets/avatar.png,sha256=M5UhHvq3k7iaTledkL1gaw60NeJWau31S-xYXkNqjnE,62075
258
+ xinference/thirdparty/deepseek_vl2/serve/assets/custom.css,sha256=a7-gDchaBYTNRDWWBeELXMwb2Zffvrc46SakvuYfG7U,9196
259
+ xinference/thirdparty/deepseek_vl2/serve/assets/custom.js,sha256=q4eMFbj5FErECrTQR5iGM-zma8ZFMNLXPAS7CLavrEE,1144
260
+ xinference/thirdparty/deepseek_vl2/serve/assets/favicon.ico,sha256=KNq3G9QZD0HH3lEGFeka_LpSrXzmgm-_hrITIFvmK0U,15406
261
+ xinference/thirdparty/deepseek_vl2/serve/assets/simsun.ttc,sha256=_31pv6ZYjT_e292-OimsEfDFAjZyPucqnqSew-JVP10,15323200
262
+ xinference/thirdparty/deepseek_vl2/utils/__init__.py,sha256=u8C--egJMT_DDm0JG3frXGSQNNv6cfIAumPhghzkxhk,1091
263
+ xinference/thirdparty/deepseek_vl2/utils/io.py,sha256=FqnY2we1ftnZOD3th3QPyueYns5pMWDJwv5x4eAh-UY,2839
238
264
  xinference/thirdparty/f5_tts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
239
265
  xinference/thirdparty/f5_tts/api.py,sha256=yYr9SwJrgyzm8E7Z5LZYkW8p28PbVRtjr9lIcDRvJjk,5571
240
266
  xinference/thirdparty/f5_tts/socket_server.py,sha256=XwClpY1a3MtTdedMWT5fLTS1Bt2DnvydZs2jnLxSBdc,5353
@@ -572,14 +598,14 @@ xinference/thirdparty/whisper/normalizers/english.json,sha256=Zgf5SL6YJNLhsvoiI8
572
598
  xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc3yhvWzWuMhQzRnp2dM6IQdA,20868
573
599
  xinference/web/ui/package-lock.json,sha256=Q3gwsjjCFtDjVg5Yk7s4jfMAZ1wiyFfS_TJCw3ECB64,762407
574
600
  xinference/web/ui/package.json,sha256=iitsROb4-TLzxbOftXJqUGpp38TuPhzfLKy5n9THQYg,2081
575
- xinference/web/ui/build/asset-manifest.json,sha256=LT9W0K6l2I-9IZLmLnFLA0cBvQ88dRjev9JASk7fLRk,453
601
+ xinference/web/ui/build/asset-manifest.json,sha256=ARFdRR2h3bNi91NhJFwqmvs6vSe8Nc08e0Fh2wEBzGw,453
576
602
  xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
577
- xinference/web/ui/build/index.html,sha256=bUlPOL9F_pZs6DiGoll-Rf03322I6FfKre9etsYRAeY,650
578
- xinference/web/ui/build/static/css/main.f8177338.css,sha256=0Q2_Jsa0kGCmFf24Zzc_An-sQoKjjkCxCQGXtkiSNRA,5397
579
- xinference/web/ui/build/static/css/main.f8177338.css.map,sha256=Lf6p9GU0WwTIdaGDlWSRuppm2L8g5sxh9tfZvLImcBE,10318
580
- xinference/web/ui/build/static/js/main.55b70cb7.js,sha256=_UpzAHG1jKsGniNRUrVgwWPyiJPyZ-tkaMgmC7voF_Y,1227507
581
- xinference/web/ui/build/static/js/main.55b70cb7.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
582
- xinference/web/ui/build/static/js/main.55b70cb7.js.map,sha256=T1bSZtPpDa8D9-PjL4jn47qFJJZ8wIu3wmSL8rn2dxg,5192036
603
+ xinference/web/ui/build/index.html,sha256=xJe0hDCx7khbYq_fjD0PIkbrO8JtawZVjlu1359j7EI,650
604
+ xinference/web/ui/build/static/css/main.b494ae7e.css,sha256=e-Ice658EZf6rU_LjpIp6moupZ1v2QOCyF-5bD9DGjA,5225
605
+ xinference/web/ui/build/static/css/main.b494ae7e.css.map,sha256=50OJ6uMtUd2uzLFhhW2ksWuM5QDrlpmnWKIAYDM0Hk8,9970
606
+ xinference/web/ui/build/static/js/main.5ca4eea1.js,sha256=N_ZP9zYhBJqMbK1jcAzz2gvpCeGoj949WzFw932Wbfw,1227923
607
+ xinference/web/ui/build/static/js/main.5ca4eea1.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
608
+ xinference/web/ui/build/static/js/main.5ca4eea1.js.map,sha256=vlWPtk3uRo14tPY6lR9OctdVjNUGgQuJ99TrQNhsWj0,5192724
583
609
  xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
584
610
  xinference/web/ui/node_modules/.package-lock.json,sha256=2kL1sQ4ZuDQilki9DnRFFM8CxT13fyGl3chLK6i3DQY,760261
585
611
  xinference/web/ui/node_modules/.cache/babel-loader/00012b59e7dc64a18400bdddb660faa295258241c0b9cd15c78cdba63b858ed8.json,sha256=FhiSQ9MQv6bT7TkLBlXXskoaG2HCKhsuTXXlkDV-pM4,668
@@ -1296,6 +1322,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/0ef7d86422625e70d16fd2570a123
1296
1322
  xinference/web/ui/node_modules/.cache/babel-loader/0ef84bbb6b567d753a060bcd921cb1368bb26264f8d8691c64c75a3296d4847c.json,sha256=h9Xa_pI3tkGkJ_FR5R2Pu1C2emk5AcpQ8WC8HXERBBE,7078
1297
1323
  xinference/web/ui/node_modules/.cache/babel-loader/0efd7db36d8479197fe4d6fd406d90fe9841d6018ce2b1b0f53f25e7438a88f9.json,sha256=6fOUQui_YSFHFDeWqK8nxrcJ7Z1VyTSyijVj7yimtgM,1530
1298
1324
  xinference/web/ui/node_modules/.cache/babel-loader/0f0411593a7e8b8bff7f9a4b09f708c6eaafae8d359b73017a63c901658901d3.json,sha256=fgXt_imBl5ngvobBRLkdi7cI6AyW_07onWYdiyYdVP4,1732
1325
+ xinference/web/ui/node_modules/.cache/babel-loader/0f0967acaec5df1d45b80010949c258d64297ebbb0f44b8bb3afcbd45c6f0ec4.json,sha256=EeIz18CSV1c55EXYhDG79cYzsz5c3X0V2sx8jZ9JWWs,221866
1299
1326
  xinference/web/ui/node_modules/.cache/babel-loader/0f0a073112ecc16a2813d386f82fe951dc0ce5a10473ff1024aacb58bf001cf7.json,sha256=wz-iXkh0-WT0xa1w7ZuzY2oK6-4vS5W815CkMygUE_A,1259
1300
1327
  xinference/web/ui/node_modules/.cache/babel-loader/0f0adb2283a8f469d097a7a0ebb754624fa52414c83b83696c41f2e6a737ceda.json,sha256=gXeQ-hi5JIvzEIv3ZLo6A1MbFoNrcG99AsNekqoK1-0,79726
1301
1328
  xinference/web/ui/node_modules/.cache/babel-loader/0f1103819797fe986c40db633df5e68feb9e429753a497815b0babfa25bbbc5f.json,sha256=BLBzQuF_qHwWXayWpBeCIxJn28euUGFuIdLxxygQKcE,1320
@@ -2760,7 +2787,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/2dd288308dc5f1b64f1e1c5090662
2760
2787
  xinference/web/ui/node_modules/.cache/babel-loader/2dd36b2b9c3186e109b8e075b65458b27dc737062fe4e08284d8346047078e58.json,sha256=TYmsnTGXi43__5fyHzhxIVm29ZkFzM-68Gplfb0xXzw,1288
2761
2788
  xinference/web/ui/node_modules/.cache/babel-loader/2de20c41de07e7717bd62ced5cdc008328ba84b652697c1bfb69c7ce651cf29c.json,sha256=iZJrNQSfGzrnnrrbDRqS1zyGiQdvzxmdy9DBxjNdQhQ,1760
2762
2789
  xinference/web/ui/node_modules/.cache/babel-loader/2deab92f64f43d676208b6f7cf32985921a5ff656a2de9241bc1f6fe1f9e80e3.json,sha256=Mi9Lg7X8PCl_S9U8I5o8Su7CGqc6NBgYHhI8M_stDmc,2492
2763
- xinference/web/ui/node_modules/.cache/babel-loader/2deac8d5636974533e3714f34e94fc754f9153a07c6ee11e72846cb8eae47e4b.json,sha256=Cia1z16-nh_iX2ZV0wiZzZ3kM02gpbxSh-TMFBVCDx4,219920
2764
2790
  xinference/web/ui/node_modules/.cache/babel-loader/2df184fdbff22f793a8d092cff9fe7873b082222ef1ba511c6da1979ed7395e4.json,sha256=VxlTcY1GriWjYRZlDyyV2CP_C7y-top0wDjfGgz5nlU,558
2765
2791
  xinference/web/ui/node_modules/.cache/babel-loader/2dfebeb7e31a60a0204d9a91c32ba1b18e449638d7bd7ca6dd3decd174fadfd9.json,sha256=NFSd0rOOhDqAYBLv57Kx__pjOgjdJ6geMyCA3puB-1c,1759
2766
2792
  xinference/web/ui/node_modules/.cache/babel-loader/2e0a00aeca8ecb5197a84109389d0d9c4365a546fb930b428e915b27203f681f.json,sha256=n12FJkZqTJmXdUJSiVCBwePdcKMKb3FNQc7pUAyv2CQ,495
@@ -5522,6 +5548,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/6810a817d49260ed87fc90f87afbc
5522
5548
  xinference/web/ui/node_modules/.cache/babel-loader/68124974ff7d9d4f9163c3450315bcbc8fa3e8acdc3c192cc64beb62768b5124.json,sha256=hO4DYdU0HCangqcrQx8wrbDNggUjGSSF-22GQ7BUbO0,2543
5523
5549
  xinference/web/ui/node_modules/.cache/babel-loader/681a35bbe33939b2dea8fa4d96ffb2da54ae0ce28ea49c60ae6812f9f0abf0ec.json,sha256=IWyOTtZNctIapCTQ5FONn6Q8zgQhuSIw6QJpgxZbx7A,2208
5524
5550
  xinference/web/ui/node_modules/.cache/babel-loader/6821f62fbb26771dd8b4f37f18619c8da681dd7e3a83e8514c690086eb9bda85.json,sha256=0T4PP4PpTPnVQXFISJm9aNK4x2-o1mwa59gtW3rVjWw,1408
5551
+ xinference/web/ui/node_modules/.cache/babel-loader/68249645124f37d01eef83b1d897e751f895bea919b6fb466f907c1f87cebc84.json,sha256=yx_-guUh0EnwPo3tfG5kHAYZ_5v3Da-MeX25SAX7BWE,5741
5525
5552
  xinference/web/ui/node_modules/.cache/babel-loader/682650b170bbba3d71e0391256c77d259153ecf3ddb4521f637d9fb686642f3f.json,sha256=mD1zUpxFa25t5lVHh9DkWt88997Ym53wzV0xGHE4zjA,1911
5526
5553
  xinference/web/ui/node_modules/.cache/babel-loader/682699a7b6f5e55fb2cda8cda9ac069e55bc28b7c7948fe857ff4b083919563f.json,sha256=z0FLrTkxKAf_QbWxHQonhYQo_2V3JRgX1FMeJzJmZp0,1026
5527
5554
  xinference/web/ui/node_modules/.cache/babel-loader/682ec00dce973690e604566e9d2df6bff29a0d9da2483ee3b413bc39ab7193ef.json,sha256=PsXr_RWp9CszBK0Zu0YbH6YX93rs8AntpwnenlN6Iak,1492
@@ -10324,6 +10351,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/cc7ef4b9ac155611faf89f51cd7c8
10324
10351
  xinference/web/ui/node_modules/.cache/babel-loader/cc83b5e95e45fdca259fdbe6fa831d119f8ea0c0066c5b30d7524297022a6ada.json,sha256=iX0xcao3L96zUT_vvdq8nGJGCBJNhDlHA-jXLx-wYuo,1078
10325
10352
  xinference/web/ui/node_modules/.cache/babel-loader/cc86100b4f32c20a7c36f489d337271ce81e533d7a150c42eedaa0c166eeff05.json,sha256=lc-gA0cbO8R-FFU6zZ_i6lEZOlHjJGAxjp3b-TfbFHU,1168
10326
10353
  xinference/web/ui/node_modules/.cache/babel-loader/cc8ff8e5b868d35cf9b9c7c4ab3e3690e9da63b805f69439c5ea59c5175c6183.json,sha256=r7zPhH4fD6SIdS_ZH6YVbykON-HmWvLnrzvNifhmmzw,20060
10354
+ xinference/web/ui/node_modules/.cache/babel-loader/cc97b49285d7717c63374766c789141a4329a04582ab32756d7e0e614d4c5c7f.json,sha256=rH8vgwMC0NSOuA9_KMmJ5lzYlH1da9yN5tQ-zLzv_9s,134310
10327
10355
  xinference/web/ui/node_modules/.cache/babel-loader/cc9d9b7e7a21dff0f2ccd6a80ed1ec0531ecfa9dc5ddfa586d1917d5d62f36c6.json,sha256=JITp6hI9znPlPzXPuJbH1M3VLRnEmchguS1_1FmOfn8,1083
10328
10356
  xinference/web/ui/node_modules/.cache/babel-loader/cca89c333675e147da1a855da74582d11a31987e0ee00b76d338c84c117c8fca.json,sha256=keeYjZMYZ3YyqiIOg8UkT5M3QxWg5OVtc_P3s-pgi24,1345
10329
10357
  xinference/web/ui/node_modules/.cache/babel-loader/ccada46ae10478debc073dd873a3ec1dbbdfa716674c8246ba3ef894ca7ef56f.json,sha256=O0RqknVhcBBD6uRhBX471PLOd4h9C4rvS3GFY7hh4l4,1255
@@ -11038,7 +11066,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/dafd1cb73ab6b2e006685775ded74
11038
11066
  xinference/web/ui/node_modules/.cache/babel-loader/db05f17be907c3949bd5e2c9ec0d15882e2b58cbe3bce580319d549721c44cba.json,sha256=N3QoaAZKVvpkblS2ZcyltdULpJnQC_QtAjfhiWsi2rw,1366
11039
11067
  xinference/web/ui/node_modules/.cache/babel-loader/db0611993b35d8dac5636de0291c976553370b238d9b3ec0a82f113097248ce4.json,sha256=JdeZxXhFETs2-jidhcp_LRgipMLNLYUrBZXmAUjs8VI,1231
11040
11068
  xinference/web/ui/node_modules/.cache/babel-loader/db15953920ab2516461a0a2fe60621c8eb4432aa33cece9fc1be791ffbec4f78.json,sha256=s0wQzOHrx9yFtuczKovy30FTCBPtEVWpMEUg_qTpY2w,5731
11041
- xinference/web/ui/node_modules/.cache/babel-loader/db16a983bc08a05f0439cc61ca0840e49e1d8400eef678909f16c032a418a3d6.json,sha256=5HOCB5eyRTHGRk6zSjd0s5RB4ogq3gjYNWqkhUsHtzI,134257
11042
11069
  xinference/web/ui/node_modules/.cache/babel-loader/db17cddaad6632d5aa3b5bcf48c52db3d8b4f3973787cd82dc19237b54f4ba8d.json,sha256=PjS5jh5YNgXZ-fTjZ32wWHLzQSfCm0mtyfKMuPuuaOU,1451
11043
11070
  xinference/web/ui/node_modules/.cache/babel-loader/db29f84b7d8549a4a8eace5c6bd3985c96c83818ccedd6c9f2aec3506a7fd43d.json,sha256=2rxojBMoN3Yb7sAG5byGeAlof1HJLQGacycSt6yzOU8,1153
11044
11071
  xinference/web/ui/node_modules/.cache/babel-loader/db2e2835f8a89206146ffe08363d6437e906cbb2ab968b0ab4a9dd153d49734a.json,sha256=OV5eBv86tU3_-_dOdL7XapsYxos7-PgXUrA4ISHTYW0,25966
@@ -11408,7 +11435,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/e23332113bb465570807233881c67
11408
11435
  xinference/web/ui/node_modules/.cache/babel-loader/e233c270f6dfbe07d56794125b0dbc7b210aa9d60bfa800f1a65d1017725aacb.json,sha256=T-6Qh1Bd2ET2s7uwz_l-H1D4YmhxiPu0z9QtAUa13yE,2335
11409
11436
  xinference/web/ui/node_modules/.cache/babel-loader/e2355f65675bf448620913cb394bd1a7654c112c65fe9a2e9cad956b423cd2cf.json,sha256=1XBl_gKYZ1vXz5Dm8JCI6ueUIPf3CYJmq6Hyj7wmaYY,1348
11410
11437
  xinference/web/ui/node_modules/.cache/babel-loader/e235fddcc3d5be0176eb839158aec89cdbfe418229ffefd5b850096e0008e472.json,sha256=quJOT-8bzeSAB-duCR6ZUCth1R5GFdQuJcPMaHPAwAA,1519
11411
- xinference/web/ui/node_modules/.cache/babel-loader/e23d476fcbf6fd69c8986bf82133d257d28aa8fc9a5cab231d81c1c75c58cd99.json,sha256=BiGPFO15kKvt_qZf0f5t_zBPinYfOpc3HHjTmYpoBnw,12902
11412
11438
  xinference/web/ui/node_modules/.cache/babel-loader/e242c583c2dbc2784f0fcf513523975f7d5df447e106c1c17e49e8578a6fc3ed.json,sha256=7A2ZoOlXOoKgZmyVlwd9rU63AhxlXPwrOK8vsbc6Tzs,5320
11413
11439
  xinference/web/ui/node_modules/.cache/babel-loader/e248f466e99f90d380f52c948985591af0f64c9476cabf153213e601f26d56fe.json,sha256=a3zY9Uhewn94UH_oEWgeZRn9JPuLEZRD_My-qrCh4II,1043
11414
11440
  xinference/web/ui/node_modules/.cache/babel-loader/e24e0a714c9c084f168b65d26d5ee47035313842ae464764b23cf4d446de84ec.json,sha256=TC141hTEzdmepi_8XUCZexM9eBNeEGfjFd7zsuv_N7g,503
@@ -11672,7 +11698,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/e79ab54a87ef3b9130332852cbe4e
11672
11698
  xinference/web/ui/node_modules/.cache/babel-loader/e79d8969b6cbf9ae9853eec420f96f3d92a04f559b5ed63112b1f081c4af4329.json,sha256=QijW0S1OvA-ACDRMcwdYhRSOwzPwgixoESaRk-PizxA,1199
11673
11699
  xinference/web/ui/node_modules/.cache/babel-loader/e79ef289abb520fc778e6566ca692c9e04441498c3abcbe6af6b1af8234e48d0.json,sha256=XNpPL1rJ8TOyrmHcaU0UOXRSOb5R5cZhXmJS5y-LeNk,20390
11674
11700
  xinference/web/ui/node_modules/.cache/babel-loader/e7a6bc17b33ae789d698544d9c09565857af6161bee3c435eaeee62b8318c674.json,sha256=IqzoLOX2ZiEk9GGTHoh9uF-dds1zyd22FlMrtD7jPRE,1269
11675
- xinference/web/ui/node_modules/.cache/babel-loader/e7a8c37fda8725cab69c7ef8c627060bd7fc806adc67e00fe628ba148cb86d7f.json,sha256=5W-T581mRqN5s3kznMmMJSUjoIa2ZMfOC2u8c4NIGwQ,5568
11676
11701
  xinference/web/ui/node_modules/.cache/babel-loader/e7a9b586a6bd5a11a5790c6c3451a4e404748e07f25fba4ab3f9e2d708b168f0.json,sha256=QiMD-YWC2MHOii5CMZVtlwvqz8RnUpR-BHdIctV_A2o,1236
11677
11702
  xinference/web/ui/node_modules/.cache/babel-loader/e7ab46b243fe5caaba2eaa79fe365a56ed7455d6c02ba51ac902088f58444295.json,sha256=1XsfI5Xy81adKp5g8eEhDY2zkCdxkG2FwLTlhZQ_USw,1319
11678
11703
  xinference/web/ui/node_modules/.cache/babel-loader/e7acf2b6a4d77138b5b805a69ce4d5718ab696da7a739aab58ee85021d3734fa.json,sha256=UBcrKJSsv2bQskgd64YshKbOoJcDerTPJGs4oXNpYLs,1159
@@ -12156,6 +12181,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/f187d297f29bc381bc5efecb585b1
12156
12181
  xinference/web/ui/node_modules/.cache/babel-loader/f18b3ea9c0f7d13b80c5c1297279436e82915572aca6be88bbc3b95fed22274d.json,sha256=hNS1b2pXKoYtv9PXAdnH_h0Ly2Tc2M6R-6ijR9ULmcw,1214
12157
12182
  xinference/web/ui/node_modules/.cache/babel-loader/f18f328401042cf85d296c5cae3094ec5842107e41e8ef94c67c0e5cf2c4e4c4.json,sha256=s1DxjaAQ5l6ggFtMv_pJAypmCWSKCFe4UAMhLmfpVIo,1424
12158
12183
  xinference/web/ui/node_modules/.cache/babel-loader/f1984065fd21377830668930bec02aa5dcefebaffba4c3e41ecd0fcc45a101eb.json,sha256=LNhOUlbV6hb18ZYSEuGORuu10DnNVTsk5R60BoO_d2E,2096
12184
+ xinference/web/ui/node_modules/.cache/babel-loader/f199e8173f6409a5802ed44acb95f218388131136504b2e9132129e150c92f9a.json,sha256=wAQTqHDnF0pFv87urp7bg6fvvWr5n-LecjPdDXdAVLM,12573
12159
12185
  xinference/web/ui/node_modules/.cache/babel-loader/f1a47a618b4a3acf242f8c8e7d781468d2e09033d8487cf6e7fca222117bf810.json,sha256=0qVUc2X2Jv4CVDC9JlvNv9iYjpIVvThs8mycAie-qhM,907
12160
12186
  xinference/web/ui/node_modules/.cache/babel-loader/f1a8ac4d6fbf7c5d6366b8238061d664907cb4078a1166315ab9e441a1f469b2.json,sha256=Q0ZIp2YNp5FGxNGaLkbdZ9WHQjzmKL27JV-J4B35iIk,1382
12161
12187
  xinference/web/ui/node_modules/.cache/babel-loader/f1a9946d0952779f611ebf19eabcf728b34de2d81373a49f24207f0e5d2b00ee.json,sha256=EDE_rzWaDd41rc6UJfgw28-HQ3077zq6QX023KdhXhk,1099
@@ -15722,11 +15748,11 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
15722
15748
  xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
15723
15749
  xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
15724
15750
  xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
15725
- xinference/web/ui/src/locales/en.json,sha256=5MN-GKLcPOeUAsDbv_MRvD4uf86WsvUC6rhzTAtQevA,8925
15726
- xinference/web/ui/src/locales/zh.json,sha256=27HeH4Qc96KuDJ9cgb4OybpUFG-GuuUiaD0ASsg3lyQ,8666
15727
- xinference-1.3.1.post1.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15728
- xinference-1.3.1.post1.dist-info/METADATA,sha256=aag4egJ0PONQQ2mu6fWiY9KDHMpqqTzSTHAOPO11vb8,24447
15729
- xinference-1.3.1.post1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
15730
- xinference-1.3.1.post1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15731
- xinference-1.3.1.post1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15732
- xinference-1.3.1.post1.dist-info/RECORD,,
15751
+ xinference/web/ui/src/locales/en.json,sha256=GVdNMQoMvs1UverhaJtafaG4NBOcX5UtLRNlw82COnY,8937
15752
+ xinference/web/ui/src/locales/zh.json,sha256=qpz8XbMfUksgZN3-ozD78tD6eTX5PjWyBxZ3j6Mb4bs,8681
15753
+ xinference-1.4.1.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15754
+ xinference-1.4.1.dist-info/METADATA,sha256=WDrdB_6Iqm_-3D-B7Nuoe8f5BvUYi98jhJ74s4vF1nA,24389
15755
+ xinference-1.4.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
15756
+ xinference-1.4.1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15757
+ xinference-1.4.1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15758
+ xinference-1.4.1.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- .container{cursor:pointer;display:block}.container,.descriptionCard{border-radius:20px;height:300px;position:relative;width:300px}.descriptionCard{left:-1px;padding:20px;top:-1px}.cardTitle{display:flex;justify-content:space-between}.iconButtonBox{align-items:center;display:flex}.drawerCard{min-height:100%;padding:20px 80px 0;position:relative;width:60vw}.p{-webkit-line-clamp:4;-webkit-box-orient:vertical;display:-webkit-box;font-size:14px;overflow:hidden;padding:0 10px;text-overflow:ellipsis;word-break:break-word}.pasteText{color:#1976d2;cursor:pointer;font-size:18px!important;margin-inline:10px}.pasteText:hover{color:#1976d2b3}.copyToCommandLine{color:#1976d2;cursor:pointer;font-size:16px!important}.copyToCommandLine:hover{color:#1976d2b3}.formContainer{height:80%;overflow:scroll;padding:0 10px 160px}.buttonsContainer{align-items:center;bottom:50px;display:flex;justify-content:space-between;left:100px;position:absolute;right:100px}.buttonContainer{background-color:initial;border-width:0;width:45%}.buttonItem{border:1px solid #e5e7eb;border-radius:4px;cursor:pointer;padding:5px;width:100%}.buttonItem:hover{border-color:#888}.instructionText{color:#666;font-size:12px;font-style:italic;margin:30px 0;text-align:center}.iconRow{bottom:20px;justify-content:space-between;left:20px;position:absolute;right:20px}.iconItem,.iconRow{align-items:center;display:flex}.iconItem{flex-direction:column;margin:20px}.boldIconText{font-size:1.2em;font-weight:700}.muiIcon{font-size:1.5em}.smallText{font-size:.8em}.dialogBox{background-color:#fff;height:607px;margin:32px;overflow-x:scroll;width:1241px}.dialogTitle{color:#000;display:flex;justify-content:space-between;padding:20px 20px 7px}.dialogTitle-model_name{font-size:18px;font-weight:700}.pathBox{cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:160px}.pathBox2{width:300px}.empty{color:#555;font-size:20px;left:50%;position:absolute;top:30%;-webkit-transform:translate(-50%);transform:translate(-50%)}.deleteDialog{align-items:center;display:flex}.warningIcon{color:#ed6c02;margin-right:10px}.jsonDialog{background-color:#fff;border-radius:8px;color:#000;display:flex;flex-direction:column;padding:10px 30px}.jsonDialog-title{align-items:center;display:flex;justify-content:space-between;margin:10px 0 20px}.title-name{font-size:16px;font-weight:700}.main-box{height:500px;width:700px}.textarea-box{border:1px solid #ddd;border-radius:5px;color:#444;height:100%;padding:5px 10px;resize:none;width:100%}.but-box{display:flex;justify-content:end;margin-top:20px}.drawer{bottom:0;left:0;opacity:0;position:fixed;right:0;top:0;transition:visibility .3s ease,opacity .3s ease;visibility:hidden;z-index:1000}.drawer.open{opacity:1;visibility:visible}.drawer-overlay{background-color:rgba(0,0,0,.5);left:0;z-index:999}.drawer-content,.drawer-overlay{bottom:0;position:absolute;right:0;top:0}.drawer-content{background-color:#fff;box-shadow:-2px 0 10px rgba(0,0,0,.1);overflow-y:auto;-webkit-transform:translateX(100%);transform:translateX(100%);transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;z-index:1000}.drawer.open .drawer-content{-webkit-transform:translateX(0);transform:translateX(0)}.copyText{color:#666;cursor:pointer;font-size:14px!important}.copyText:hover{color:#1976d2}.formBox{max-height:80vh;max-width:50vw;min-width:50vw;overflow:auto;padding:40px 20px 0 0;position:relative;transition:all .4s ease-in-out}.broaden{max-width:100%;min-width:100%;padding-right:0}.show-json{align-items:center;display:flex;right:60px;top:90px}.icon,.show-json{position:absolute}.icon{cursor:pointer;margin-left:20px;right:-40px}.icon:hover{color:#1976d2}.arrow{font-size:24px!important}.jsonBox{min-height:80vh;position:relative;transition:all .4s ease-in-out;width:100%}.hide{overflow:hidden;-webkit-transform:translate(30vw);transform:translate(30vw);width:0}.checkboxWrapper{align-items:center;display:flex;flex-wrap:wrap;width:100%}.jsonBox-header{align-items:center;display:flex;justify-content:space-between}.jsonBox-title{font-weight:700;line-height:40px}.textarea{background-color:initial;border:1px solid #ddd;border-radius:5px;color:#444;height:calc(100% - 40px);padding:5px 10px;resize:none;width:100%}.addBtn{margin-left:20px!important}.item{border:1px solid #ddd;border-radius:10px;margin:10px 50px 0;overflow:hidden;padding:20px;position:relative}.item:hover .deleteBtn{-webkit-transform:translateX(-50px);transform:translateX(-50px)}.deleteBtn{background-color:#1976d2;border-radius:25px;height:50px;line-height:70px;position:absolute;right:20px;text-align:center;top:calc(50% - 25px);-webkit-transform:translateX(80px);transform:translateX(80px);transition:all .3s ease-in-out;width:50px}.deleteBtn:hover{box-shadow:0 0 10px #aaa;cursor:pointer}.deleteIcon{color:#fff;font-size:28px!important}.chat_template_box{align-items:start;display:flex;gap:10px}.chat_template_test{width:30%}.chat_template_test_mainBox{border:1px solid #ccc;border-radius:4px;height:137px;overflow:scroll;padding:10px}.chat_template_test_tip{color:rgba(0,0,0,.6);font-size:10px;margin:4px 14px 0}.test_res_box{border:1px solid #ddd;border-radius:4px;margin-top:5px;min-height:55px;padding:10px}.css-19qh8xo-MuiInputBase-input-MuiOutlinedInput-input.Mui-disabled{-webkit-text-fill-color:#000!important}
2
- /*# sourceMappingURL=main.f8177338.css.map*/
@@ -1 +0,0 @@
1
- {"version":3,"file":"static/css/main.f8177338.css","mappings":"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","sources":["scenes/launch_model/styles/modelCardStyle.css","components/copyComponent/style.css","scenes/register_model/styles/registerModelStyle.css"],"sourcesContent":[".container {\n display: block;\n position: relative;\n width: 300px;\n height: 300px;\n cursor: pointer;\n border-radius: 20px;\n}\n.descriptionCard {\n position: relative;\n top: -1px;\n left: -1px;\n width: 300px;\n height: 300px;\n padding: 20px;\n border-radius: 20px;\n}\n.cardTitle {\n display: flex;\n justify-content: space-between;\n}\n.iconButtonBox {\n display: flex;\n align-items: center;\n}\n.drawerCard {\n position: relative;\n padding: 20px 80px 0;\n min-height: 100%;\n width: 60vw;\n}\n.p {\n display: -webkit-box;\n -webkit-line-clamp: 4;\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n word-break: break-word;\n font-size: 14px;\n padding: 0px 10px;\n}\n.pasteText {\n font-size: 18px !important;\n color: #1976d2;\n cursor: pointer;\n margin-inline: 10px;\n}\n.pasteText:hover {\n color: #1976d2b3;\n}\n.copyToCommandLine {\n font-size: 16px !important;\n color: #1976d2;\n cursor: pointer;\n}\n.copyToCommandLine:hover {\n color: #1976d2b3;\n}\n.formContainer {\n height: 80%;\n overflow: scroll;\n padding: 0 10px;\n padding-bottom: 160px;\n}\n.buttonsContainer {\n position: absolute;\n bottom: 50px;\n left: 100px;\n right: 100px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n.buttonContainer {\n width: 45%;\n border-width: 0px;\n background-color: transparent;\n}\n.buttonItem {\n cursor: pointer;\n width: 100%;\n padding: 5px;\n border-radius: 4px;\n border: 1px solid #e5e7eb;\n border-width: 1px;\n border-color: #e5e7eb;\n}\n.buttonItem:hover {\n border-color: #888;\n}\n.instructionText {\n font-size: 12px;\n color: #666666;\n font-style: italic;\n margin: 30px 0;\n text-align: center;\n}\n.iconRow {\n position: absolute;\n bottom: 20px;\n left: 20px;\n right: 20px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n.iconItem {\n display: flex;\n flex-direction: column;\n align-items: center;\n margin: 20px;\n}\n.boldIconText {\n font-weight: bold;\n font-size: 1.2em;\n}\n.muiIcon {\n font-size: 1.5em;\n}\n.smallText {\n font-size: 0.8em;\n}\n.dialogBox {\n width: 1241px;\n height: 607px;\n background-color: #fff;\n margin: 32px;\n overflow-x: scroll;\n}\n.dialogTitle {\n display: flex;\n justify-content: space-between;\n padding: 20px 20px 7px;\n color: #000;\n}\n.dialogTitle-model_name {\n font-size: 18px;\n font-weight: 700;\n}\n.pathBox {\n width: 160px;\n cursor: pointer;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.pathBox2 {\n width: 300px;\n}\n.empty {\n position: absolute;\n left: 50%;\n top: 30%;\n font-size: 20px;\n color: #555;\n transform: translate(-50%, 0);\n}\n.deleteDialog {\n display: flex;\n align-items: center;\n}\n.warningIcon {\n margin-right: 10px;\n color: rgb(237, 108, 2);\n}\n.jsonDialog {\n display: flex;\n flex-direction: column;\n padding: 10px 30px;\n background-color: #fff;\n color: #000;\n border-radius: 8px;\n}\n.jsonDialog-title {\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin: 10px 0 20px 0;\n}\n.title-name {\n font-size: 16px;\n font-weight: 700;\n}\n.main-box {\n width: 700px;\n height: 500px;\n}\n.textarea-box {\n width: 100%;\n height: 100%;\n padding: 5px 10px;\n border: 1px solid #ddd;\n border-radius: 5px;\n resize: none;\n color: #444;\n}\n.but-box {\n display: flex;\n justify-content: end;\n margin-top: 20px;\n}\n.drawer {\n z-index: 1000;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n visibility: hidden;\n opacity: 0;\n transition: visibility 0.3s ease, opacity 0.3s ease;\n}\n.drawer.open {\n visibility: visible;\n opacity: 1;\n}\n.drawer-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background-color: rgba(0, 0, 0, 0.5);\n z-index: 999;\n}\n.drawer-content {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n background-color: white;\n z-index: 1000;\n box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);\n transition: transform 0.3s ease;\n transform: translateX(100%);\n overflow-y: auto;\n}\n.drawer.open .drawer-content {\n transform: translateX(0);\n}\n",".copyText {\n font-size: 14px !important;\n color: #666;\n cursor: pointer;\n}\n\n.copyText:hover {\n color: #1976d2;\n}\n",".formBox {\n position: relative;\n max-width: 50vw;\n min-width: 50vw;\n max-height: 80vh;\n overflow: auto;\n padding: 40px 20px 0 0;\n transition: all 0.4s ease-in-out;\n}\n\n.broaden {\n max-width: 100%;\n min-width: 100%;\n padding-right: 0;\n}\n\n.show-json {\n display: flex;\n align-items: center;\n position: absolute;\n top: 90px;\n right: 60px;\n}\n\n.icon {\n position: absolute;\n right: -40px;\n cursor: pointer;\n margin-left: 20px;\n}\n\n.icon:hover {\n color: #1976d2;\n}\n\n.arrow {\n font-size: 24px !important;\n}\n\n.jsonBox {\n position: relative;\n min-height: 80vh;\n width: 100%;\n transition: all 0.4s ease-in-out;\n}\n\n.hide {\n width: 0;\n transform: translate(30vw, 0);\n overflow: hidden;\n}\n\n.checkboxWrapper {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n width: 100%;\n}\n\n.jsonBox-header {\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.jsonBox-title {\n line-height: 40px;\n font-weight: 700;\n}\n\n.textarea {\n width: 100%;\n height: calc(100% - 40px);\n padding: 5px 10px;\n border: 1px solid #ddd;\n border-radius: 5px;\n resize: none;\n color: #444;\n background-color: transparent;\n}\n\n.addBtn {\n margin-left: 20px !important;\n}\n\n.item {\n position: relative;\n border: 1px solid #ddd;\n margin: 10px 50px 0;\n padding: 20px;\n border-radius: 10px;\n overflow: hidden;\n}\n\n.item:hover .deleteBtn {\n transform: translateX(-50px);\n}\n\n.deleteBtn {\n position: absolute;\n right: 20px;\n top: calc(50% - 25px);\n width: 50px;\n height: 50px;\n transform: translateX(80px);\n text-align: center;\n line-height: 70px;\n border-radius: 25px;\n background-color: #1976d2;\n transition: all 0.3s ease-in-out;\n}\n\n.deleteBtn:hover {\n cursor: pointer;\n box-shadow: 0 0 10px #aaa;\n}\n\n.deleteIcon {\n font-size: 28px !important;\n color: #fff;\n}\n\n.chat_template_box {\n display: flex;\n align-items: start;\n gap: 10px;\n}\n\n.chat_template_test {\n width: 30%;\n}\n\n.chat_template_test_mainBox {\n height: 137px;\n padding: 10px;\n border: 1px solid #ccc;\n border-radius: 4px;\n overflow: scroll;\n}\n\n.chat_template_test_tip {\n font-size: 10px;\n margin: 4px 14px 0;\n color: rgba(0, 0, 0, 0.6);\n}\n\n.test_res_box {\n border: 1px solid #ddd;\n min-height: 55px;\n padding: 10px;\n margin-top: 5px;\n border-radius: 4px;\n}\n\n.css-19qh8xo-MuiInputBase-input-MuiOutlinedInput-input.Mui-disabled {\n -webkit-text-fill-color: #000 !important;\n}\n"],"names":[],"sourceRoot":""}