xinference 0.16.2__py3-none-any.whl → 1.0.0__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.
- xinference/_version.py +3 -3
- xinference/api/restful_api.py +62 -11
- xinference/client/restful/restful_client.py +8 -2
- xinference/conftest.py +0 -8
- xinference/constants.py +2 -0
- xinference/core/model.py +44 -5
- xinference/core/supervisor.py +13 -7
- xinference/core/utils.py +76 -12
- xinference/core/worker.py +5 -4
- xinference/deploy/cmdline.py +5 -0
- xinference/deploy/utils.py +7 -4
- xinference/model/audio/model_spec.json +2 -2
- xinference/model/image/stable_diffusion/core.py +5 -2
- xinference/model/llm/core.py +1 -3
- xinference/model/llm/llm_family.json +263 -4
- xinference/model/llm/llm_family_modelscope.json +302 -0
- xinference/model/llm/mlx/core.py +45 -2
- xinference/model/llm/vllm/core.py +2 -1
- xinference/model/rerank/core.py +11 -4
- xinference/thirdparty/fish_speech/fish_speech/conversation.py +254 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/en_US.json +2 -1
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json +2 -1
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json +2 -2
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ko_KR.json +123 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json +2 -1
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py +76 -11
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py +9 -9
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py +1 -1
- xinference/thirdparty/fish_speech/fish_speech/text/clean.py +32 -1
- xinference/thirdparty/fish_speech/fish_speech/utils/__init__.py +2 -1
- xinference/thirdparty/fish_speech/fish_speech/utils/utils.py +22 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py +1 -1
- xinference/thirdparty/fish_speech/fish_speech/webui/manage.py +1 -1
- xinference/thirdparty/fish_speech/tools/api.py +578 -75
- xinference/thirdparty/fish_speech/tools/e2e_webui.py +232 -0
- xinference/thirdparty/fish_speech/tools/fish_e2e.py +298 -0
- xinference/thirdparty/fish_speech/tools/llama/generate.py +393 -9
- xinference/thirdparty/fish_speech/tools/msgpack_api.py +90 -29
- xinference/thirdparty/fish_speech/tools/post_api.py +37 -15
- xinference/thirdparty/fish_speech/tools/schema.py +187 -0
- xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py +7 -1
- xinference/thirdparty/fish_speech/tools/vqgan/inference.py +2 -3
- xinference/thirdparty/fish_speech/tools/webui.py +138 -75
- {xinference-0.16.2.dist-info → xinference-1.0.0.dist-info}/METADATA +26 -3
- {xinference-0.16.2.dist-info → xinference-1.0.0.dist-info}/RECORD +49 -56
- {xinference-0.16.2.dist-info → xinference-1.0.0.dist-info}/WHEEL +1 -1
- xinference/thirdparty/fish_speech/fish_speech/configs/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/configs/lora/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/protos/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/models/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/commons.py +0 -35
- xinference/thirdparty/fish_speech/tools/llama/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/vqgan/__init__.py +0 -0
- {xinference-0.16.2.dist-info → xinference-1.0.0.dist-info}/LICENSE +0 -0
- {xinference-0.16.2.dist-info → xinference-1.0.0.dist-info}/entry_points.txt +0 -0
- {xinference-0.16.2.dist-info → xinference-1.0.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: xinference
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.0
|
|
4
4
|
Summary: Model Serving Made Easy
|
|
5
5
|
Home-page: https://github.com/xorbitsai/inference
|
|
6
6
|
Author: Qin Xuye
|
|
@@ -42,6 +42,7 @@ Requires-Dist: nvidia-ml-py
|
|
|
42
42
|
Requires-Dist: async-timeout
|
|
43
43
|
Requires-Dist: peft
|
|
44
44
|
Requires-Dist: timm
|
|
45
|
+
Requires-Dist: setproctitle
|
|
45
46
|
Provides-Extra: all
|
|
46
47
|
Requires-Dist: llama-cpp-python!=0.2.58,>=0.2.25; extra == "all"
|
|
47
48
|
Requires-Dist: transformers>=4.43.2; extra == "all"
|
|
@@ -71,7 +72,7 @@ Requires-Dist: WeTextProcessing<1.0.4; extra == "all"
|
|
|
71
72
|
Requires-Dist: librosa; extra == "all"
|
|
72
73
|
Requires-Dist: xxhash; extra == "all"
|
|
73
74
|
Requires-Dist: torchaudio; extra == "all"
|
|
74
|
-
Requires-Dist: ChatTTS>=0.2; extra == "all"
|
|
75
|
+
Requires-Dist: ChatTTS>=0.2.1; extra == "all"
|
|
75
76
|
Requires-Dist: lightning>=2.0.0; extra == "all"
|
|
76
77
|
Requires-Dist: hydra-core>=1.3.2; extra == "all"
|
|
77
78
|
Requires-Dist: inflect; extra == "all"
|
|
@@ -88,6 +89,8 @@ Requires-Dist: loguru; extra == "all"
|
|
|
88
89
|
Requires-Dist: natsort; extra == "all"
|
|
89
90
|
Requires-Dist: loralib; extra == "all"
|
|
90
91
|
Requires-Dist: ormsgpack; extra == "all"
|
|
92
|
+
Requires-Dist: cachetools; extra == "all"
|
|
93
|
+
Requires-Dist: silero-vad; extra == "all"
|
|
91
94
|
Requires-Dist: qwen-vl-utils; extra == "all"
|
|
92
95
|
Requires-Dist: datamodel-code-generator; extra == "all"
|
|
93
96
|
Requires-Dist: jsonschema; extra == "all"
|
|
@@ -105,7 +108,7 @@ Requires-Dist: WeTextProcessing<1.0.4; extra == "audio"
|
|
|
105
108
|
Requires-Dist: librosa; extra == "audio"
|
|
106
109
|
Requires-Dist: xxhash; extra == "audio"
|
|
107
110
|
Requires-Dist: torchaudio; extra == "audio"
|
|
108
|
-
Requires-Dist: ChatTTS>=0.2; extra == "audio"
|
|
111
|
+
Requires-Dist: ChatTTS>=0.2.1; extra == "audio"
|
|
109
112
|
Requires-Dist: tiktoken; extra == "audio"
|
|
110
113
|
Requires-Dist: torch>=2.0.0; extra == "audio"
|
|
111
114
|
Requires-Dist: lightning>=2.0.0; extra == "audio"
|
|
@@ -121,6 +124,8 @@ Requires-Dist: loguru; extra == "audio"
|
|
|
121
124
|
Requires-Dist: natsort; extra == "audio"
|
|
122
125
|
Requires-Dist: loralib; extra == "audio"
|
|
123
126
|
Requires-Dist: ormsgpack; extra == "audio"
|
|
127
|
+
Requires-Dist: cachetools; extra == "audio"
|
|
128
|
+
Requires-Dist: silero-vad; extra == "audio"
|
|
124
129
|
Provides-Extra: benchmark
|
|
125
130
|
Requires-Dist: psutil; extra == "benchmark"
|
|
126
131
|
Provides-Extra: dev
|
|
@@ -388,6 +393,24 @@ Once Xinference is running, there are multiple ways you can try it: via the web
|
|
|
388
393
|
| [Slack](https://join.slack.com/t/xorbitsio/shared_invite/zt-1o3z9ucdh-RbfhbPVpx7prOVdM1CAuxg) | Collaborating with other Xorbits users. |
|
|
389
394
|
| [Twitter](https://twitter.com/xorbitsio) | Staying up-to-date on new features. |
|
|
390
395
|
|
|
396
|
+
## Citation
|
|
397
|
+
|
|
398
|
+
If this work is helpful, please kindly cite as:
|
|
399
|
+
|
|
400
|
+
```bibtex
|
|
401
|
+
@inproceedings{lu2024xinference,
|
|
402
|
+
title = "Xinference: Making Large Model Serving Easy",
|
|
403
|
+
author = "Lu, Weizheng and Xiong, Lingfeng and Zhang, Feng and Qin, Xuye and Chen, Yueguo",
|
|
404
|
+
booktitle = "Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing: System Demonstrations",
|
|
405
|
+
month = nov,
|
|
406
|
+
year = "2024",
|
|
407
|
+
address = "Miami, Florida, USA",
|
|
408
|
+
publisher = "Association for Computational Linguistics",
|
|
409
|
+
url = "https://aclanthology.org/2024.emnlp-demo.30",
|
|
410
|
+
pages = "291--300",
|
|
411
|
+
}
|
|
412
|
+
```
|
|
413
|
+
|
|
391
414
|
## Contributors
|
|
392
415
|
|
|
393
416
|
<a href="https://github.com/xorbitsai/inference/graphs/contributors">
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
xinference/__init__.py,sha256=nmTTrYbIpj964ZF6ojtgOM7E85JBOj1EyQbmYjbj1jw,915
|
|
2
2
|
xinference/_compat.py,sha256=xFztCfyrq3O_4bssL_ygghYkfxicv_ZhiX2YDDWHf-k,3571
|
|
3
|
-
xinference/_version.py,sha256=
|
|
4
|
-
xinference/conftest.py,sha256=
|
|
5
|
-
xinference/constants.py,sha256=
|
|
3
|
+
xinference/_version.py,sha256=fpV50OH7B6n2pfTzqkYhtyB658xgOLxDdVxTQumkplE,497
|
|
4
|
+
xinference/conftest.py,sha256=vETDpRBVIlWbWi7OTwf7og89U25KyYGyI7yPIB3O8N8,9564
|
|
5
|
+
xinference/constants.py,sha256=mEW4HDzjXtDXN61Mt6TtJrJ4ljbB6VUkh97e3oDbNx4,3905
|
|
6
6
|
xinference/device_utils.py,sha256=zswJiws3VyTIaNO8z-MOcsJH_UiPoePPiKK5zoNrjTA,3285
|
|
7
7
|
xinference/fields.py,sha256=0UtBFaDNzn1n9MRjyTkNrolsIML-TpZfudWOejqjni8,5245
|
|
8
8
|
xinference/isolation.py,sha256=uhkzVyL3fSYZSuFexkG6Jm-tRTC5I607uNg000BXAnE,1949
|
|
9
9
|
xinference/types.py,sha256=LHTbNLf0zI-FLruxRuBt2KMpk2P4eKpYdFvh2qzNTGI,12458
|
|
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=
|
|
12
|
+
xinference/api/restful_api.py,sha256=eWw6tQ9zVOYAB_P9Zr_0bO3_ng7wyyGFIlA7MnV7q_k,88589
|
|
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,26 +18,26 @@ 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=
|
|
21
|
+
xinference/client/restful/restful_client.py,sha256=nz4Gz9PpX1seB20xmO5Pc6vliqB44gqJOfcIvdVuVVQ,52276
|
|
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=Kiqs1XOXgYBlP7DOXLEXaFjbVuS0yC1-dXJyxrxiRNE,20785
|
|
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=
|
|
28
|
+
xinference/core/model.py,sha256=fVE-b7vLgMgFmY4yJpFVnV_4Pw1Bde-ykBERZJVAjsM,39873
|
|
29
29
|
xinference/core/progress_tracker.py,sha256=LIF6CLIlnEoSBkuDCraJktDOzZ31mQ4HOo6EVr3KpQM,6453
|
|
30
30
|
xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
|
|
31
31
|
xinference/core/scheduler.py,sha256=gdj3SyP_jelJ86vTRrgnFynhxz5JSwLRsQgx8PTtBi8,15671
|
|
32
32
|
xinference/core/status_guard.py,sha256=4an1KjUOhCStgRQUw1VSzXcycXUtvhxwiMREKKcl1UI,2828
|
|
33
|
-
xinference/core/supervisor.py,sha256=
|
|
34
|
-
xinference/core/utils.py,sha256=
|
|
35
|
-
xinference/core/worker.py,sha256=
|
|
33
|
+
xinference/core/supervisor.py,sha256=6DNERyU_Un-Xc9a1P2EyVmJiNOaKI7pBBNwiC4BA92s,53088
|
|
34
|
+
xinference/core/utils.py,sha256=trVesJM9GLiDXYtyoVt23rV_AS3G-gAu2BZpBkSMn8w,11067
|
|
35
|
+
xinference/core/worker.py,sha256=YIlaQosBRj_VStfZGPfWnT2ie13GW8K4NNEP5qz28lI,46402
|
|
36
36
|
xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
37
|
-
xinference/deploy/cmdline.py,sha256=
|
|
37
|
+
xinference/deploy/cmdline.py,sha256=yQI6KuRUzih0rs_fInp2Lr3rwkOjBOM0eydPaF7VKDQ,48385
|
|
38
38
|
xinference/deploy/local.py,sha256=gcH6WfTxfhjvNkxxKZH3tcGtXV48BEPoaLWYztZHaeo,3954
|
|
39
39
|
xinference/deploy/supervisor.py,sha256=68rB2Ey5KFeF6zto9YGbw3P8QLZmF_KSh1NwH_pNP4w,2986
|
|
40
|
-
xinference/deploy/utils.py,sha256=
|
|
40
|
+
xinference/deploy/utils.py,sha256=jdL7i2WV6u_BZ8IiE1d3YktvCARcB3ntzMQ5rHGD5DM,6756
|
|
41
41
|
xinference/deploy/worker.py,sha256=VQ71ClWpeGsyFgDmcOes2ub1cil10cBjhFLHYeuVwC4,2974
|
|
42
42
|
xinference/deploy/test/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
43
43
|
xinference/deploy/test/test_cmdline.py,sha256=m8xDzjtDuAJy0QkvYVJIZDuTB29cmYBV0d231JyRCPU,7714
|
|
@@ -51,7 +51,7 @@ xinference/model/audio/cosyvoice.py,sha256=Enur1Y4Xa-mpr7wwnoXWwhyh7PUAjrHZ8DV91
|
|
|
51
51
|
xinference/model/audio/custom.py,sha256=8GXBRmTtR-GY03-E91nlRGTIuabCRzlt20ecU6Un6Y8,4985
|
|
52
52
|
xinference/model/audio/fish_speech.py,sha256=v2WVEV-BLWnbiDvqrx8WTGE_YNKmd9QoAF1LZBXWxn0,7310
|
|
53
53
|
xinference/model/audio/funasr.py,sha256=65z7U7_F14CCP-jg6BpeY3_49FK7Y5OCRSzrhhsklCg,4075
|
|
54
|
-
xinference/model/audio/model_spec.json,sha256=
|
|
54
|
+
xinference/model/audio/model_spec.json,sha256=iw0kE-0j2JaLBwIc3KKra9NERbxKNHIhXuhbwnhGXbA,5120
|
|
55
55
|
xinference/model/audio/model_spec_modelscope.json,sha256=U82E5vZahi4si6kpCjdp2FAG2lCpQ7s7w_1t6lj2ysI,2038
|
|
56
56
|
xinference/model/audio/utils.py,sha256=pwo5cHh8nvhyBa9f-17QaVpXMSjmbpGbPYKwBBtEhGM,717
|
|
57
57
|
xinference/model/audio/whisper.py,sha256=PQL7rebGC7WlIOItuDtjdEtSJtlhxFkolot-Fj-8uDU,7982
|
|
@@ -79,14 +79,14 @@ xinference/model/image/ocr/got_ocr2.py,sha256=N5Ux1dCtDMA25BBEmqiYNVKrk_HA-IPWch
|
|
|
79
79
|
xinference/model/image/scheduler/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
80
80
|
xinference/model/image/scheduler/flux.py,sha256=GHlpPfU5UxsiQWNyvNe9SaVZceNg_2CiF1oJUdCao5o,18830
|
|
81
81
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
82
|
-
xinference/model/image/stable_diffusion/core.py,sha256=
|
|
82
|
+
xinference/model/image/stable_diffusion/core.py,sha256=M_sYFsY_q91l0D6O7AqQVd_h-RIgXcmaydyCvASyNsI,23055
|
|
83
83
|
xinference/model/image/stable_diffusion/mlx.py,sha256=GZsozzGB04NfHAdU9MI6gwWE1t_A-s_Ddn_ic8DlkKQ,7476
|
|
84
84
|
xinference/model/llm/__init__.py,sha256=9g9dFG2XuNDCTLE5vuJ6kCT-rqe9MfN56aEapyXaJ5M,13938
|
|
85
|
-
xinference/model/llm/core.py,sha256=
|
|
86
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
85
|
+
xinference/model/llm/core.py,sha256=g-luuAjZizrPunhyFE9IRjn57l0g6FY_1xUwtlRegbs,8151
|
|
86
|
+
xinference/model/llm/llm_family.json,sha256=H1jJvTot6DsoJ_hyTMqJbcHI95tkuEwwYeljQRmPW_8,296753
|
|
87
87
|
xinference/model/llm/llm_family.py,sha256=tI2wPefd7v-PWcVhUO2qy6iGob_ioeNCwAQQzal-2o4,39549
|
|
88
88
|
xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
|
|
89
|
-
xinference/model/llm/llm_family_modelscope.json,sha256=
|
|
89
|
+
xinference/model/llm/llm_family_modelscope.json,sha256=iNnH9DRTVc-EmX0YS2790LKRjJ945aLbtK97uoTY6_k,227335
|
|
90
90
|
xinference/model/llm/llm_family_openmind_hub.json,sha256=jl9pfbe5DztoxgEwKBxDk1Wd7TziTiJ48_Ie_lJdYjA,67872
|
|
91
91
|
xinference/model/llm/memory.py,sha256=NEIMw6wWaF9S_bnBYq-EyuDhVbUEEeceQhwE1iwsrhI,10207
|
|
92
92
|
xinference/model/llm/utils.py,sha256=DUC6jPr1-kPNsgc4J5MXNSMVgDlPLfQiitLGfdJxVxM,23596
|
|
@@ -95,7 +95,7 @@ xinference/model/llm/llama_cpp/core.py,sha256=vjuTapwbn-ZjUX-8WA0nFyicE4UGUSehU_
|
|
|
95
95
|
xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
96
|
xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc3ua8yPTI,19835
|
|
97
97
|
xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
98
|
-
xinference/model/llm/mlx/core.py,sha256=
|
|
98
|
+
xinference/model/llm/mlx/core.py,sha256=IsSFqkAK27yTafcWODw958jSNyxniiTsn9QR1Z6IhWk,15367
|
|
99
99
|
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
100
100
|
xinference/model/llm/sglang/core.py,sha256=ft4QlDw36gwoic8lyjtSx2ai6KTW84CPVbYr8grqGMI,16698
|
|
101
101
|
xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
@@ -120,10 +120,10 @@ xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjD
|
|
|
120
120
|
xinference/model/llm/transformers/utils.py,sha256=Ej9Tu2yVAotfXMFsl30QlYXLZTODU6Pv_UppsGGUiSw,19185
|
|
121
121
|
xinference/model/llm/transformers/yi_vl.py,sha256=iCdRLw-wizbU-qXXc8CT4DhC0Pt-uYg0vFwXEhAZjQg,8961
|
|
122
122
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
123
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
123
|
+
xinference/model/llm/vllm/core.py,sha256=gflboRHy4JvhDG6G2bjPgidgNFTU2dDepbTZBmeDGlY,31516
|
|
124
124
|
xinference/model/llm/vllm/utils.py,sha256=LKOmwfFRrlSecawxT-uE39tC2RQbf1UIiSH9Uz90X6w,1313
|
|
125
125
|
xinference/model/rerank/__init__.py,sha256=wRpf1bOMfmAsuEKEGczMTB5fWEvuqltlJbIbRb-x8Ko,3483
|
|
126
|
-
xinference/model/rerank/core.py,sha256=
|
|
126
|
+
xinference/model/rerank/core.py,sha256=e-QoFgVk-6LOQPM5zqbEj095J-1bkuyd9c5zRI5DlF8,14560
|
|
127
127
|
xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
|
|
128
128
|
xinference/model/rerank/model_spec.json,sha256=xUuJgJ8Ad4l2v8gEHxAdF_xoaSkA8j8AX51LhrjGEA0,2005
|
|
129
129
|
xinference/model/rerank/model_spec_modelscope.json,sha256=pf5hX4g0HdVjk2-ibHTl_mXHgQSSPYMTBOIwvnwMMkk,1616
|
|
@@ -211,22 +211,18 @@ xinference/thirdparty/deepseek_vl/utils/conversation.py,sha256=7oITA8TsIuOfumVZ8
|
|
|
211
211
|
xinference/thirdparty/deepseek_vl/utils/io.py,sha256=HQqLoONZF4nl1E9oMrm7_2LwU8ZSh1C9htm7vLN4YfI,2751
|
|
212
212
|
xinference/thirdparty/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
213
|
xinference/thirdparty/fish_speech/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
214
|
-
xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=
|
|
214
|
+
xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=zwsHs1oG4k7TBqBDZosGLW4uWADTzKWOjo0pI956PNM,7401
|
|
215
215
|
xinference/thirdparty/fish_speech/fish_speech/scheduler.py,sha256=xpstAfXlsdx-N_hDcJJYFKiLb_cW5mTdXACyuODrcIg,1101
|
|
216
216
|
xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=TQbqeYF5RPkShMNjb9dsqWTWhEyHFnfdFOR_gnbIfUo,4474
|
|
217
217
|
xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py,sha256=LYHvlvb9463UMJ3stVzBilVpLtdiLCteuzMIB5ypHS0,70
|
|
218
218
|
xinference/thirdparty/fish_speech/fish_speech/callbacks/grad_norm.py,sha256=pzuUxUnXWAa9U6XKcvQpnGoUZhMmFQKimSqYH-WajIQ,3436
|
|
219
|
-
xinference/thirdparty/fish_speech/fish_speech/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
220
219
|
xinference/thirdparty/fish_speech/fish_speech/configs/base.yaml,sha256=7_yXj9Y9SNhI7wiQeFvoLArtp9gqJCF-f43JGQ-TwCI,2544
|
|
221
220
|
xinference/thirdparty/fish_speech/fish_speech/configs/firefly_gan_vq.yaml,sha256=-SO0089ARGOAlhttQN1J0fSpoa81MABHg20sOYmAfCc,1002
|
|
222
221
|
xinference/thirdparty/fish_speech/fish_speech/configs/text2semantic_finetune.yaml,sha256=wBnbMXw9svb7VlluA0euzSPX39dbEWjnuoJ7E5hi2SQ,1987
|
|
223
|
-
xinference/thirdparty/fish_speech/fish_speech/configs/lora/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
224
222
|
xinference/thirdparty/fish_speech/fish_speech/configs/lora/r_8_alpha_16.yaml,sha256=a9QVkN2A64_0l8XUfwV1fgW5eZi9124L5pHdsN9ZgII,98
|
|
225
|
-
xinference/thirdparty/fish_speech/fish_speech/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
226
223
|
xinference/thirdparty/fish_speech/fish_speech/datasets/concat_repeat.py,sha256=y9pAty3Sa3gyfAERSaubmMNRdUzyAw4zzoDyXzuGGxQ,1498
|
|
227
224
|
xinference/thirdparty/fish_speech/fish_speech/datasets/semantic.py,sha256=FHpdQj3awN-21w3f96xL0Z6DvEnOpW7qES8_ZjdHBt8,16727
|
|
228
225
|
xinference/thirdparty/fish_speech/fish_speech/datasets/vqgan.py,sha256=NMOaBOYPvHuMPwyRx5ahJh0pkhPauEFVWMGFi2Vl7L8,4012
|
|
229
|
-
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
230
226
|
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text-data.proto,sha256=1ruMlbx5JfQ-_QAzzwPnBZ5zrdOPTRlEovVgpRwnn3w,392
|
|
231
227
|
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_pb2.py,sha256=GFnBeGCTFtWJTdNXQx0hzPpxagzleSyWxN3pE22-E2g,1758
|
|
232
228
|
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_stream.py,sha256=v9i3jbIC6KFTSLvSVso8-3mBDufSOwE7IAr4-5RXgQ0,781
|
|
@@ -234,24 +230,22 @@ xinference/thirdparty/fish_speech/fish_speech/i18n/README.md,sha256=pXQy_jPFXyTB
|
|
|
234
230
|
xinference/thirdparty/fish_speech/fish_speech/i18n/__init__.py,sha256=u9r_HCtTmYcU64L62Gg9lLANvGybfb0-ETw8Ob-fnxY,43
|
|
235
231
|
xinference/thirdparty/fish_speech/fish_speech/i18n/core.py,sha256=8Ks8wGog73U-AZqlzGltfx61KALGTh7uCIXnQHDnDOw,1036
|
|
236
232
|
xinference/thirdparty/fish_speech/fish_speech/i18n/scan.py,sha256=1mdXKPeR0d3bTcFZWhX6ODWUJbbiOHO73MBDEJlTmUY,3751
|
|
237
|
-
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/
|
|
238
|
-
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/
|
|
239
|
-
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/
|
|
240
|
-
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/
|
|
233
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/en_US.json,sha256=VDvNbFVbeA6xOrOZaG6kGvDTuvKJmP6Rpagzs07_dR4,8091
|
|
234
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json,sha256=ocpRRa2n7bA5VekQhk_sxt9VNH8HTgqN6fWBlxkVa6k,9001
|
|
235
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json,sha256=WRa2fn05kv5NkacQxsAf2RMR3IfiIAM_p9oiCNw49ao,9491
|
|
236
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ko_KR.json,sha256=n0clRJF1GeHs-fQdBVn2elIt8GFs7WpAbWzev2FIXdo,8780
|
|
241
237
|
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json,sha256=mNI1TYkHwhC5ArecMTBLTW1Cf8iX0iuXoOZq8XYFqeE,9605
|
|
242
|
-
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json,sha256=
|
|
243
|
-
xinference/thirdparty/fish_speech/fish_speech/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
238
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json,sha256=UXKUCm4i8DpRvNehWEZV5W6dTw36QcjzddvJpdUdAaM,7753
|
|
244
239
|
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
245
240
|
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lit_module.py,sha256=Brrgxy6tHNAwclfu04XDNLKzzGU_FamBL5D8XWPj99A,6567
|
|
246
|
-
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=
|
|
241
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=mlrD22dZALaaoVphbriUYL6Ss1II0u-IZhwple2e5FI,28039
|
|
247
242
|
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lora.py,sha256=KHbtG1BGrFMtdoMtHXPWb3OTez8HtHEiuAaMEFOrNYI,2923
|
|
248
243
|
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
249
244
|
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/utils.py,sha256=irmTsK36GlLccFI5CjWahKO7NG6LZQrd5FEh_7qy4Xs,2533
|
|
250
|
-
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/
|
|
251
|
-
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/
|
|
252
|
-
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py,sha256=qOl-E-aWr9d-Nm4ikHt7EYkS-MbCNy4qyooS8VflEsY,3448
|
|
245
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py,sha256=pKiKQ8irkt5FqwodBiwD3QkzMGxGvTTC6PFKKProOuI,19985
|
|
246
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py,sha256=GxRY7jSb5vPjDJuofkHhQLWEmkZVCJQ0B-iNokW6vkw,3448
|
|
253
247
|
xinference/thirdparty/fish_speech/fish_speech/text/__init__.py,sha256=3lYfSw4Xb3Qh0p8FsjX4ToOJNsm7ZxN3XPh_xFKXoUQ,102
|
|
254
|
-
xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=
|
|
248
|
+
xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=hcrKvtDWa-jmPzFqhFJwHxEeY2QNZfAadKhwAo-E5CU,1203
|
|
255
249
|
xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=wv-x9U3cEz7D4iGmzkf_x2YpkvTthuDHVfM6VQW_gQw,3827
|
|
256
250
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/.gitignore,sha256=04gWbPAivQzTV7w2eOgkk3xcMZLuti1pkLwy_mW7k6M,1274
|
|
257
251
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/README.md,sha256=9tZNujydXU0DlgpnsJTfMI880mgh41l6UvqqQQKbcPk,890
|
|
@@ -267,7 +261,7 @@ xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/money.py,sha256
|
|
|
267
261
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/percentage.py,sha256=3DCSkP7Qg5px99rfgF-Qb1yL9HeMDAV6OxE2VSleeSo,838
|
|
268
262
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/telephone.py,sha256=cDPtwmnHKD_JP29wIp5p1Og0I132BUg_cmzGdyoJHM8,1557
|
|
269
263
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/text.py,sha256=8TdfX5c9t144t1sbhbyTeYncvL_3yjgFAwJfuZqXsIs,6936
|
|
270
|
-
xinference/thirdparty/fish_speech/fish_speech/utils/__init__.py,sha256=
|
|
264
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/__init__.py,sha256=3YIGzsJbj84oTR-WQoFz_pztZtUIHp163K_x0XD8txU,706
|
|
271
265
|
xinference/thirdparty/fish_speech/fish_speech/utils/braceexpand.py,sha256=X_44wW-LJP21kNb19j63DSSzFopkgsSNkqmsElLSS6U,6724
|
|
272
266
|
xinference/thirdparty/fish_speech/fish_speech/utils/context.py,sha256=G5AyI1qavhX-vBesANU0Mb97ojBY80nwiXBrzNFdQ5E,287
|
|
273
267
|
xinference/thirdparty/fish_speech/fish_speech/utils/file.py,sha256=GrVn5R0Mc5Veb3_9kyOaH_yIiN3zoFvV7g1G3SY-Rp4,345
|
|
@@ -276,28 +270,28 @@ xinference/thirdparty/fish_speech/fish_speech/utils/logger.py,sha256=WVnMyEQqlO2
|
|
|
276
270
|
xinference/thirdparty/fish_speech/fish_speech/utils/logging_utils.py,sha256=BJ3h8hF-62MbqxajhmZgKglkpjPfz_GTFTr682SIeYU,1384
|
|
277
271
|
xinference/thirdparty/fish_speech/fish_speech/utils/rich_utils.py,sha256=RHRUrq2xY1d1Eg24htFnmyj0RRW2NRdww9xz0jWnQt8,3105
|
|
278
272
|
xinference/thirdparty/fish_speech/fish_speech/utils/spectrogram.py,sha256=R9dGOEJnsF03T-9BBFLwMHikgp1VYTe7Cm76doKj76s,3239
|
|
279
|
-
xinference/thirdparty/fish_speech/fish_speech/utils/utils.py,sha256=
|
|
280
|
-
xinference/thirdparty/fish_speech/fish_speech/webui/
|
|
281
|
-
xinference/thirdparty/fish_speech/fish_speech/webui/
|
|
282
|
-
xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=nnLug37TcrIys4DMgeVRgQuvnLjB36b49aMBUt98ZKI,46885
|
|
273
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/utils.py,sha256=3w0drAiLo5bVnOrXH8ezsIAaAkSP3cqwgpMcr7kERFQ,4283
|
|
274
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py,sha256=33vk7md7-T9rIwdOarQ1n5XKu_FqwZqeo6D_WGObjH4,3974
|
|
275
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=NwcVYzbRLqdh8Y1RAXBNpsmzYjQj1GKOTkW5EaNxMYo,46887
|
|
283
276
|
xinference/thirdparty/fish_speech/fish_speech/webui/css/style.css,sha256=CLXPzePjropDNCfg2jptIwJRMIWPuc5jfd2aLGadMD0,2617
|
|
284
277
|
xinference/thirdparty/fish_speech/fish_speech/webui/html/footer.html,sha256=ofq4m93dF0Z_lXn2J6nLBwXwdugBOPIzjzFGBbr1C58,348
|
|
285
278
|
xinference/thirdparty/fish_speech/fish_speech/webui/js/animate.js,sha256=AG2umxvH9ly6ZxJDxV4sfz1A9Q3_unA7LnkKv05X-i4,2690
|
|
286
279
|
xinference/thirdparty/fish_speech/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
287
|
-
xinference/thirdparty/fish_speech/tools/api.py,sha256=
|
|
288
|
-
xinference/thirdparty/fish_speech/tools/commons.py,sha256=-9YuuVUfBemIuOBVvt465COuZuVqVo_Xrswwl4z2iOA,1348
|
|
280
|
+
xinference/thirdparty/fish_speech/tools/api.py,sha256=LXq6L84EW_5bvBp6fgIkkegDgVQ8obYPph1OFm9SW5Q,29282
|
|
289
281
|
xinference/thirdparty/fish_speech/tools/download_models.py,sha256=UOOV9SzseMUGFqOw85AeAaXg5LcW0jMvkoet1elvI44,1365
|
|
282
|
+
xinference/thirdparty/fish_speech/tools/e2e_webui.py,sha256=JrT7ubhodvMICngsZkDDJ0Z0bCB4G1cpPBtQFc63Nhw,8908
|
|
290
283
|
xinference/thirdparty/fish_speech/tools/extract_model.py,sha256=42b_U4rmqX3OUOIqWQQczsEktt79aQSOJ4E55B1bHl8,536
|
|
291
284
|
xinference/thirdparty/fish_speech/tools/file.py,sha256=ZSWIpGIOuGbQ5gWmfS9LZWLLidc9gZ9p95QzAZkJneI,3047
|
|
292
|
-
xinference/thirdparty/fish_speech/tools/
|
|
293
|
-
xinference/thirdparty/fish_speech/tools/
|
|
285
|
+
xinference/thirdparty/fish_speech/tools/fish_e2e.py,sha256=JKrZwFdUXFegFe7d8eJcF8xKbvOnddjegxORCTL3KBk,9625
|
|
286
|
+
xinference/thirdparty/fish_speech/tools/msgpack_api.py,sha256=yKWc9wAycB4GSeAACO0_qmc7ONZN_zZP8tRBmCTbPkE,2623
|
|
287
|
+
xinference/thirdparty/fish_speech/tools/post_api.py,sha256=tWpMgh264Abk7t4w0du51sGMeXDYQm3bLdh1NadxUAo,6993
|
|
288
|
+
xinference/thirdparty/fish_speech/tools/schema.py,sha256=gh43aA3-kG2bZV-8UJhGqY8d-q1aHZIZy__fBtw0FLk,5257
|
|
294
289
|
xinference/thirdparty/fish_speech/tools/smart_pad.py,sha256=O6fCgrSouBX6prkrj6a03DPI-5loiS_oKaidtIXxuFg,1626
|
|
295
|
-
xinference/thirdparty/fish_speech/tools/webui.py,sha256=
|
|
290
|
+
xinference/thirdparty/fish_speech/tools/webui.py,sha256=4E9xlCyZlwTFOkGNrh7mNjg5mwtPHNwP7WF-_GwlyAo,18048
|
|
296
291
|
xinference/thirdparty/fish_speech/tools/whisper_asr.py,sha256=uG6NsSnH6oLEkCRM-Tb8o6L7OKDZ1eSVd8obEoq7jVc,4893
|
|
297
|
-
xinference/thirdparty/fish_speech/tools/llama/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
298
292
|
xinference/thirdparty/fish_speech/tools/llama/build_dataset.py,sha256=rOVoiXPpKqwT2C2cDhTgw8TMNH5Tq0QzejPd4Y387zY,4898
|
|
299
293
|
xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py,sha256=vF2OVE4kj5qVaBBHGR1eTqcmLWvUeoO4OMj9eUkTXvw,4623
|
|
300
|
-
xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=
|
|
294
|
+
xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=mbC8hXgpkXAQS_GAIodpcZiHVBqe5TJOBAqi6WQ2rDo,33784
|
|
301
295
|
xinference/thirdparty/fish_speech/tools/llama/merge_lora.py,sha256=VS-ZYzar8-MKj4PCzEoRjIin7GISVk6accZJXvrZHWQ,3273
|
|
302
296
|
xinference/thirdparty/fish_speech/tools/llama/quantize.py,sha256=meAgs8IXCDjUz6R8ihvFMLNqo7MDJnSDi0sE-DAUJA0,16602
|
|
303
297
|
xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py,sha256=MuFdqOsU2QHq8cSz7pa4PAsjZyrJrghCZQR2SrpplTQ,2025
|
|
@@ -306,10 +300,9 @@ xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py,sha256=47DEQpj8HB
|
|
|
306
300
|
xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py,sha256=abg8hFiVcWwhJYT_E8De-vYRUQOs1u0Zxxgz1nj1790,22739
|
|
307
301
|
xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py,sha256=4Tau7ImBXLF-Atgnzb_-volKCb5nas56iBnLVlucL9k,10182
|
|
308
302
|
xinference/thirdparty/fish_speech/tools/sensevoice/vad_utils.py,sha256=QZhdJN6PiJUWui_8fdt_-BA32OKVfvjqV8roavLna20,2214
|
|
309
|
-
xinference/thirdparty/fish_speech/tools/vqgan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
310
303
|
xinference/thirdparty/fish_speech/tools/vqgan/create_train_split.py,sha256=aWQeRSJ_KRPp72qtXoFvxJkkP6P-73VKIew2iIeETos,2996
|
|
311
|
-
xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py,sha256=
|
|
312
|
-
xinference/thirdparty/fish_speech/tools/vqgan/inference.py,sha256=
|
|
304
|
+
xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py,sha256=DNXinP96_ZQX2G847E0eHqfOe1tcxF7vMBtjGlHBD9E,6845
|
|
305
|
+
xinference/thirdparty/fish_speech/tools/vqgan/inference.py,sha256=NL53U8qZ4IkvUssv83ltP1c1-zW7QWvhxZcDTR7ZiOE,3824
|
|
313
306
|
xinference/thirdparty/internvl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
314
307
|
xinference/thirdparty/internvl/conversation.py,sha256=2wLSnfxyLItQaLd-N5xoybBPKyZadXkVntPuMV5iyGo,15040
|
|
315
308
|
xinference/thirdparty/llava/__init__.py,sha256=UlCNtyBVX645CB6S6LfyYkTfQVO18_a8e9SmR7cHExA,41
|
|
@@ -15529,9 +15522,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15529
15522
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15530
15523
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15531
15524
|
xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
|
|
15532
|
-
xinference-0.
|
|
15533
|
-
xinference-0.
|
|
15534
|
-
xinference-0.
|
|
15535
|
-
xinference-0.
|
|
15536
|
-
xinference-0.
|
|
15537
|
-
xinference-0.
|
|
15525
|
+
xinference-1.0.0.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
15526
|
+
xinference-1.0.0.dist-info/METADATA,sha256=H-KYRsy1S1Q2Wk_zY6Ei7xiBmaGfcOr4TqaC1NfBsnM,21824
|
|
15527
|
+
xinference-1.0.0.dist-info/WHEEL,sha256=bFJAMchF8aTQGUgMZzHJyDDMPTO3ToJ7x23SLJa1SVo,92
|
|
15528
|
+
xinference-1.0.0.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
15529
|
+
xinference-1.0.0.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
15530
|
+
xinference-1.0.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
from typing import Annotated, Literal, Optional
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field, conint
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class ServeReferenceAudio(BaseModel):
|
|
7
|
-
audio: bytes
|
|
8
|
-
text: str
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
class ServeTTSRequest(BaseModel):
|
|
12
|
-
text: str
|
|
13
|
-
chunk_length: Annotated[int, conint(ge=100, le=300, strict=True)] = 200
|
|
14
|
-
# Audio format
|
|
15
|
-
format: Literal["wav", "pcm", "mp3"] = "wav"
|
|
16
|
-
mp3_bitrate: Literal[64, 128, 192] = 128
|
|
17
|
-
# References audios for in-context learning
|
|
18
|
-
references: list[ServeReferenceAudio] = []
|
|
19
|
-
# Reference id
|
|
20
|
-
# For example, if you want use https://fish.audio/m/7f92f8afb8ec43bf81429cc1c9199cb1/
|
|
21
|
-
# Just pass 7f92f8afb8ec43bf81429cc1c9199cb1
|
|
22
|
-
reference_id: str | None = None
|
|
23
|
-
# Normalize text for en & zh, this increase stability for numbers
|
|
24
|
-
normalize: bool = True
|
|
25
|
-
mp3_bitrate: Optional[int] = 64
|
|
26
|
-
opus_bitrate: Optional[int] = -1000
|
|
27
|
-
# Balance mode will reduce latency to 300ms, but may decrease stability
|
|
28
|
-
latency: Literal["normal", "balanced"] = "normal"
|
|
29
|
-
# not usually used below
|
|
30
|
-
streaming: bool = False
|
|
31
|
-
emotion: Optional[str] = None
|
|
32
|
-
max_new_tokens: int = 1024
|
|
33
|
-
top_p: Annotated[float, Field(ge=0.1, le=1.0, strict=True)] = 0.7
|
|
34
|
-
repetition_penalty: Annotated[float, Field(ge=0.9, le=2.0, strict=True)] = 1.2
|
|
35
|
-
temperature: Annotated[float, Field(ge=0.1, le=1.0, strict=True)] = 0.7
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|