xinference 0.13.2__py3-none-any.whl → 0.13.3__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 (78) hide show
  1. xinference/__init__.py +0 -1
  2. xinference/_version.py +3 -3
  3. xinference/api/restful_api.py +26 -4
  4. xinference/client/restful/restful_client.py +16 -1
  5. xinference/core/chat_interface.py +2 -2
  6. xinference/core/model.py +8 -3
  7. xinference/core/scheduler.py +4 -4
  8. xinference/model/audio/core.py +5 -2
  9. xinference/model/audio/cosyvoice.py +136 -0
  10. xinference/model/audio/model_spec.json +24 -0
  11. xinference/model/audio/model_spec_modelscope.json +27 -0
  12. xinference/model/flexible/launchers/__init__.py +1 -0
  13. xinference/model/flexible/launchers/image_process_launcher.py +70 -0
  14. xinference/model/image/model_spec.json +7 -0
  15. xinference/model/image/stable_diffusion/core.py +6 -1
  16. xinference/model/llm/llm_family.json +802 -82
  17. xinference/model/llm/llm_family_csghub.json +39 -0
  18. xinference/model/llm/llm_family_modelscope.json +295 -47
  19. xinference/model/llm/pytorch/chatglm.py +243 -5
  20. xinference/model/llm/pytorch/cogvlm2.py +1 -1
  21. xinference/model/llm/utils.py +78 -1
  22. xinference/model/llm/vllm/core.py +8 -0
  23. xinference/thirdparty/cosyvoice/__init__.py +0 -0
  24. xinference/thirdparty/cosyvoice/bin/__init__.py +0 -0
  25. xinference/thirdparty/cosyvoice/bin/inference.py +114 -0
  26. xinference/thirdparty/cosyvoice/bin/train.py +136 -0
  27. xinference/thirdparty/cosyvoice/cli/__init__.py +0 -0
  28. xinference/thirdparty/cosyvoice/cli/cosyvoice.py +83 -0
  29. xinference/thirdparty/cosyvoice/cli/frontend.py +168 -0
  30. xinference/thirdparty/cosyvoice/cli/model.py +60 -0
  31. xinference/thirdparty/cosyvoice/dataset/__init__.py +0 -0
  32. xinference/thirdparty/cosyvoice/dataset/dataset.py +160 -0
  33. xinference/thirdparty/cosyvoice/dataset/processor.py +369 -0
  34. xinference/thirdparty/cosyvoice/flow/__init__.py +0 -0
  35. xinference/thirdparty/cosyvoice/flow/decoder.py +222 -0
  36. xinference/thirdparty/cosyvoice/flow/flow.py +135 -0
  37. xinference/thirdparty/cosyvoice/flow/flow_matching.py +138 -0
  38. xinference/thirdparty/cosyvoice/flow/length_regulator.py +49 -0
  39. xinference/thirdparty/cosyvoice/hifigan/__init__.py +0 -0
  40. xinference/thirdparty/cosyvoice/hifigan/f0_predictor.py +55 -0
  41. xinference/thirdparty/cosyvoice/hifigan/generator.py +391 -0
  42. xinference/thirdparty/cosyvoice/llm/__init__.py +0 -0
  43. xinference/thirdparty/cosyvoice/llm/llm.py +206 -0
  44. xinference/thirdparty/cosyvoice/transformer/__init__.py +0 -0
  45. xinference/thirdparty/cosyvoice/transformer/activation.py +84 -0
  46. xinference/thirdparty/cosyvoice/transformer/attention.py +326 -0
  47. xinference/thirdparty/cosyvoice/transformer/convolution.py +145 -0
  48. xinference/thirdparty/cosyvoice/transformer/decoder.py +396 -0
  49. xinference/thirdparty/cosyvoice/transformer/decoder_layer.py +132 -0
  50. xinference/thirdparty/cosyvoice/transformer/embedding.py +293 -0
  51. xinference/thirdparty/cosyvoice/transformer/encoder.py +472 -0
  52. xinference/thirdparty/cosyvoice/transformer/encoder_layer.py +236 -0
  53. xinference/thirdparty/cosyvoice/transformer/label_smoothing_loss.py +96 -0
  54. xinference/thirdparty/cosyvoice/transformer/positionwise_feed_forward.py +115 -0
  55. xinference/thirdparty/cosyvoice/transformer/subsampling.py +383 -0
  56. xinference/thirdparty/cosyvoice/utils/__init__.py +0 -0
  57. xinference/thirdparty/cosyvoice/utils/class_utils.py +70 -0
  58. xinference/thirdparty/cosyvoice/utils/common.py +103 -0
  59. xinference/thirdparty/cosyvoice/utils/executor.py +110 -0
  60. xinference/thirdparty/cosyvoice/utils/file_utils.py +41 -0
  61. xinference/thirdparty/cosyvoice/utils/frontend_utils.py +125 -0
  62. xinference/thirdparty/cosyvoice/utils/mask.py +227 -0
  63. xinference/thirdparty/cosyvoice/utils/scheduler.py +739 -0
  64. xinference/thirdparty/cosyvoice/utils/train_utils.py +289 -0
  65. xinference/web/ui/build/asset-manifest.json +3 -3
  66. xinference/web/ui/build/index.html +1 -1
  67. xinference/web/ui/build/static/js/{main.95c1d652.js → main.2ef0cfaf.js} +3 -3
  68. xinference/web/ui/build/static/js/main.2ef0cfaf.js.map +1 -0
  69. xinference/web/ui/node_modules/.cache/babel-loader/b6807ecc0c231fea699533518a0eb2a2bf68a081ce00d452be40600dbffa17a7.json +1 -0
  70. {xinference-0.13.2.dist-info → xinference-0.13.3.dist-info}/METADATA +16 -8
  71. {xinference-0.13.2.dist-info → xinference-0.13.3.dist-info}/RECORD +76 -32
  72. xinference/web/ui/build/static/js/main.95c1d652.js.map +0 -1
  73. xinference/web/ui/node_modules/.cache/babel-loader/709711edada3f1596b309d571285fd31f1c364d66f4425bc28723d0088cc351a.json +0 -1
  74. /xinference/web/ui/build/static/js/{main.95c1d652.js.LICENSE.txt → main.2ef0cfaf.js.LICENSE.txt} +0 -0
  75. {xinference-0.13.2.dist-info → xinference-0.13.3.dist-info}/LICENSE +0 -0
  76. {xinference-0.13.2.dist-info → xinference-0.13.3.dist-info}/WHEEL +0 -0
  77. {xinference-0.13.2.dist-info → xinference-0.13.3.dist-info}/entry_points.txt +0 -0
  78. {xinference-0.13.2.dist-info → xinference-0.13.3.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
- xinference/__init__.py,sha256=0LgIveLP6CXxoIaSrxhlFyOh0lOqPgJBVcBe0tkWJjc,987
1
+ xinference/__init__.py,sha256=muQ9V9y11BcIqlZhhc06oDf193H7bwDIa8e_wSoDKI8,986
2
2
  xinference/_compat.py,sha256=SQAjZMGxtBIce45qtW7ob7RWzA0zhv2yB3AxT0rb0uU,1778
3
- xinference/_version.py,sha256=npzZYwlsc_rih9EcKTaoGkkL3KLm52-9xfgm8jq_R4A,498
3
+ xinference/_version.py,sha256=5ujRiSf5jNIEB1Hj3DMCJYbIknfSn1FMqoZZ_UsC1Gw,498
4
4
  xinference/conftest.py,sha256=FF-ZkqkfOxQw4hz_8G7p5aB7gFdsJlr6u2ZdFuuauAA,9744
5
5
  xinference/constants.py,sha256=_uyBB84fgZM64J3mw8_RELVJfm_dgeNRUZF9t9ZuFcM,3541
6
6
  xinference/device_utils.py,sha256=zswJiws3VyTIaNO8z-MOcsJH_UiPoePPiKK5zoNrjTA,3285
@@ -9,7 +9,7 @@ xinference/isolation.py,sha256=uhkzVyL3fSYZSuFexkG6Jm-tRTC5I607uNg000BXAnE,1949
9
9
  xinference/types.py,sha256=mN6lTFGqwFCycCMCwNELtRm2lmvuynvzD7Wwq_NEINY,14255
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=7n77U-5t0SDzpOOad4SqbFbZx-fSIQJJdM_bLwdozus,74572
12
+ xinference/api/restful_api.py,sha256=4RCS4t59_qJF377OcQRii1a_RdZ8JxmlaXu_9jf6fU8,75313
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,16 +18,16 @@ xinference/client/__init__.py,sha256=Gc4HOzAy_1cic5kXlso7hahYgw89CKvZSJDicEU461k
18
18
  xinference/client/common.py,sha256=iciZRs5YjM2gYsXnwACPMaiBZp4_XpawWwfym0Iyu40,1617
19
19
  xinference/client/handlers.py,sha256=3gd9C7u4URbcVdR6Eyv8cpEZ175Ll4q_jGL07CnEIpg,648
20
20
  xinference/client/restful/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
21
- xinference/client/restful/restful_client.py,sha256=fMgazFQRSMefUx0_40Q_9c3o7mf0G39D8HmlkQ9KFhs,54304
21
+ xinference/client/restful/restful_client.py,sha256=kBZrMyd6VyBGQkwnJIcspd-pV93SCg60j16MELPR-sU,54809
22
22
  xinference/core/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
23
23
  xinference/core/cache_tracker.py,sha256=2hk8ANOYruhxAt4MPz482tYEQcvYBh_B7sq0eYd0rTU,6963
24
- xinference/core/chat_interface.py,sha256=7SOm6Qi-iFh1otycHpn6CpISq2wTLlJzEUngJtOwMIk,19558
24
+ xinference/core/chat_interface.py,sha256=Q2G6mZBCLIPZrRzvqGRAGfstMz0DAlXjbpIpb_gZE3M,19590
25
25
  xinference/core/event.py,sha256=Lkx_-Ohwyzyt-MBbkrZy9N-7aeYs-wux0fDtZpa2SJY,1632
26
26
  xinference/core/image_interface.py,sha256=G2iK24auEN4MrLkPlu1CAA_gf-BQrGQTjazi_FYqIxE,8825
27
27
  xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
28
- xinference/core/model.py,sha256=QWz9LeUyWwwlgxzE0JQmsNqaMc1uwtU_Q3wm6H430rw,26778
28
+ xinference/core/model.py,sha256=gicLlpWDZ1eHI8YN3q5RnYzN7g_mwK6K-XM8sveC7w0,26923
29
29
  xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
30
- xinference/core/scheduler.py,sha256=e-fhhMeWmVdx_37sNDf2BOkvHt_17wclNcby7DcUNso,15627
30
+ xinference/core/scheduler.py,sha256=WaWgmVL5FIdcanP1RqMKvnObf7BHldREpYwRUePnTQo,15691
31
31
  xinference/core/status_guard.py,sha256=fF5hisvfn6es9DV6Z6RRD6V_S_uLcb8lHM6PArGgb04,2820
32
32
  xinference/core/supervisor.py,sha256=WMVFXS4aJVhTQw2mFzgk2yYk3pdqtg_1dN0ux4HRveQ,50736
33
33
  xinference/core/utils.py,sha256=LqPrez5dGELRQDSwOD5EP8XHb-aUKAdyszS-QpNouuw,6401
@@ -48,10 +48,11 @@ xinference/model/core.py,sha256=5dr7y2cq2OS3aFgqIIR3uQbT1ln3xiolUsbXgu2dHGw,3999
48
48
  xinference/model/utils.py,sha256=NGIXgpkUY0dXGxnh-FsfeNq6OS9SPwBzNfASLXWCqUo,15146
49
49
  xinference/model/audio/__init__.py,sha256=QyQwELIYk7DuD5Hen2q45pLMJ4K8iAnto8zlOA9QUSY,2839
50
50
  xinference/model/audio/chattts.py,sha256=JZA_0TR4nMGqJ-2WYqwb8DcjhsTC57D0QlkPBl4v788,3973
51
- xinference/model/audio/core.py,sha256=uMkZpd5IIs9WK8K0t2FWiGKagcicSjK20w4USKGSCEw,5708
51
+ xinference/model/audio/core.py,sha256=aSBT6PGqBgLsgpXrHqlZfTTxDhxfODROsZSotgxxl4Y,5903
52
+ xinference/model/audio/cosyvoice.py,sha256=rX_Msy05ymN-J6fdV7fXia36p5CDG7z0aslJows5MRY,4988
52
53
  xinference/model/audio/custom.py,sha256=01NTD927pairIBWOo9At6Bjqpo1kdcIn3AVijbOdp7Y,5056
53
- xinference/model/audio/model_spec.json,sha256=ueOHO14d8lIzuiExJyPUgC3swYA3CfgOgMiDu5L1cOA,3205
54
- xinference/model/audio/model_spec_modelscope.json,sha256=W40W8vxtumGbV-M07TqPVS-Hr8RJ4oZlYsnp_EnGC4Q,474
54
+ xinference/model/audio/model_spec.json,sha256=4Jl9i4GNsZQnVG8Zcv_3Ne_h7kHiSAciTOM3W048JFo,3973
55
+ xinference/model/audio/model_spec_modelscope.json,sha256=yuYQgJ_xPhPKvBZ9KIOrJFxcwvhFpN5e3A9FNL5_rPw,1209
55
56
  xinference/model/audio/utils.py,sha256=pwo5cHh8nvhyBa9f-17QaVpXMSjmbpGbPYKwBBtEhGM,717
56
57
  xinference/model/audio/whisper.py,sha256=NjtaSAJcj_IpJX3drT9NPWNrprVbeLlsDq4uH8AZE8M,7772
57
58
  xinference/model/embedding/__init__.py,sha256=0FLzOZyOuMctxFvhobkLXRUepwHck6RPbtjCct1eMI8,2854
@@ -63,24 +64,25 @@ xinference/model/embedding/utils.py,sha256=t_y-7TrYenJKzX3p8e8KWXyC66u7Kd7lMvSzE
63
64
  xinference/model/flexible/__init__.py,sha256=AmJBQVIHyrLtDe1kDxxvJIUL_KmVSkiu4PWg61BRBhg,1408
64
65
  xinference/model/flexible/core.py,sha256=6tRNaf-CWdYOBWpADyvTcNBAMs450-VvWU7ACY0OeVU,6975
65
66
  xinference/model/flexible/utils.py,sha256=_GlEarRHKPAxT7o6N39VOd9sB580zKzdSktqjbdrNig,1145
66
- xinference/model/flexible/launchers/__init__.py,sha256=x_5s73qABN_94hnf5UyrfyxUObayntD6Gh1UOtctCe8,642
67
+ xinference/model/flexible/launchers/__init__.py,sha256=X8w_2hKuQ9H3f90XYK7H_AQU4J8lHQdEeUNBZcdqso8,704
68
+ xinference/model/flexible/launchers/image_process_launcher.py,sha256=APbbHls0N9DpLFL6_qTexuc5o6bQAvdgJEAZWU4clyw,2510
67
69
  xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRUGhulP4PRJ4fZEJ2D9cfv7lcC2qJBoDE,2012
68
70
  xinference/model/image/__init__.py,sha256=lDtP961bpu6h5TK57kJ531Zoch2xU5DM-Eco_YQne-Y,2780
69
71
  xinference/model/image/core.py,sha256=zpaiym5t5cWrBOOscvFFBBUD4-YWBU_NZLsyuqeeamA,8809
70
72
  xinference/model/image/custom.py,sha256=nn1iZDTYNz68A2gWFXvUuv__Gx8EGdkz_sHvHnPnSoA,3841
71
- xinference/model/image/model_spec.json,sha256=kQMWtQo-Z4tawKdgckYFJz1fvbGnXVSZGQsGwjOxa3M,3681
73
+ xinference/model/image/model_spec.json,sha256=Wnsp7bf7opQn1WlXrYm-zq4LfKwd_8EgbydFKYSPTfY,3944
72
74
  xinference/model/image/model_spec_modelscope.json,sha256=vWAoR1gsexay6jn8vnObslYF3YE5SAfqMcJPkYQ-Wc4,3176
73
75
  xinference/model/image/utils.py,sha256=gxg8jJ2nYaDknzCcSC53WCy1slbB5aWU14AbJbfm6Z4,906
74
76
  xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
75
- xinference/model/image/stable_diffusion/core.py,sha256=e2kpID5iTUTWuMO01aF7z4uGMpAttF1g1nSnwdDNIz4,7349
77
+ xinference/model/image/stable_diffusion/core.py,sha256=nHwi5AagrEhpglbXZNVjpyUtUYN9O6TA4iGItpsyyT4,7580
76
78
  xinference/model/llm/__init__.py,sha256=D9zXjltqlzKahDiOFYyn_EcLoiw_6tO8bhj3u8wnT0A,11462
77
79
  xinference/model/llm/core.py,sha256=ZAzRGphjRZ2KAdTPADIuqSbVU9dTQrHgLvCEgNP9pOk,8088
78
- xinference/model/llm/llm_family.json,sha256=6ZXDEqlZddhrR9A3lnOtzmEdOMd7rfc4DexRzeJVodw,184400
80
+ xinference/model/llm/llm_family.json,sha256=OnNYm31iXF1eNK2aG76xeFZI59VQAH_CgdpInYLiXaY,203772
79
81
  xinference/model/llm/llm_family.py,sha256=2XykGoXMIffDIOCI1hefprgPJTOvE80r7Rh6Zosb6dY,42934
80
- xinference/model/llm/llm_family_csghub.json,sha256=zWiMlX0mbCvuaR7gZh0qDPRPaswFJ-zKssuN6XuAQ6s,1417
81
- xinference/model/llm/llm_family_modelscope.json,sha256=BQR99BYPXxXxq0CnFiVlAEUUeuOLXezCTBVPhdZs1Jg,116982
82
+ xinference/model/llm/llm_family_csghub.json,sha256=fqIodnCl2_VUpX1NaBdVYApG2LRkXMhUxLNhLt8C7W8,3057
83
+ xinference/model/llm/llm_family_modelscope.json,sha256=kwlP8gr4Ita1nKWjjJ9-PnCUz-LXTkvj9HK8PrZHDZw,122915
82
84
  xinference/model/llm/memory.py,sha256=PTD8m6TCZVU1zrwc9wepX9cUjCqAXBENj6X7tjua0to,10207
83
- xinference/model/llm/utils.py,sha256=3KkpM-HaI97jAFj5Pb1-Kau3BL8-8d-SypDkKCWFqPs,32655
85
+ xinference/model/llm/utils.py,sha256=pkMLvc9o9qnCTbBEwaT-RFj2EBKzuL1zloX-4p_gIFE,35424
84
86
  xinference/model/llm/ggml/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
85
87
  xinference/model/llm/ggml/llamacpp.py,sha256=KTcMqgXkdk6TQLH7QxqlyVOnbaj9A8cL1JeRvzc15es,12983
86
88
  xinference/model/llm/ggml/tools/__init__.py,sha256=6a6P2VPKE06xKxJ-dTqp4TRO2IEDWvtcVP6gHutAR0M,624
@@ -90,8 +92,8 @@ xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7V
90
92
  xinference/model/llm/mlx/core.py,sha256=7gCdf4rvO3vdzTpGYNnTR0mKW8nQx93gshmbzfwSVEw,14135
91
93
  xinference/model/llm/pytorch/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
92
94
  xinference/model/llm/pytorch/baichuan.py,sha256=TpCfi37Ou87VA8S5siGRUK5JWC5SjGbZYkZoTe9VSA8,2883
93
- xinference/model/llm/pytorch/chatglm.py,sha256=CD73E6pQKTe6DFiTydrv92kaYQ4TJgT80zN9IWomzno,13864
94
- xinference/model/llm/pytorch/cogvlm2.py,sha256=TL1o2cOnyeSs5N55HlAR7v3URyHCyhlydeioh8z_ao4,18606
95
+ xinference/model/llm/pytorch/chatglm.py,sha256=AEoJRcg7k_QFtsVZzTUWFV5GnrQJ4ZPNgrbpT6A4alQ,22321
96
+ xinference/model/llm/pytorch/cogvlm2.py,sha256=3RaKxVD6AVNlCi6DokXPmcgINaRY1ImHxF5Gg9u6a70,18622
95
97
  xinference/model/llm/pytorch/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
96
98
  xinference/model/llm/pytorch/core.py,sha256=K9p_g4MXZW7SlJx5rE3BIkImf6Ss7gp3MOv2utOGxAI,30989
97
99
  xinference/model/llm/pytorch/deepseek_vl.py,sha256=T9DKP4cULvRaHSiU08lOWd_j6mt8b3ZIBByneZ0jY8U,11498
@@ -110,7 +112,7 @@ xinference/model/llm/pytorch/yi_vl.py,sha256=MljT7tpgFIhL6n5rdoS3hmq_u0rtHRE6cxX
110
112
  xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
111
113
  xinference/model/llm/sglang/core.py,sha256=9c4KgEFswu1Fx3qI4VFszv26902FwIifq9AVzMijDa4,14087
112
114
  xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
113
- xinference/model/llm/vllm/core.py,sha256=beZeuCR_wCbIjtU-WWM8q0rVPPPiPLO2VINnvNQfq8w,22165
115
+ xinference/model/llm/vllm/core.py,sha256=lTVlMQFw2sV__bX2z70bDyly-FHp2L01_IZWpFblkTE,22501
114
116
  xinference/model/rerank/__init__.py,sha256=BXIL1uu3ZpZHX9bODhW9lxKUXudZE7-OkXFmmM5rpMU,2817
115
117
  xinference/model/rerank/core.py,sha256=qAUwOdRHomn0uCzCw6klDxJSZyIDQ4tvgz9pOPm-0GY,12150
116
118
  xinference/model/rerank/custom.py,sha256=NKk7jA7p4xkuwS5WoOs2SY2wdnoAVpyCjBTvv317bBw,3917
@@ -118,6 +120,48 @@ xinference/model/rerank/model_spec.json,sha256=zZHVUq9B5vwTQOzXOXNK3pgGpQVrMG9np
118
120
  xinference/model/rerank/model_spec_modelscope.json,sha256=vSSC0aWy_DHnNDzzBcMWr2pqdISDmPS95FtD_YfMmn4,1275
119
121
  xinference/model/rerank/utils.py,sha256=MJAFL47G3r3zLVGXKoi0QLTgU3Xr4Ffv72Ipn--psew,713
120
122
  xinference/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
+ xinference/thirdparty/cosyvoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
+ xinference/thirdparty/cosyvoice/bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
+ xinference/thirdparty/cosyvoice/bin/inference.py,sha256=1A6V5MKal3hbV9Ge-euZFzvnwrjQzJdiqb27Lsz5TPg,5386
126
+ xinference/thirdparty/cosyvoice/bin/train.py,sha256=984UhhoGC5SO5fE3sL_k28Sndz9ElzUAO8FBqRYF9DM,5212
127
+ xinference/thirdparty/cosyvoice/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
+ xinference/thirdparty/cosyvoice/cli/cosyvoice.py,sha256=JZcBcDl-8esxu_5AWljG3bUPBhs0GikBpF4cSEB0_9o,4204
129
+ xinference/thirdparty/cosyvoice/cli/frontend.py,sha256=5ZRsZjVYSSEEC7iGQG62zFCzbhjygNPxKeR0Ougf86M,8997
130
+ xinference/thirdparty/cosyvoice/cli/model.py,sha256=ch5OExpMLgcEVKdM4-FnOT1yuOh1cj-cdJo_VOONFh4,3660
131
+ xinference/thirdparty/cosyvoice/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
132
+ xinference/thirdparty/cosyvoice/dataset/dataset.py,sha256=o4y725HGw4wOQ6ZKMIXUiXPJJuNlVCuat5yLKrfw50A,5233
133
+ xinference/thirdparty/cosyvoice/dataset/processor.py,sha256=Dd0r4VxbcR2o7cgCtYVPd_VxEc1uNIxCB7euLn0FxiM,13008
134
+ xinference/thirdparty/cosyvoice/flow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
+ xinference/thirdparty/cosyvoice/flow/decoder.py,sha256=4RXtRZwEgTZ_21m6TcYtYzjBtOR5GyaSfZKBjVB1bhc,8878
136
+ xinference/thirdparty/cosyvoice/flow/flow.py,sha256=I963uxLcL8csoN9qRG9I9T1zUBCt5DThaJAa4a32L_Y,5724
137
+ xinference/thirdparty/cosyvoice/flow/flow_matching.py,sha256=TMhnw1sUSJeJ1zLc-PcD9GWRNTGju6lv_zY23Y95vgo,5882
138
+ xinference/thirdparty/cosyvoice/flow/length_regulator.py,sha256=zGeA2yr3pj5VAw76taTDa7_bu33RuZTpFy2a1VZe64k,1841
139
+ xinference/thirdparty/cosyvoice/hifigan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
+ xinference/thirdparty/cosyvoice/hifigan/f0_predictor.py,sha256=4Ter1WnuSRA7wytzQfEtu-3PuA-Qrg3ywR5Hs7fsV74,1976
141
+ xinference/thirdparty/cosyvoice/hifigan/generator.py,sha256=uMlis-YTgXcVqYkGr7ZJVri25xFQFUbf5y9tVWQdRaA,14736
142
+ xinference/thirdparty/cosyvoice/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
+ xinference/thirdparty/cosyvoice/llm/llm.py,sha256=PTt0BtDpfQg9IT4sFLtyPs_EcF9mqSWWctqMfJsDuO4,9184
144
+ xinference/thirdparty/cosyvoice/transformer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
+ xinference/thirdparty/cosyvoice/transformer/activation.py,sha256=pKlsrqn3sFERKG3l6nYL39-cTlNEj1NCCFfcBKUEQMI,3089
146
+ xinference/thirdparty/cosyvoice/transformer/attention.py,sha256=QcK4hxfGnKa5F8ETBrpF0o15PeGDsbVBtxn3IdoATq0,14196
147
+ xinference/thirdparty/cosyvoice/transformer/convolution.py,sha256=619B8ySpciXHO5xDCvi7IxvXc4bvGEULsP0yn0aatOE,5230
148
+ xinference/thirdparty/cosyvoice/transformer/decoder.py,sha256=POqI_m6odD_pzhKIs1A-i281vbLSXSvIn80BoPUPF9s,16591
149
+ xinference/thirdparty/cosyvoice/transformer/decoder_layer.py,sha256=uVZiq3LsawsPUMOhX77PFvrLeG0yO0rKHQY7nCHA1k4,4807
150
+ xinference/thirdparty/cosyvoice/transformer/embedding.py,sha256=861_rmBYSXt8BGtlE_fREEXjWr5U7NXROaJIVHHjzkM,11316
151
+ xinference/thirdparty/cosyvoice/transformer/encoder.py,sha256=XWo-ofoMP5y-CnV_7somIdpXyUiKTsSmSqiRAXY-k9A,21400
152
+ xinference/thirdparty/cosyvoice/transformer/encoder_layer.py,sha256=8eMmGrfnPyXmXwrWLcxhX-mL8sj1eHaLXBhFnBkNDy8,9595
153
+ xinference/thirdparty/cosyvoice/transformer/label_smoothing_loss.py,sha256=24gEzxwg4a-_bDPeSDZYmxlH2IF5fQLVB8KoqNT0D90,3459
154
+ xinference/thirdparty/cosyvoice/transformer/positionwise_feed_forward.py,sha256=boA447zIyght3KUI-5udQL86uYvrq89clJNdAyMp0Pg,4219
155
+ xinference/thirdparty/cosyvoice/transformer/subsampling.py,sha256=MfwDR6hRq8EgXf1M9oCZwMQWWJw-maB7JQ6GMM7OGdA,12666
156
+ xinference/thirdparty/cosyvoice/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
157
+ xinference/thirdparty/cosyvoice/utils/class_utils.py,sha256=PnVIVrqHzyv9FA4mvpkHcvABQboGubVVELE_QVI40YA,2582
158
+ xinference/thirdparty/cosyvoice/utils/common.py,sha256=plT5c9yqr0BsaOUlub8UUcITDp2x29MoYXphjnFkV4Y,3414
159
+ xinference/thirdparty/cosyvoice/utils/executor.py,sha256=3SpBSW9iJ4wSRHv-qLEd3G_tMEL01b6ZAZC48hyqeEI,5114
160
+ xinference/thirdparty/cosyvoice/utils/file_utils.py,sha256=L9m_Cgx5EY1Fly7OXuVven1ynGR4rbuUbiyH5fKpxUA,1477
161
+ xinference/thirdparty/cosyvoice/utils/frontend_utils.py,sha256=v5CBGTaebwT4e4TFf33PmwRtFx9bACylpU88ycBursU,4042
162
+ xinference/thirdparty/cosyvoice/utils/mask.py,sha256=kAauQRdlhQGrC0BjvYFpicLOlVKDp3V3ZCnLbbTMaHU,8351
163
+ xinference/thirdparty/cosyvoice/utils/scheduler.py,sha256=BYzf1Ugnbba26wnoSfv_yq9FZaAJHLTn1q6QjgvZJQY,24940
164
+ xinference/thirdparty/cosyvoice/utils/train_utils.py,sha256=UsBZ-2kkew_hbdsUpQ4aVfiWvPBrF7IwcVGaCMPnbqU,11863
121
165
  xinference/thirdparty/deepseek_vl/__init__.py,sha256=N5CYTfTFEiTT7mrNrrGTSyvDOVkGVO3pE_fWm8ugcAw,1458
122
166
  xinference/thirdparty/deepseek_vl/models/__init__.py,sha256=gVJoBKpRfny6w_QpTrTh_iCqUtVJZLuctzfPQq-dKDw,1328
123
167
  xinference/thirdparty/deepseek_vl/models/clip_encoder.py,sha256=tn-uTCAcb63WOX6cB0rl2ynOsum23xy1tAvBqPbIHHo,8197
@@ -163,14 +207,14 @@ xinference/thirdparty/omnilmm/train/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY
163
207
  xinference/thirdparty/omnilmm/train/train_utils.py,sha256=L4JtFWDKtdEcQYpGW-UV6GCswTqHkiskK3phM9J-xUM,5634
164
208
  xinference/web/ui/package-lock.json,sha256=MDt0IM5NT4MvrBwKJxD6TlgqKHvRQB7uH2szO1CQspU,762056
165
209
  xinference/web/ui/package.json,sha256=W0Bq0vT0HOALv-nFo34Fos3r6DKrjR7zAL5swLg5qZg,1987
166
- xinference/web/ui/build/asset-manifest.json,sha256=1hoyYP10Oill7nwWCK69pUeMMUZCjla-ZNfk6NAWTsY,453
210
+ xinference/web/ui/build/asset-manifest.json,sha256=rO9GdnuWb8K4UQVDJG3PaG_AO1i-BhhYrXcXsWBdksg,453
167
211
  xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
168
- xinference/web/ui/build/index.html,sha256=0EBnDQoCQQeBfyT389rAHAu27iYxiv0gAe_bSkVW1d0,650
212
+ xinference/web/ui/build/index.html,sha256=HPD-QyRBB98vF0hpWaj4d6O3D2qk-AL3agghqPtm_gE,650
169
213
  xinference/web/ui/build/static/css/main.4bafd904.css,sha256=B1LOr0CAJXDztw7bSsJMTmEwdzqnciZOYjgeBSO25cQ,3910
170
214
  xinference/web/ui/build/static/css/main.4bafd904.css.map,sha256=rIbo5tZ_vpOnVcUwFk29B6UpEffrfphEQ3XKUAuG49E,7794
171
- xinference/web/ui/build/static/js/main.95c1d652.js,sha256=ZyjCMia7FUHc53D20lmugkVvDfSUUTtvmujUTTjmHhI,987877
172
- xinference/web/ui/build/static/js/main.95c1d652.js.LICENSE.txt,sha256=rbybPZZs56fvnjMiAklb5AB-cE9DLmWrrraygrxIG3I,2279
173
- xinference/web/ui/build/static/js/main.95c1d652.js.map,sha256=P1N-3Pj8vzBv1MlFfUuavvdCXc0n9Y_GXN2TqGVCFC8,4386689
215
+ xinference/web/ui/build/static/js/main.2ef0cfaf.js,sha256=0RWqvhl1QO47koAJtrerBQfr55gVVOPqxgSyq2zd-V8,987710
216
+ xinference/web/ui/build/static/js/main.2ef0cfaf.js.LICENSE.txt,sha256=rbybPZZs56fvnjMiAklb5AB-cE9DLmWrrraygrxIG3I,2279
217
+ xinference/web/ui/build/static/js/main.2ef0cfaf.js.map,sha256=qwr1c0PKMZ6gBIu_WgWhk1il6HAXeICPVfAp5EzUTWQ,4385785
174
218
  xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
175
219
  xinference/web/ui/node_modules/.package-lock.json,sha256=9jU355rtDRCO-oEwZIz20ylwNPD9ZXgReo7Uu8B97Zg,760016
176
220
  xinference/web/ui/node_modules/.cache/babel-loader/000791038e4133db461021f1018491323a006cca7a53e09c2ac35032bc36d8b6.json,sha256=bke3WZZjPsJqMKVeHZ7xOSiE8x3fy4fe9nzvylycWOE,1374
@@ -5531,7 +5575,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/708ff405908198a0ac4d5a14f967d
5531
5575
  xinference/web/ui/node_modules/.cache/babel-loader/7095bbe94d8ee407107a2bbd169e3e6aac2db10cd6d0db3a5e89fff924324900.json,sha256=3GeDq7OefQYt_3ow6A0TqA-E--WxDxUt4L4h85nDy6M,1732
5532
5576
  xinference/web/ui/node_modules/.cache/babel-loader/70961eb124b377cc733ef88d0284a4a2c36c5477e7f6c5e2506553e81ddb02fb.json,sha256=YmrwMDvpJrccDwahUVdOzJBb0Q0ktmZ9jFNQ0cMcdlA,1502
5533
5577
  xinference/web/ui/node_modules/.cache/babel-loader/7096fa19b3fac2aea44f819d77604637f23c5525c7065a16732e6791af991605.json,sha256=Xf4p1msb2KrLxw0h1tdE2a2K2B8WuCIS_cykcuQv7T4,51543
5534
- xinference/web/ui/node_modules/.cache/babel-loader/709711edada3f1596b309d571285fd31f1c364d66f4425bc28723d0088cc351a.json,sha256=IjoIvZ301aekQ68M1ouSZ-7a6TcSMedhoDoSppcLVyg,179006
5535
5578
  xinference/web/ui/node_modules/.cache/babel-loader/70a1787c3f47dcd521e50927b7a57699e7029c52323d88ac8654ed25acfc37c7.json,sha256=9aM8G8-6n9aW5SbXrrHeH21evYn0T5FHV103F1E_iNo,1402
5536
5579
  xinference/web/ui/node_modules/.cache/babel-loader/70a4fb5e597e9a0b42527d78999f2a23c7c9ab1802b227591808f2883227d0d2.json,sha256=jfDm90NVoDixdxFJtwjA_-F4RNDy8-zeh9skxEQvZ9s,1010
5537
5580
  xinference/web/ui/node_modules/.cache/babel-loader/70a96d36c4327041780a01d3121bfdde2e408e616724b92e7cd1fb8e08ab920e.json,sha256=0ubR543mglshdf6NIXF68xiObNH4SjN2YFB-6zCPPMY,1807
@@ -8946,6 +8989,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/b67b2ef0096316730e26fa250f2d8
8946
8989
  xinference/web/ui/node_modules/.cache/babel-loader/b67cad00ec0458142239b85203a160381afe5854b82b3398b1361b7db157e9a3.json,sha256=GQdhCjoZAzMgNsHpxbUs-gRjR5K7pQZKa1Tepp-FyCQ,2237
8947
8990
  xinference/web/ui/node_modules/.cache/babel-loader/b67e229fe67254602e323ae83c59c5f043da4a491bae5e357f1b8b836594a415.json,sha256=hjyPlGYM1ZeVpff0QbTV2G0s_BmtyYe8KLs2rFz5ZTc,303
8948
8991
  xinference/web/ui/node_modules/.cache/babel-loader/b67f6e3164ebf1fc3bf7f9d28a9a3ac95fd7191986ef7d9e91444265569a716b.json,sha256=r-IzsirfQ_pFN1INGW23hJqbn9TykdFQ9kkTtWVRHQY,2678
8992
+ xinference/web/ui/node_modules/.cache/babel-loader/b6807ecc0c231fea699533518a0eb2a2bf68a081ce00d452be40600dbffa17a7.json,sha256=4z1T9E-mDxuYO2AmcI7KRq0iaxZ4mUBcSHXniyqQTQU,177488
8949
8993
  xinference/web/ui/node_modules/.cache/babel-loader/b68d3621dd74ec2245a6539cc3c07f3ce19caa8de97cee6474a50a3482af54a5.json,sha256=giIZraV5faksy4uDX4k8jOwRMtV_fTie6TiPIreuLoc,75336
8950
8994
  xinference/web/ui/node_modules/.cache/babel-loader/b68dc28015d20a12e4e6c6ac12b3a038443239b40921b621493b1142679fa214.json,sha256=BfeO5ApR531l63r_JYGMO8br0AIZO_HY8q1If9hlNnc,71947
8951
8995
  xinference/web/ui/node_modules/.cache/babel-loader/b69af1e73364c5b00ad75059549d872f797fe9881bb5ddeaacf5c28b22bbeef4.json,sha256=B01-jgJ6t_8l0msSnw5YyNqJgXaOuuiYfIhJe2AHNnE,1705
@@ -15428,9 +15472,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
15428
15472
  xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
15429
15473
  xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
15430
15474
  xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
15431
- xinference-0.13.2.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15432
- xinference-0.13.2.dist-info/METADATA,sha256=EmYaz9n8oJHqQSU8Er7kqRuuN01VWaRBLZ8lgQMCMgc,16721
15433
- xinference-0.13.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
15434
- xinference-0.13.2.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15435
- xinference-0.13.2.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15436
- xinference-0.13.2.dist-info/RECORD,,
15475
+ xinference-0.13.3.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15476
+ xinference-0.13.3.dist-info/METADATA,sha256=2bXQo8HwytJJ1OGdZbcqC9Dxu3VzLwxYsKlsKeNTwzk,17057
15477
+ xinference-0.13.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
15478
+ xinference-0.13.3.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15479
+ xinference-0.13.3.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15480
+ xinference-0.13.3.dist-info/RECORD,,