xinference 0.15.0__py3-none-any.whl → 0.15.2__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (84) hide show
  1. xinference/_version.py +3 -3
  2. xinference/api/restful_api.py +204 -1
  3. xinference/client/restful/restful_client.py +4 -2
  4. xinference/core/image_interface.py +28 -0
  5. xinference/core/model.py +30 -2
  6. xinference/core/supervisor.py +6 -0
  7. xinference/model/audio/cosyvoice.py +3 -3
  8. xinference/model/audio/fish_speech.py +9 -9
  9. xinference/model/audio/model_spec.json +9 -9
  10. xinference/model/audio/whisper.py +4 -1
  11. xinference/model/image/core.py +2 -1
  12. xinference/model/image/model_spec.json +16 -4
  13. xinference/model/image/model_spec_modelscope.json +16 -4
  14. xinference/model/image/sdapi.py +136 -0
  15. xinference/model/image/stable_diffusion/core.py +163 -24
  16. xinference/model/llm/__init__.py +9 -1
  17. xinference/model/llm/llm_family.json +1241 -0
  18. xinference/model/llm/llm_family.py +3 -1
  19. xinference/model/llm/llm_family_modelscope.json +1301 -3
  20. xinference/model/llm/sglang/core.py +7 -0
  21. xinference/model/llm/transformers/chatglm.py +1 -1
  22. xinference/model/llm/transformers/core.py +6 -0
  23. xinference/model/llm/transformers/deepseek_v2.py +340 -0
  24. xinference/model/llm/transformers/qwen2_audio.py +168 -0
  25. xinference/model/llm/transformers/qwen2_vl.py +31 -5
  26. xinference/model/llm/utils.py +104 -84
  27. xinference/model/llm/vllm/core.py +13 -0
  28. xinference/thirdparty/fish_speech/fish_speech/configs/firefly_gan_vq.yaml +2 -3
  29. xinference/thirdparty/fish_speech/fish_speech/configs/text2semantic_finetune.yaml +1 -1
  30. xinference/thirdparty/fish_speech/fish_speech/i18n/locale/en_US.json +1 -1
  31. xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json +1 -1
  32. xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json +1 -1
  33. xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json +1 -1
  34. xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json +1 -1
  35. xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py +2 -2
  36. xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py +0 -3
  37. xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py +169 -198
  38. xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py +4 -27
  39. xinference/thirdparty/fish_speech/fish_speech/text/clean.py +9 -47
  40. xinference/thirdparty/fish_speech/fish_speech/text/spliter.py +2 -2
  41. xinference/thirdparty/fish_speech/fish_speech/train.py +2 -0
  42. xinference/thirdparty/fish_speech/fish_speech/webui/manage.py +12 -10
  43. xinference/thirdparty/fish_speech/tools/api.py +79 -134
  44. xinference/thirdparty/fish_speech/tools/commons.py +35 -0
  45. xinference/thirdparty/fish_speech/tools/download_models.py +3 -3
  46. xinference/thirdparty/fish_speech/tools/file.py +17 -0
  47. xinference/thirdparty/fish_speech/tools/llama/build_dataset.py +1 -1
  48. xinference/thirdparty/fish_speech/tools/llama/generate.py +29 -24
  49. xinference/thirdparty/fish_speech/tools/llama/merge_lora.py +1 -1
  50. xinference/thirdparty/fish_speech/tools/llama/quantize.py +2 -2
  51. xinference/thirdparty/fish_speech/tools/msgpack_api.py +34 -0
  52. xinference/thirdparty/fish_speech/tools/post_api.py +85 -44
  53. xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py +1 -1
  54. xinference/thirdparty/fish_speech/tools/smart_pad.py +16 -3
  55. xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py +2 -2
  56. xinference/thirdparty/fish_speech/tools/vqgan/inference.py +4 -2
  57. xinference/thirdparty/fish_speech/tools/webui.py +12 -146
  58. xinference/types.py +7 -4
  59. xinference/web/ui/build/asset-manifest.json +6 -6
  60. xinference/web/ui/build/index.html +1 -1
  61. xinference/web/ui/build/static/css/{main.632e9148.css → main.5061c4c3.css} +2 -2
  62. xinference/web/ui/build/static/css/main.5061c4c3.css.map +1 -0
  63. xinference/web/ui/build/static/js/{main.9cfafbd6.js → main.29578905.js} +3 -3
  64. xinference/web/ui/build/static/js/main.29578905.js.map +1 -0
  65. xinference/web/ui/node_modules/.cache/babel-loader/c7bf40bab396765f67d0fed627ed3665890608b2d0edaa3e8cb7cfc96310db45.json +1 -0
  66. xinference/web/ui/node_modules/.cache/babel-loader/e42b72d4cc1ea412ebecbb8d040dc6c6bfee462c33903c2f1f3facb602ad742e.json +1 -0
  67. {xinference-0.15.0.dist-info → xinference-0.15.2.dist-info}/METADATA +13 -7
  68. {xinference-0.15.0.dist-info → xinference-0.15.2.dist-info}/RECORD +73 -75
  69. xinference/thirdparty/fish_speech/fish_speech/models/vqgan/lit_module.py +0 -442
  70. xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/discriminator.py +0 -44
  71. xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/reference.py +0 -115
  72. xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/wavenet.py +0 -225
  73. xinference/thirdparty/fish_speech/tools/auto_rerank.py +0 -159
  74. xinference/thirdparty/fish_speech/tools/gen_ref.py +0 -36
  75. xinference/thirdparty/fish_speech/tools/merge_asr_files.py +0 -55
  76. xinference/web/ui/build/static/css/main.632e9148.css.map +0 -1
  77. xinference/web/ui/build/static/js/main.9cfafbd6.js.map +0 -1
  78. xinference/web/ui/node_modules/.cache/babel-loader/01d6d198156bacbd436c51435edbd4b2cacd47a79db929105eba30f74b67d48d.json +0 -1
  79. xinference/web/ui/node_modules/.cache/babel-loader/59eb25f514afcc4fefd1b309d192b2455f1e0aec68a9de598ca4b2333fe2c774.json +0 -1
  80. /xinference/web/ui/build/static/js/{main.9cfafbd6.js.LICENSE.txt → main.29578905.js.LICENSE.txt} +0 -0
  81. {xinference-0.15.0.dist-info → xinference-0.15.2.dist-info}/LICENSE +0 -0
  82. {xinference-0.15.0.dist-info → xinference-0.15.2.dist-info}/WHEEL +0 -0
  83. {xinference-0.15.0.dist-info → xinference-0.15.2.dist-info}/entry_points.txt +0 -0
  84. {xinference-0.15.0.dist-info → xinference-0.15.2.dist-info}/top_level.txt +0 -0
@@ -1,15 +1,15 @@
1
1
  xinference/__init__.py,sha256=muQ9V9y11BcIqlZhhc06oDf193H7bwDIa8e_wSoDKI8,986
2
2
  xinference/_compat.py,sha256=xFztCfyrq3O_4bssL_ygghYkfxicv_ZhiX2YDDWHf-k,3571
3
- xinference/_version.py,sha256=TnCH-EyS6hlxuKdxS7pNdOIHsY4zNoewd7mLlJN8yfc,498
3
+ xinference/_version.py,sha256=7zQEeiDI-E0CU8s4-vIp-965xHo_KhHTI48Mp2N5KWw,498
4
4
  xinference/conftest.py,sha256=56HYQjsAJcQrpZSmskniPqH9dLoW-i3Oud6NVTtc4io,9752
5
5
  xinference/constants.py,sha256=f8RxXrnnhoEYSwhiDSp8nKeUMF-KE4GyerMg-pa3Vv4,3582
6
6
  xinference/device_utils.py,sha256=zswJiws3VyTIaNO8z-MOcsJH_UiPoePPiKK5zoNrjTA,3285
7
7
  xinference/fields.py,sha256=0UtBFaDNzn1n9MRjyTkNrolsIML-TpZfudWOejqjni8,5245
8
8
  xinference/isolation.py,sha256=uhkzVyL3fSYZSuFexkG6Jm-tRTC5I607uNg000BXAnE,1949
9
- xinference/types.py,sha256=xbqUw50FTBrYLnjps6bhGvr7NDGR5RyMpjuK0zef1dY,12435
9
+ xinference/types.py,sha256=LHTbNLf0zI-FLruxRuBt2KMpk2P4eKpYdFvh2qzNTGI,12458
10
10
  xinference/utils.py,sha256=VSOJMFd9H7kce98OtJZbcDjjpfzRpHAFs8WU0xXPBM8,717
11
11
  xinference/api/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
12
- xinference/api/restful_api.py,sha256=la8fzWiiGHRe8QHarZIsWDaTkaiAL3rUeWHi8JzYj_U,75741
12
+ xinference/api/restful_api.py,sha256=5UR9RVbrxOJmBwwepxOrRmH49JGVzkp6Tku1os-zzLU,83540
13
13
  xinference/api/oauth2/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
14
14
  xinference/api/oauth2/auth_service.py,sha256=74JzB42fbbmBu4Q1dW3A9Fp_N7167KgRGB42Z0NHjAM,6119
15
15
  xinference/api/oauth2/types.py,sha256=K923sv_XySIUtM2Eozl9IG082IJcDOS5SFLrPZ5ELBg,996
@@ -18,18 +18,18 @@ xinference/client/__init__.py,sha256=Gc4HOzAy_1cic5kXlso7hahYgw89CKvZSJDicEU461k
18
18
  xinference/client/common.py,sha256=iciZRs5YjM2gYsXnwACPMaiBZp4_XpawWwfym0Iyu40,1617
19
19
  xinference/client/handlers.py,sha256=OKl_i5FA341wsQf_0onSOPbbW6V861WJrSP7ghtDc8c,527
20
20
  xinference/client/restful/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
21
- xinference/client/restful/restful_client.py,sha256=RtzbTbYM9jOTey7UZ-vzTEFKv1N_b-tT3MdJ_kazUZQ,50720
21
+ xinference/client/restful/restful_client.py,sha256=rz3d5n1sTluZG6zj0B8jsM40LLNtUAlmPzDdBDrDvFY,50780
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=tM4hQPZ0UVcmE4_-auXWkq2z0rWmZBwwXNwbbl5zvGQ,20666
25
25
  xinference/core/event.py,sha256=42F38H2WOl6aPxp2oxX6WNxHRRxbnvYRmbt4Ar7NP4U,1640
26
- xinference/core/image_interface.py,sha256=B_unlVzesE-shlsQg6Q2UCD12NnyHWr2OefkYNwsWlA,10539
26
+ xinference/core/image_interface.py,sha256=-elEvAYVga8KXbl9uc1A8oV0YWK0QbKDu5RPofkxxXs,11837
27
27
  xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
28
- xinference/core/model.py,sha256=r47g2z9x_F28bDFHNEk9ymfvxhIMLTGCdoUjbw16UYg,29506
28
+ xinference/core/model.py,sha256=_X0aPIcTtdy886tMxuoto_nwXqCrm3S8IMalv3Kq5QU,30354
29
29
  xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
30
30
  xinference/core/scheduler.py,sha256=qONNFqAlnYDcmmzPO5jfU-r0aZ1Lhhpn1oSaA5CAGTE,15485
31
31
  xinference/core/status_guard.py,sha256=4an1KjUOhCStgRQUw1VSzXcycXUtvhxwiMREKKcl1UI,2828
32
- xinference/core/supervisor.py,sha256=QiYw2orkRx_x76-kq2GVhf-vVLWr2ZI2I9xu6ydeauI,52300
32
+ xinference/core/supervisor.py,sha256=bNMyGM-cqHwSqhYxHlR6oePEKqt9D4tcrBFMAb6-oV0,52510
33
33
  xinference/core/utils.py,sha256=p3ptQMdzKu9WxdUJ2EdDTXvPDl53BGwiNuVWuhaE4EU,8536
34
34
  xinference/core/worker.py,sha256=IvcagHkXpMKjTvZl9svXko5hRuKN3czhbi5phGv-6No,46264
35
35
  xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
@@ -46,14 +46,14 @@ xinference/model/utils.py,sha256=-eGdgTgCJYowL9VpJaXb6T8RVKOUpfzwyQHOJ0qaeM8,119
46
46
  xinference/model/audio/__init__.py,sha256=G4n-MyzdarFVOndPRkEyZZrCwqFIG8yIsky6_5dife0,3433
47
47
  xinference/model/audio/chattts.py,sha256=rMH6-9M8boZdpUSgxaAge-LraE79nRs6mVc0nPLHd5A,4585
48
48
  xinference/model/audio/core.py,sha256=2QexrIh3hDoaNeWh5rOMas9q4zDCZTaazsLRdQ7D5Zw,6512
49
- xinference/model/audio/cosyvoice.py,sha256=QhECyo5UuPOEv6F08tT9ToLsEL7v0cCtNPKNP1lkT-4,6460
49
+ xinference/model/audio/cosyvoice.py,sha256=Enur1Y4Xa-mpr7wwnoXWwhyh7PUAjrHZ8DV91tTrpjE,6426
50
50
  xinference/model/audio/custom.py,sha256=8GXBRmTtR-GY03-E91nlRGTIuabCRzlt20ecU6Un6Y8,4985
51
- xinference/model/audio/fish_speech.py,sha256=9BQ6ohOaetV3bfNm9Er_MSx0DwK8FhAsASe57iBXmC0,7105
51
+ xinference/model/audio/fish_speech.py,sha256=v2WVEV-BLWnbiDvqrx8WTGE_YNKmd9QoAF1LZBXWxn0,7310
52
52
  xinference/model/audio/funasr.py,sha256=65z7U7_F14CCP-jg6BpeY3_49FK7Y5OCRSzrhhsklCg,4075
53
- xinference/model/audio/model_spec.json,sha256=9abRO-HDO-ejBhJ3LarNjT4Z-05ttnIv6RH3GxaIW1o,4866
53
+ xinference/model/audio/model_spec.json,sha256=Ixo-15HVY2vu3_J5lElLL6texoJ41YwH-TBDB139NP8,4858
54
54
  xinference/model/audio/model_spec_modelscope.json,sha256=club_Pb1BdFPu5EOR5oVktsi2SiSrKYc7lHKsERjpds,1765
55
55
  xinference/model/audio/utils.py,sha256=pwo5cHh8nvhyBa9f-17QaVpXMSjmbpGbPYKwBBtEhGM,717
56
- xinference/model/audio/whisper.py,sha256=-UY0xSEHMi5FuDzUrEA19eXF89nJMrgRr74PcDkTo90,7854
56
+ xinference/model/audio/whisper.py,sha256=PQL7rebGC7WlIOItuDtjdEtSJtlhxFkolot-Fj-8uDU,7982
57
57
  xinference/model/embedding/__init__.py,sha256=1GmvQsbeeVUT-VRaRGetf8UT4RQgLWIzfp5kfX5jw-k,3567
58
58
  xinference/model/embedding/core.py,sha256=5LvIJMDJYguhXa_U0n1yx_B88QmHU_34bFqYgHximRk,18269
59
59
  xinference/model/embedding/custom.py,sha256=757KncqhsOWVypHZFtuhBP_xy-UTNaFdy0BuZRfuIV8,3848
@@ -67,21 +67,22 @@ xinference/model/flexible/launchers/__init__.py,sha256=X8w_2hKuQ9H3f90XYK7H_AQU4
67
67
  xinference/model/flexible/launchers/image_process_launcher.py,sha256=APbbHls0N9DpLFL6_qTexuc5o6bQAvdgJEAZWU4clyw,2510
68
68
  xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRUGhulP4PRJ4fZEJ2D9cfv7lcC2qJBoDE,2012
69
69
  xinference/model/image/__init__.py,sha256=80HBIbKh6lh-BgNaTo6k0TxxKjdG30bwHAdCiwVk6wk,3198
70
- xinference/model/image/core.py,sha256=JmzqyvY_DicnAa1TeKUXHTTvDB0gg-bT9ONwh5-3GhM,8871
70
+ xinference/model/image/core.py,sha256=ir1ns0qlUIlKnd0JS2cAJUppeEeczWYOnf6ecUCaLhM,8907
71
71
  xinference/model/image/custom.py,sha256=5gjujQpJVTJ-pVB5LzBo4-bWKKOHzFlRaoRKJ_CuIUg,3769
72
- xinference/model/image/model_spec.json,sha256=dt0BVh4OGwuwNuh1TLZNoJ5UcQP4UQQMtAAE_-Hqjjo,5086
73
- xinference/model/image/model_spec_modelscope.json,sha256=Tl44o5EJnxJhSItQIf4iLK73Bs_1heAubW_pX2C4ZGA,3984
72
+ xinference/model/image/model_spec.json,sha256=JyXU-v4ysRT4yqwkmXgISY3uVWjeSiBLyH8fS7XO1_g,5368
73
+ xinference/model/image/model_spec_modelscope.json,sha256=r3_m9XZo1QZgmASg5navOPs0ivlft5wVPF1SpbAVNBg,4266
74
+ xinference/model/image/sdapi.py,sha256=XhSIfEQY8giC0KC04CoMBJea9dZSFO4Ci8fQlAlxk54,4685
74
75
  xinference/model/image/utils.py,sha256=gxg8jJ2nYaDknzCcSC53WCy1slbB5aWU14AbJbfm6Z4,906
75
76
  xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
76
- xinference/model/image/stable_diffusion/core.py,sha256=tAX2h737SBrVfZb3f6RTc0OMG9CutdnmEYyQln6KT8I,13262
77
- xinference/model/llm/__init__.py,sha256=z4tjqQiuhJoyAMis61mUq4zxqAIX14L9HzNMSfrJhC0,12143
77
+ xinference/model/image/stable_diffusion/core.py,sha256=K6g-BGs_Y2Pns0tG7BTQ3QZcMnvDOb-FXY4JyQYiooo,18842
78
+ xinference/model/llm/__init__.py,sha256=elINGzzDXmSissG32UMG7BfMqNgXwSM7USBaTorGWSA,12428
78
79
  xinference/model/llm/core.py,sha256=f4nKVPTAseivij6mbL2yXEKxrzllKm-_i2ttSqckTCg,8157
79
- xinference/model/llm/llm_family.json,sha256=2wPtO1XtcEoPbkd77B-mNta5PmH2CtLYTUaKFt8lUUo,243814
80
- xinference/model/llm/llm_family.py,sha256=8L6RPsvUlm6Pu6QWdrzWquf1nUKmzd5kKESw8YPWF88,37409
80
+ xinference/model/llm/llm_family.json,sha256=5_fQgQbHT5FVYGxtovTMW9DY9aqEpvedYukWtBZnS04,285456
81
+ xinference/model/llm/llm_family.py,sha256=eqeaHwLeS2TDB_ATf_h6YkH6OiyyF_4cSF_bOq3pTws,37432
81
82
  xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
82
- xinference/model/llm/llm_family_modelscope.json,sha256=-4x6RWE2QAB4hHaUpIJe8GKJHp-7RdHbZc0yH8jvW7o,172228
83
+ xinference/model/llm/llm_family_modelscope.json,sha256=XekwX8I6HCh_L8YVAYCuEVd8A2z-Zbfy2f9xtPOQVyM,215036
83
84
  xinference/model/llm/memory.py,sha256=NEIMw6wWaF9S_bnBYq-EyuDhVbUEEeceQhwE1iwsrhI,10207
84
- xinference/model/llm/utils.py,sha256=ssechEe61VlVF4GlwcmOwPRskol_A9SPsWIKdTufmbo,21160
85
+ xinference/model/llm/utils.py,sha256=In1a9PwFF2_8suh9J4H1Yh4jyZDPbhI0MRZLIeez4dE,21401
85
86
  xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
86
87
  xinference/model/llm/llama_cpp/core.py,sha256=vjuTapwbn-ZjUX-8WA0nFyicE4UGUSehU_csSetvcZw,10928
87
88
  xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -89,13 +90,14 @@ xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc
89
90
  xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
90
91
  xinference/model/llm/mlx/core.py,sha256=9mTUllTBQf5pnblATWNw6mKKjivQ5u8Xp5q5U4KDYEY,13661
91
92
  xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
92
- xinference/model/llm/sglang/core.py,sha256=aayKEuJJByWwWrhUaBlv33087V3mquUdw_8BAOInXYc,16534
93
+ xinference/model/llm/sglang/core.py,sha256=ft4QlDw36gwoic8lyjtSx2ai6KTW84CPVbYr8grqGMI,16698
93
94
  xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
94
- xinference/model/llm/transformers/chatglm.py,sha256=BRCWvf-VlL-u7qN_uWi5h1d8KDoYmNcd5J-0OdVImp8,17818
95
+ xinference/model/llm/transformers/chatglm.py,sha256=pCJgoc0Ikny5BL85iHXl9M6zKgIzAHBsd81NAZ31yRI,17834
95
96
  xinference/model/llm/transformers/cogvlm2.py,sha256=wqWM6AhVQssgkUOcVX2N7RU7kjnAu55r6ZlUjh9iJro,15942
96
97
  xinference/model/llm/transformers/cogvlm2_video.py,sha256=dupPGQur8xGie5roA1ibpTIIZNoO-KMynvr7303pyl0,11809
97
98
  xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
98
- xinference/model/llm/transformers/core.py,sha256=2OKT6en6wZceAJxy0Ba4vjqLMU7ux5DJ0G6-FL4fDQA,30872
99
+ xinference/model/llm/transformers/core.py,sha256=-YmBzM5WbK-B3YIv7rWPFewDEx5xFDWyPO8YqFr8Sv8,31012
100
+ xinference/model/llm/transformers/deepseek_v2.py,sha256=HSddUBm5sKpHTNtPbTao9r3Yif-_xRAJrAtfCyELnhw,12975
99
101
  xinference/model/llm/transformers/deepseek_vl.py,sha256=eb-UH6g1Vr-jaZnGSkn_Ud4WYBzDuYR24CV_tAvo9iM,10397
100
102
  xinference/model/llm/transformers/glm4v.py,sha256=Uz7y2A_cSDeVVfe4D31h9LGqtUJ51plckt6jmnm_z7c,13841
101
103
  xinference/model/llm/transformers/intern_vl.py,sha256=3K0_2ng4zBgsnobzV7AfDEq7NzZu676JfNM54oE3AXQ,18222
@@ -103,13 +105,14 @@ xinference/model/llm/transformers/internlm2.py,sha256=nRrmbH9bJl_wLcCH4zSy0EeKeP
103
105
  xinference/model/llm/transformers/minicpmv25.py,sha256=8fcmQo5VAst0vniV2-N6109Nq0sA56O2vWVxMvdZWxo,6766
104
106
  xinference/model/llm/transformers/minicpmv26.py,sha256=QRO5gnxuFMiJDNZ-v3os1A_4bn4fzrDvYjAOhdPQ4Lw,13392
105
107
  xinference/model/llm/transformers/omnilmm.py,sha256=MBsh-qaDnjtrtTRrAR7ArgHyupfpowwntuTuOj7xGkA,5124
106
- xinference/model/llm/transformers/qwen2_vl.py,sha256=k1KsMZqr_yT8A2Cbf_jT43yzNAHQVmoYsv7c9-wlrhI,7556
108
+ xinference/model/llm/transformers/qwen2_audio.py,sha256=tkLL523jdn1rVDfHV9RfLldDIISuMiukTJYt-h-dJ4o,5987
109
+ xinference/model/llm/transformers/qwen2_vl.py,sha256=IMEdVJiHm3JccZg-vpSKCIElv8XtMrUPD3wT6yHel0A,8419
107
110
  xinference/model/llm/transformers/qwen_vl.py,sha256=JfMuiEqYuRIlDv5cIiRbLCd4DJQRgwCFoxc0JTJTGgs,14028
108
111
  xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
109
112
  xinference/model/llm/transformers/utils.py,sha256=qob4wDMN98LKzYdDcQe8rFVA5_mX4i5XeVgm3HSq9iI,28505
110
113
  xinference/model/llm/transformers/yi_vl.py,sha256=w4EpUHpmT9P1u5yEv1Pm3Ico92nqZZv3fO4NEKXteK4,8913
111
114
  xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
112
- xinference/model/llm/vllm/core.py,sha256=AJe7fXGrhahYf2moEzhro7JCywNvSPO9x5WLjrWAje8,27905
115
+ xinference/model/llm/vllm/core.py,sha256=ecAoahLx0VWY0Y1G3feYO3TAh97qLZNYVHZ9xiKx6Hs,28388
113
116
  xinference/model/rerank/__init__.py,sha256=wRpf1bOMfmAsuEKEGczMTB5fWEvuqltlJbIbRb-x8Ko,3483
114
117
  xinference/model/rerank/core.py,sha256=_6kqYc488sbj_yub8AkZnDi4Xcibc4Q_MunrdMkHrqo,13264
115
118
  xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
@@ -201,13 +204,13 @@ xinference/thirdparty/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeR
201
204
  xinference/thirdparty/fish_speech/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
202
205
  xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=Qh8G6Y7O1qUa2cjRdDBKDLP3ygyn1cFgdEBilkZsI7U,58
203
206
  xinference/thirdparty/fish_speech/fish_speech/scheduler.py,sha256=xpstAfXlsdx-N_hDcJJYFKiLb_cW5mTdXACyuODrcIg,1101
204
- xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=8Q-M1wBr6z77pQLvZyfHrjTV_zYCrWUrLheA6hQectk,4443
207
+ xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=TQbqeYF5RPkShMNjb9dsqWTWhEyHFnfdFOR_gnbIfUo,4474
205
208
  xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py,sha256=LYHvlvb9463UMJ3stVzBilVpLtdiLCteuzMIB5ypHS0,70
206
209
  xinference/thirdparty/fish_speech/fish_speech/callbacks/grad_norm.py,sha256=pzuUxUnXWAa9U6XKcvQpnGoUZhMmFQKimSqYH-WajIQ,3436
207
210
  xinference/thirdparty/fish_speech/fish_speech/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
208
211
  xinference/thirdparty/fish_speech/fish_speech/configs/base.yaml,sha256=7_yXj9Y9SNhI7wiQeFvoLArtp9gqJCF-f43JGQ-TwCI,2544
209
- xinference/thirdparty/fish_speech/fish_speech/configs/firefly_gan_vq.yaml,sha256=GIXMnG0n8MtPEScIbwDvSiBAeKB1RlRswcwftQFYAbw,1021
210
- xinference/thirdparty/fish_speech/fish_speech/configs/text2semantic_finetune.yaml,sha256=_Dc9W3H46MXKyUHQEZPTYHNwlt_dNWA-Bodq2542MYs,1991
212
+ xinference/thirdparty/fish_speech/fish_speech/configs/firefly_gan_vq.yaml,sha256=-SO0089ARGOAlhttQN1J0fSpoa81MABHg20sOYmAfCc,1002
213
+ xinference/thirdparty/fish_speech/fish_speech/configs/text2semantic_finetune.yaml,sha256=wBnbMXw9svb7VlluA0euzSPX39dbEWjnuoJ7E5hi2SQ,1987
211
214
  xinference/thirdparty/fish_speech/fish_speech/configs/lora/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
212
215
  xinference/thirdparty/fish_speech/fish_speech/configs/lora/r_8_alpha_16.yaml,sha256=a9QVkN2A64_0l8XUfwV1fgW5eZi9124L5pHdsN9ZgII,98
213
216
  xinference/thirdparty/fish_speech/fish_speech/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -223,28 +226,24 @@ xinference/thirdparty/fish_speech/fish_speech/i18n/__init__.py,sha256=u9r_HCtTmY
223
226
  xinference/thirdparty/fish_speech/fish_speech/i18n/core.py,sha256=8Ks8wGog73U-AZqlzGltfx61KALGTh7uCIXnQHDnDOw,1036
224
227
  xinference/thirdparty/fish_speech/fish_speech/i18n/scan.py,sha256=1mdXKPeR0d3bTcFZWhX6ODWUJbbiOHO73MBDEJlTmUY,3751
225
228
  xinference/thirdparty/fish_speech/fish_speech/i18n/locale/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
226
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/en_US.json,sha256=O7W7R78RoE_vy9S2yuYUBQw91aykw8Mhwgt7WUv3y6g,8123
227
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json,sha256=Mdp3T59iZh3KvWwndcut5gpeN7lVyLAKliyDLbOmlGs,9026
228
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json,sha256=-XEQvWtxYFCu-MHBjQWmlOzpFiznxEhkqGObFjuEiMg,9533
229
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json,sha256=pm4GUSUOC0HcpIJagE0Kabfj-ic4qnsh3Fxp1ByPF6M,9672
230
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json,sha256=grThn88-jttZQOzsV4qyydT40u5J5HvrYC66pPXjpaU,7781
229
+ xinference/thirdparty/fish_speech/fish_speech/i18n/locale/en_US.json,sha256=871DQQsdVoBp08_CpvHQm4sELOdmPS8Ge0QHTk9_dIE,8041
230
+ xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json,sha256=WDrAwpiuMnBCg1mtb3Dw_277twh3IuUG0RLQp-DSdXU,8943
231
+ xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json,sha256=GyKcLvZ4bBuzVbQiuVfWX9soMnRDqIGmT96CEg6zmaw,9435
232
+ xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json,sha256=mNI1TYkHwhC5ArecMTBLTW1Cf8iX0iuXoOZq8XYFqeE,9605
233
+ xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json,sha256=sbFSUJTfthXi0-UAU0KRuVDLyo_Tuei55cBZysH0pj4,7705
231
234
  xinference/thirdparty/fish_speech/fish_speech/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
232
235
  xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
233
236
  xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lit_module.py,sha256=Brrgxy6tHNAwclfu04XDNLKzzGU_FamBL5D8XWPj99A,6567
234
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=CDrQ6sUJ5gwFXjzBb25T-NUeBuzo1rKkxww_Fv4KoM8,25764
237
+ xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=jrr76CCGHg-P-KrASW5_AAwMNuqgXDXKbnGTYFygtQc,25758
235
238
  xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lora.py,sha256=KHbtG1BGrFMtdoMtHXPWb3OTez8HtHEiuAaMEFOrNYI,2923
236
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py,sha256=ZcGYSCAe5uCM9lRLqYQ__YlpKRPIIW8wNKJgqYcPnJc,51
237
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/lit_module.py,sha256=cxzIZ52_pNZE3Z_VOUiBn1MFuN9tjjl8haAN81oI25c,14238
239
+ xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
238
240
  xinference/thirdparty/fish_speech/fish_speech/models/vqgan/utils.py,sha256=irmTsK36GlLccFI5CjWahKO7NG6LZQrd5FEh_7qy4Xs,2533
239
241
  xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
240
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/discriminator.py,sha256=bdOovuQUg9R5GD3bwpBcH864k5zr_iEX8B2qWnq3zk0,1203
241
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py,sha256=BS8_2ttzcIwlYpOCQe-TJaRz5nEooyyQqnlmKMUMgo0,20469
242
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py,sha256=Lgp0ovnddj9ECcXmvAbXsga1OdxXCkaQFCFrHlC1YWk,4000
243
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/reference.py,sha256=1qozYaZ9b9LlUntbg2PHCquyyzG54KWKdPdyXVgWoQM,3613
244
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/wavenet.py,sha256=UakV7x67j5hZB5kzfxUbvz8dQtKdRgeTNKrR5SWHu_U,6469
242
+ xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py,sha256=XudPf4AYCcXrDl6Wcjmh_ersriPuvq1d595brtnM6qY,20038
243
+ xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py,sha256=qOl-E-aWr9d-Nm4ikHt7EYkS-MbCNy4qyooS8VflEsY,3448
245
244
  xinference/thirdparty/fish_speech/fish_speech/text/__init__.py,sha256=3lYfSw4Xb3Qh0p8FsjX4ToOJNsm7ZxN3XPh_xFKXoUQ,102
246
- xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=CTNqZJRf8KSvIcAZbIA0t6BSbDeBlJDnHsOs4JQWKpo,1399
247
- xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=GRwZepmtWAfcyOWjCsBfXhC3_l4LP5CIKS5t3m8enuA,3799
245
+ xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=KmsHnXdMZUF_3kdyZv2ymzEsOwIIszf1MeMomChlbfI,556
246
+ xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=wv-x9U3cEz7D4iGmzkf_x2YpkvTthuDHVfM6VQW_gQw,3827
248
247
  xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/.gitignore,sha256=04gWbPAivQzTV7w2eOgkk3xcMZLuti1pkLwy_mW7k6M,1274
249
248
  xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/README.md,sha256=9tZNujydXU0DlgpnsJTfMI880mgh41l6UvqqQQKbcPk,890
250
249
  xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -271,38 +270,37 @@ xinference/thirdparty/fish_speech/fish_speech/utils/spectrogram.py,sha256=R9dGOE
271
270
  xinference/thirdparty/fish_speech/fish_speech/utils/utils.py,sha256=GaL7k1geF-D5temeOQI2Q8RzfC_Jc1bsQnLNvO-sV1c,3793
272
271
  xinference/thirdparty/fish_speech/fish_speech/webui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
273
272
  xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py,sha256=uIWcCXHyF7Oqo7uyq8li0fpVL6q-t-ITk2k3ma5WjU0,3972
274
- xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=yCmMEMtchR9lCnaBMLyzLInp_9MGQNEPyPp0sxnK_6E,46882
273
+ xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=nnLug37TcrIys4DMgeVRgQuvnLjB36b49aMBUt98ZKI,46885
275
274
  xinference/thirdparty/fish_speech/fish_speech/webui/css/style.css,sha256=CLXPzePjropDNCfg2jptIwJRMIWPuc5jfd2aLGadMD0,2617
276
275
  xinference/thirdparty/fish_speech/fish_speech/webui/html/footer.html,sha256=ofq4m93dF0Z_lXn2J6nLBwXwdugBOPIzjzFGBbr1C58,348
277
276
  xinference/thirdparty/fish_speech/fish_speech/webui/js/animate.js,sha256=AG2umxvH9ly6ZxJDxV4sfz1A9Q3_unA7LnkKv05X-i4,2690
278
277
  xinference/thirdparty/fish_speech/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
279
- xinference/thirdparty/fish_speech/tools/api.py,sha256=Voi8YlyENsYNI9cOZ_FhbOTRbE0XENoXqHYRRtoCf1Y,14806
280
- xinference/thirdparty/fish_speech/tools/auto_rerank.py,sha256=HeVUTG0yh4suJ2Ijnazml0ybIHZIbVhciAc8sul0Nxc,4033
281
- xinference/thirdparty/fish_speech/tools/download_models.py,sha256=kTFkIZTdYpnJe0vzNA_uVaGbdBAp43mLBrZnSQIoSsY,1373
278
+ xinference/thirdparty/fish_speech/tools/api.py,sha256=6fLty1CMybUgus2E8Ta1bbVe4tbqU01ydEXjo4rBHEs,12681
279
+ xinference/thirdparty/fish_speech/tools/commons.py,sha256=-9YuuVUfBemIuOBVvt465COuZuVqVo_Xrswwl4z2iOA,1348
280
+ xinference/thirdparty/fish_speech/tools/download_models.py,sha256=UOOV9SzseMUGFqOw85AeAaXg5LcW0jMvkoet1elvI44,1365
282
281
  xinference/thirdparty/fish_speech/tools/extract_model.py,sha256=42b_U4rmqX3OUOIqWQQczsEktt79aQSOJ4E55B1bHl8,536
283
- xinference/thirdparty/fish_speech/tools/file.py,sha256=soQoO6epHGv8aEeRrGxYW9kGHwGleYVrc8NxlbOd-2E,2633
284
- xinference/thirdparty/fish_speech/tools/gen_ref.py,sha256=_frao-RXnsgEKNSQ2NWYDtyJl-3tcw-dDS-MCBC1FNg,1020
285
- xinference/thirdparty/fish_speech/tools/merge_asr_files.py,sha256=oeW-WFNVnXp0pH7SoLi64GmubNrWDu46XS_5qi2ffYE,2013
286
- xinference/thirdparty/fish_speech/tools/post_api.py,sha256=QKzUwAZ_bvEC-aTRampep69K9oX5o111-DzVVPdDkvA,5047
287
- xinference/thirdparty/fish_speech/tools/smart_pad.py,sha256=MWA78einNJI4gRgb5nrs8bXD9GWv9V4V5xcX-C_qc7I,1264
288
- xinference/thirdparty/fish_speech/tools/webui.py,sha256=h32_3IidZbIFsbRlOIViMghaQ2QGzM5qkp6ugVM5-sM,18917
282
+ xinference/thirdparty/fish_speech/tools/file.py,sha256=ZSWIpGIOuGbQ5gWmfS9LZWLLidc9gZ9p95QzAZkJneI,3047
283
+ xinference/thirdparty/fish_speech/tools/msgpack_api.py,sha256=eKAfu6IKAMi35WvfrQhzpiFEKARsFpIvWUoWLa1hSk4,964
284
+ xinference/thirdparty/fish_speech/tools/post_api.py,sha256=PS3HB1FUm4CNQ8uxrp2q5xb0FrkkclhCutonbxQaj-s,6368
285
+ xinference/thirdparty/fish_speech/tools/smart_pad.py,sha256=O6fCgrSouBX6prkrj6a03DPI-5loiS_oKaidtIXxuFg,1626
286
+ xinference/thirdparty/fish_speech/tools/webui.py,sha256=hFtvzH487LrcWoma9MrMk1uNJAicg2-0ynYA2zyMqzw,14978
289
287
  xinference/thirdparty/fish_speech/tools/whisper_asr.py,sha256=uG6NsSnH6oLEkCRM-Tb8o6L7OKDZ1eSVd8obEoq7jVc,4893
290
288
  xinference/thirdparty/fish_speech/tools/llama/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
291
- xinference/thirdparty/fish_speech/tools/llama/build_dataset.py,sha256=sRWljD4-WIziEG8uDbfuOiZ3OsK1Ug1yRKNu9cCrjHw,4910
289
+ xinference/thirdparty/fish_speech/tools/llama/build_dataset.py,sha256=rOVoiXPpKqwT2C2cDhTgw8TMNH5Tq0QzejPd4Y387zY,4898
292
290
  xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py,sha256=vF2OVE4kj5qVaBBHGR1eTqcmLWvUeoO4OMj9eUkTXvw,4623
293
- xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=czEjxx_RnHzfwN8A0ZO4FkYcbivFGQaJJv3ucgtQYHM,21644
294
- xinference/thirdparty/fish_speech/tools/llama/merge_lora.py,sha256=fQSKyLIGV8B1xDuzxCWVMu8WSO_wbYqR_mwLfFNTnJk,3277
295
- xinference/thirdparty/fish_speech/tools/llama/quantize.py,sha256=kyFK1FuszL6erStml8jqxqDR43LjgcjlT1d3LeHwTz8,16606
291
+ xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=kUTJpn3K0LgatspiCjOfx2t8pjp3sNM6FbsLugVGxHM,21766
292
+ xinference/thirdparty/fish_speech/tools/llama/merge_lora.py,sha256=VS-ZYzar8-MKj4PCzEoRjIin7GISVk6accZJXvrZHWQ,3273
293
+ xinference/thirdparty/fish_speech/tools/llama/quantize.py,sha256=meAgs8IXCDjUz6R8ihvFMLNqo7MDJnSDi0sE-DAUJA0,16602
296
294
  xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py,sha256=MuFdqOsU2QHq8cSz7pa4PAsjZyrJrghCZQR2SrpplTQ,2025
297
295
  xinference/thirdparty/fish_speech/tools/sensevoice/README.md,sha256=KD334P_t33hZcbxKFIOpQIrcuBMahpc1prBMht_s1Nw,2457
298
296
  xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
297
  xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py,sha256=abg8hFiVcWwhJYT_E8De-vYRUQOs1u0Zxxgz1nj1790,22739
300
- xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py,sha256=gLpuvycuY2_QyOqBbwfBCtDQ9CdEQovcBOvmbHvHqjo,10182
298
+ xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py,sha256=4Tau7ImBXLF-Atgnzb_-volKCb5nas56iBnLVlucL9k,10182
301
299
  xinference/thirdparty/fish_speech/tools/sensevoice/vad_utils.py,sha256=QZhdJN6PiJUWui_8fdt_-BA32OKVfvjqV8roavLna20,2214
302
300
  xinference/thirdparty/fish_speech/tools/vqgan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
303
301
  xinference/thirdparty/fish_speech/tools/vqgan/create_train_split.py,sha256=aWQeRSJ_KRPp72qtXoFvxJkkP6P-73VKIew2iIeETos,2996
304
- xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py,sha256=85HKh1ZI0wgeMsX1viEZbv3JIVFCUa5X0euhXSPwiGM,6770
305
- xinference/thirdparty/fish_speech/tools/vqgan/inference.py,sha256=6YuLl23AMpPj07hZCsPfAn0DQUL9wV4i3T096h8csmo,3777
302
+ xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py,sha256=Y3SW4bNPQFDa4TOpL_bliTt4e_4N3G39lWLDIK78I7U,6762
303
+ xinference/thirdparty/fish_speech/tools/vqgan/inference.py,sha256=wdXfDFtAaxv0_ggZqqJo0-8qMU_KrDTDmEKMwe0aaLs,3790
306
304
  xinference/thirdparty/internvl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
307
305
  xinference/thirdparty/internvl/conversation.py,sha256=2wLSnfxyLItQaLd-N5xoybBPKyZadXkVntPuMV5iyGo,15040
308
306
  xinference/thirdparty/llava/__init__.py,sha256=UlCNtyBVX645CB6S6LfyYkTfQVO18_a8e9SmR7cHExA,41
@@ -394,14 +392,14 @@ xinference/thirdparty/whisper/normalizers/english.json,sha256=Zgf5SL6YJNLhsvoiI8
394
392
  xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc3yhvWzWuMhQzRnp2dM6IQdA,20868
395
393
  xinference/web/ui/package-lock.json,sha256=r6y_nAa8SfAETbx3ysAKcRf2SznsSAxpLwtArCJbCCI,760153
396
394
  xinference/web/ui/package.json,sha256=fkEgsboguEVK9yuRrJjN7Alhyo38qV1Ih83qQFVr6SQ,2023
397
- xinference/web/ui/build/asset-manifest.json,sha256=JsxJcqvCpABiTFNq_q10da2D6JO8Y_joqMCvvu55lzA,453
395
+ xinference/web/ui/build/asset-manifest.json,sha256=6X7zvijVbst5ZZcBt7kYz9eT-F0yVUq3UoE6UU8t_wc,453
398
396
  xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
399
- xinference/web/ui/build/index.html,sha256=J054Qn5sLoQmemY-NjU9PWBw9WqYstwZfHAsSqaaudw,650
400
- xinference/web/ui/build/static/css/main.632e9148.css,sha256=kAvPreUFdldbBGi1QIU27zXMVz0FeJy9r_44xvcKTng,4285
401
- xinference/web/ui/build/static/css/main.632e9148.css.map,sha256=NWLzj-DfnQkz2ciD71N1fhP3agE1cAG1_Zi-GRduIPc,8520
402
- xinference/web/ui/build/static/js/main.9cfafbd6.js,sha256=72b9Vu0dzh_WT50XLN4pNadBijqiVBe_HtnEBAbZcn4,1118249
403
- xinference/web/ui/build/static/js/main.9cfafbd6.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
404
- xinference/web/ui/build/static/js/main.9cfafbd6.js.map,sha256=3zWzFpEyqnm9RDj9gC8DflznhwvS68CX15Y0UYOnL2M,4908759
397
+ xinference/web/ui/build/index.html,sha256=jsSYAfo88wjUdYkQ6rq43j1RFXCc3QvlKhvD5xyBFfc,650
398
+ xinference/web/ui/build/static/css/main.5061c4c3.css,sha256=P7rcts4xzIqV_ikvTokJEYzZ5R9w_3wigAhs7ai9hgU,4392
399
+ xinference/web/ui/build/static/css/main.5061c4c3.css.map,sha256=K2E6sUL58gZNSOo_9U-IMm9XCKQfnBlehW72IEYQQCw,8658
400
+ xinference/web/ui/build/static/js/main.29578905.js,sha256=oAsfQLr2H2PVKZEgemIpbXp9M5i97LDCXJ3keBoa1W0,1121905
401
+ xinference/web/ui/build/static/js/main.29578905.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
402
+ xinference/web/ui/build/static/js/main.29578905.js.map,sha256=mXTXFmg9dWdyojAX3CjwzvQKzaXssDw8jGOvJmvmkJo,4920100
405
403
  xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
406
404
  xinference/web/ui/node_modules/.package-lock.json,sha256=_V6n9fLvF1laSHVMZb9Z6wwLvUphwXM7kuMW2TD5FX4,758073
407
405
  xinference/web/ui/node_modules/.cache/babel-loader/00012b59e7dc64a18400bdddb660faa295258241c0b9cd15c78cdba63b858ed8.json,sha256=FhiSQ9MQv6bT7TkLBlXXskoaG2HCKhsuTXXlkDV-pM4,668
@@ -495,7 +493,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/01d0efe16185a45201232a3b0195c
495
493
  xinference/web/ui/node_modules/.cache/babel-loader/01d11d55e8123666553e77ed73e2be79eab730f930733ce9ae0b6f77d68a24bb.json,sha256=R7L_1xyL7FE-XCcW5a7nrR5rCwUpK4p5Iqk5JyIwA4Y,1214
496
494
  xinference/web/ui/node_modules/.cache/babel-loader/01d29f559aca7ac4f0173fa2fc0109bb25075796bc55344b9ea67de7225bae45.json,sha256=tnzKkXfR7IZAWbG9F3yB4tzTZFDcLGXk9qm7UWJEq9k,1180
497
495
  xinference/web/ui/node_modules/.cache/babel-loader/01d2f7c798017979f45345f233c15de936d699ca0503cba19e1d9a27d8bcbdc5.json,sha256=4jpn23HRCP-SDZ0FNwzkRWAZLefEvrjIGZGZnmJ4ABg,1358
498
- xinference/web/ui/node_modules/.cache/babel-loader/01d6d198156bacbd436c51435edbd4b2cacd47a79db929105eba30f74b67d48d.json,sha256=nGGo547CKcOY8tu0NbOTESY629aVkJwG_XSBAZTUEtQ,110954
499
496
  xinference/web/ui/node_modules/.cache/babel-loader/01dd081b12a8c7ea283dc0a1c441a06ecbcd46ecd8b906a835b79bd26d91d18f.json,sha256=m_OmC-ml3p88AiK-w8x_jxE-Mx4ZDydBKh8x8GoyBmM,4037
500
497
  xinference/web/ui/node_modules/.cache/babel-loader/01e1206a2e529c33335aedf53a5cfc56961cb20236612fca7223b4d8cb46f9f5.json,sha256=eOcxatBPdGM9rAGyy9cyXZyAPQOsCoEa6Z9LgZBujN4,801
501
498
  xinference/web/ui/node_modules/.cache/babel-loader/01e3beb0d20ce88796ce79b39c732ad1c2e79137981202ca317911211939978d.json,sha256=WYsuMdWmdLV3KkvWDiAgszXPAVHyNVSK8lSlr8xKs9M,1996
@@ -4670,7 +4667,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/59d7c51e2656b581ffd10c0affff6
4670
4667
  xinference/web/ui/node_modules/.cache/babel-loader/59df1384033e89d592d1a265f981ffa7aabd25c4d7a1752c87d7c88ef13edc87.json,sha256=vLj2K33jtdS4ACUGUq_mh7N_obtlZ1WDWj7-jQCpv9I,1197
4671
4668
  xinference/web/ui/node_modules/.cache/babel-loader/59e1297d4bf1a3f0bda54890e8877ae45b73be367eeb9e9a189a79d7be2db74c.json,sha256=PInf2mMMdWK6_sZy-kp7Tf1-4ZhmLvy3K-VCcUIHqYo,1128
4672
4669
  xinference/web/ui/node_modules/.cache/babel-loader/59e458616e72c12bd2b88ab2f450de2bd8edf84103a8bb676c38bb1a9cc5f76e.json,sha256=hSYjCXJ1aurlIwrKKBLxErDu0wdIPllXJpPXVHaI4cQ,991
4673
- xinference/web/ui/node_modules/.cache/babel-loader/59eb25f514afcc4fefd1b309d192b2455f1e0aec68a9de598ca4b2333fe2c774.json,sha256=Ys4zHFTXfrZlIESFRN_UcvfqCXFrENFP998g17C_Gh8,10600
4674
4670
  xinference/web/ui/node_modules/.cache/babel-loader/59ed2ee09c899267f2de5626e98853dafd2c34e7b831036ea466ee6578b62ef1.json,sha256=01z-8ACah8bWyaqNUQFHHeFCeZRZbZ-mUThpq3vfW_w,1377
4675
4671
  xinference/web/ui/node_modules/.cache/babel-loader/59f05b847f267d1c05e43c0a5b7155a9600762e7a2b027c07a40ec13d688deec.json,sha256=OrzkscNc1Y8t332YatE5-AYdtPhWRYRCtkN4eGmW-k8,1426
4676
4672
  xinference/web/ui/node_modules/.cache/babel-loader/59f3a22c87ca60562679025a1aadc66e86d31c3900bdd993d00e85c888f3d1b0.json,sha256=gstd9Xg8d37hAplKFR-e57DYxxxzoHWpqW0k4vQ_KNI,1343
@@ -9870,6 +9866,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/c794daf613ddd9142366357e09711
9870
9866
  xinference/web/ui/node_modules/.cache/babel-loader/c7aa20ac57be2861a8c571b55f5411843904f2bd134bf0d3e8afbe85f7260715.json,sha256=lYa7T_mmP1UoLArApGXVhWEev5ZSFapDHqsUq41tDHM,1029
9871
9867
  xinference/web/ui/node_modules/.cache/babel-loader/c7acca6547f99d9b9567fad4a2facfd526d336ab01005f6c74cca5f9efacc19b.json,sha256=_yJ326jZpvxmBMpf35g1SA2Vr6pquXJigTkgt4S3EYg,1669
9872
9868
  xinference/web/ui/node_modules/.cache/babel-loader/c7bbf1207d587797be6c4797903b294efa7b08baded26a7df5223ddc7e639924.json,sha256=whjHlO5kuilci2eJ_lgEQwAewMJqVheYi__6iFubB0g,1273
9869
+ xinference/web/ui/node_modules/.cache/babel-loader/c7bf40bab396765f67d0fed627ed3665890608b2d0edaa3e8cb7cfc96310db45.json,sha256=2FcHTVbxn7nlJjR05wRgqy0opLopdD38ZY0RRHc3sV8,132660
9873
9870
  xinference/web/ui/node_modules/.cache/babel-loader/c7bf5e13f8b336cdb46a6a3a50ff314248b33ed3c7e92eee011f83fcbee82725.json,sha256=C5u-uVYiYbqiSgvghD2lnZuSHDuUpF5mA24qTZExld4,15906
9874
9871
  xinference/web/ui/node_modules/.cache/babel-loader/c7bf9982a714496a1410049be141d9f21e58e47af6fd6f123a6097933c804dd1.json,sha256=tf_msOTTEo3AkmUjNKDnIB1DQ9YbwniLNGvdhanFxzs,2541
9875
9872
  xinference/web/ui/node_modules/.cache/babel-loader/c7c271c62e079b812ede2349098c8fbfd40f4760bc0881b7a25ef060f46ef5f2.json,sha256=5OeiLeelTM3VdQtpdRsgg4wIB4LHgNchGIRzdFpYf9U,2099
@@ -11295,6 +11292,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/e41fb0f646b017f61d83076f66e15
11295
11292
  xinference/web/ui/node_modules/.cache/babel-loader/e42494915054a5dad23ba3b78b66088888c6b238a1b94ee189097228a1c0543a.json,sha256=7Y0AZQ6BjK9_ZRSLKx1b2bkyGPIsT64CwPyjUxOgl2I,2317
11296
11293
  xinference/web/ui/node_modules/.cache/babel-loader/e427f1000001e7d6f6b6e5c07e7b74c0a538b03b09cbbcb4ebf5a8ee2d5d0bc5.json,sha256=wb6iZjtQRRJuhQ7KGdW-BsIqw2iM6yUp47vJdp6-upk,2157
11297
11294
  xinference/web/ui/node_modules/.cache/babel-loader/e429d5a5014100a41c720a5324a139bcc1cf1a662a723ea7209d17719a480953.json,sha256=emqP8a3UO8tCaVZcqsItMi9u0dUqQeLpUNECJ1KvlH0,1879
11295
+ xinference/web/ui/node_modules/.cache/babel-loader/e42b72d4cc1ea412ebecbb8d040dc6c6bfee462c33903c2f1f3facb602ad742e.json,sha256=4RdDbeoTkIPgwxqprQ4QzACTSNuK8l_xiug-sdAeoSw,9831
11298
11296
  xinference/web/ui/node_modules/.cache/babel-loader/e42cc78022decaa22d66b47d2e2970f777682872d52622cd0b239e06df3fd61c.json,sha256=5XJHafg1U5xiVCjr6iO5rEt7-H6FUVc2Sjjq3xlPYKQ,6379
11299
11297
  xinference/web/ui/node_modules/.cache/babel-loader/e43d0d99318a292776677dbd344d482e969ef8a57428b6aa1ef555f940f2aa1f.json,sha256=hbKSPSXQLPGpUq0CF1TAkDvzUhoI7g5ZCDlw46emb_A,2174
11300
11298
  xinference/web/ui/node_modules/.cache/babel-loader/e440da7abd7b46e4802e3e0251d6d5411eb4dce999cf08ec9cad1f7976614567.json,sha256=wL-lW1XVx1SQ1a5HDzSuaZXASZWdQqgTwh1pzIeneIw,1367
@@ -15508,9 +15506,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
15508
15506
  xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
15509
15507
  xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
15510
15508
  xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
15511
- xinference-0.15.0.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15512
- xinference-0.15.0.dist-info/METADATA,sha256=uQs5S_HFq7LC3eJBkaAbXj9dcJbM_gQcKSF3pfXE1pM,18757
15513
- xinference-0.15.0.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
15514
- xinference-0.15.0.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15515
- xinference-0.15.0.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15516
- xinference-0.15.0.dist-info/RECORD,,
15509
+ xinference-0.15.2.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15510
+ xinference-0.15.2.dist-info/METADATA,sha256=xyyDSCgqBq61p4g8hsX9-wwN6aLECuWkpMO3HcgRpcA,19083
15511
+ xinference-0.15.2.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
15512
+ xinference-0.15.2.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15513
+ xinference-0.15.2.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15514
+ xinference-0.15.2.dist-info/RECORD,,