xinference 0.16.3__py3-none-any.whl → 1.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of xinference might be problematic. Click here for more details.
- xinference/_compat.py +22 -2
- xinference/_version.py +3 -3
- xinference/api/restful_api.py +148 -12
- xinference/client/restful/restful_client.py +47 -2
- xinference/constants.py +1 -0
- xinference/core/model.py +45 -15
- xinference/core/supervisor.py +8 -2
- xinference/core/utils.py +67 -2
- xinference/model/audio/__init__.py +12 -0
- xinference/model/audio/core.py +21 -4
- xinference/model/audio/fish_speech.py +70 -35
- xinference/model/audio/model_spec.json +81 -1
- xinference/model/audio/whisper_mlx.py +208 -0
- xinference/model/embedding/core.py +259 -4
- xinference/model/embedding/model_spec.json +1 -1
- xinference/model/embedding/model_spec_modelscope.json +1 -1
- xinference/model/image/stable_diffusion/core.py +5 -2
- xinference/model/llm/__init__.py +2 -0
- xinference/model/llm/llm_family.json +485 -6
- xinference/model/llm/llm_family_modelscope.json +519 -0
- xinference/model/llm/mlx/core.py +45 -3
- xinference/model/llm/sglang/core.py +1 -0
- xinference/model/llm/transformers/core.py +1 -0
- xinference/model/llm/transformers/glm_edge_v.py +230 -0
- xinference/model/llm/utils.py +19 -0
- xinference/model/llm/vllm/core.py +84 -2
- 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/types.py +2 -1
- {xinference-0.16.3.dist-info → xinference-1.0.1.dist-info}/METADATA +30 -6
- {xinference-0.16.3.dist-info → xinference-1.0.1.dist-info}/RECORD +58 -63
- {xinference-0.16.3.dist-info → xinference-1.0.1.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.3.dist-info → xinference-1.0.1.dist-info}/LICENSE +0 -0
- {xinference-0.16.3.dist-info → xinference-1.0.1.dist-info}/entry_points.txt +0 -0
- {xinference-0.16.3.dist-info → xinference-1.0.1.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.1
|
|
4
4
|
Summary: Model Serving Made Easy
|
|
5
5
|
Home-page: https://github.com/xorbitsai/inference
|
|
6
6
|
Author: Qin Xuye
|
|
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
|
19
19
|
Classifier: Topic :: Software Development :: Libraries
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
|
-
Requires-Dist: xoscar
|
|
22
|
+
Requires-Dist: xoscar<0.4.2,>=0.3.0
|
|
23
23
|
Requires-Dist: torch
|
|
24
24
|
Requires-Dist: gradio
|
|
25
25
|
Requires-Dist: pillow
|
|
@@ -34,7 +34,7 @@ Requires-Dist: huggingface-hub>=0.19.4
|
|
|
34
34
|
Requires-Dist: typing-extensions
|
|
35
35
|
Requires-Dist: modelscope>=1.10.0
|
|
36
36
|
Requires-Dist: sse-starlette>=1.6.5
|
|
37
|
-
Requires-Dist: openai
|
|
37
|
+
Requires-Dist: openai>=1.40.0
|
|
38
38
|
Requires-Dist: python-jose[cryptography]
|
|
39
39
|
Requires-Dist: passlib[bcrypt]
|
|
40
40
|
Requires-Dist: aioprometheus[starlette]>=23.12.0
|
|
@@ -80,7 +80,7 @@ Requires-Dist: conformer; extra == "all"
|
|
|
80
80
|
Requires-Dist: gdown; extra == "all"
|
|
81
81
|
Requires-Dist: pyarrow; extra == "all"
|
|
82
82
|
Requires-Dist: HyperPyYAML; extra == "all"
|
|
83
|
-
Requires-Dist: onnxruntime
|
|
83
|
+
Requires-Dist: onnxruntime>=1.16.0; extra == "all"
|
|
84
84
|
Requires-Dist: boto3<1.28.65,>=1.28.55; extra == "all"
|
|
85
85
|
Requires-Dist: tensorizer~=2.9.0; extra == "all"
|
|
86
86
|
Requires-Dist: eva-decord; extra == "all"
|
|
@@ -89,6 +89,8 @@ Requires-Dist: loguru; extra == "all"
|
|
|
89
89
|
Requires-Dist: natsort; extra == "all"
|
|
90
90
|
Requires-Dist: loralib; extra == "all"
|
|
91
91
|
Requires-Dist: ormsgpack; extra == "all"
|
|
92
|
+
Requires-Dist: cachetools; extra == "all"
|
|
93
|
+
Requires-Dist: silero-vad; extra == "all"
|
|
92
94
|
Requires-Dist: qwen-vl-utils; extra == "all"
|
|
93
95
|
Requires-Dist: datamodel-code-generator; extra == "all"
|
|
94
96
|
Requires-Dist: jsonschema; extra == "all"
|
|
@@ -96,6 +98,7 @@ Requires-Dist: verovio>=4.3.1; extra == "all"
|
|
|
96
98
|
Requires-Dist: auto-gptq; sys_platform != "darwin" and extra == "all"
|
|
97
99
|
Requires-Dist: autoawq<0.2.6; sys_platform != "darwin" and extra == "all"
|
|
98
100
|
Requires-Dist: mlx-lm; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
|
|
101
|
+
Requires-Dist: mlx-whisper; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
|
|
99
102
|
Requires-Dist: vllm>=0.2.6; sys_platform == "linux" and extra == "all"
|
|
100
103
|
Requires-Dist: sglang>=0.2.7; sys_platform == "linux" and extra == "all"
|
|
101
104
|
Provides-Extra: audio
|
|
@@ -117,11 +120,13 @@ Requires-Dist: diffusers>=0.30.0; extra == "audio"
|
|
|
117
120
|
Requires-Dist: gdown; extra == "audio"
|
|
118
121
|
Requires-Dist: pyarrow; extra == "audio"
|
|
119
122
|
Requires-Dist: HyperPyYAML; extra == "audio"
|
|
120
|
-
Requires-Dist: onnxruntime
|
|
123
|
+
Requires-Dist: onnxruntime>=1.16.0; extra == "audio"
|
|
121
124
|
Requires-Dist: loguru; extra == "audio"
|
|
122
125
|
Requires-Dist: natsort; extra == "audio"
|
|
123
126
|
Requires-Dist: loralib; extra == "audio"
|
|
124
127
|
Requires-Dist: ormsgpack; extra == "audio"
|
|
128
|
+
Requires-Dist: cachetools; extra == "audio"
|
|
129
|
+
Requires-Dist: silero-vad; extra == "audio"
|
|
125
130
|
Provides-Extra: benchmark
|
|
126
131
|
Requires-Dist: psutil; extra == "benchmark"
|
|
127
132
|
Provides-Extra: dev
|
|
@@ -139,7 +144,7 @@ Requires-Dist: sphinx-intl>=0.9.9; extra == "dev"
|
|
|
139
144
|
Requires-Dist: jieba>=0.42.0; extra == "dev"
|
|
140
145
|
Requires-Dist: flake8>=3.8.0; extra == "dev"
|
|
141
146
|
Requires-Dist: black; extra == "dev"
|
|
142
|
-
Requires-Dist: openai
|
|
147
|
+
Requires-Dist: openai>=1.40.0; extra == "dev"
|
|
143
148
|
Requires-Dist: langchain; extra == "dev"
|
|
144
149
|
Requires-Dist: langchain-community; extra == "dev"
|
|
145
150
|
Requires-Dist: orjson; extra == "dev"
|
|
@@ -173,6 +178,7 @@ Provides-Extra: llama_cpp
|
|
|
173
178
|
Requires-Dist: llama-cpp-python!=0.2.58,>=0.2.25; extra == "llama-cpp"
|
|
174
179
|
Provides-Extra: mlx
|
|
175
180
|
Requires-Dist: mlx-lm; extra == "mlx"
|
|
181
|
+
Requires-Dist: mlx-whisper; extra == "mlx"
|
|
176
182
|
Provides-Extra: rerank
|
|
177
183
|
Requires-Dist: FlagEmbedding; extra == "rerank"
|
|
178
184
|
Provides-Extra: sglang
|
|
@@ -389,6 +395,24 @@ Once Xinference is running, there are multiple ways you can try it: via the web
|
|
|
389
395
|
| [Slack](https://join.slack.com/t/xorbitsio/shared_invite/zt-1o3z9ucdh-RbfhbPVpx7prOVdM1CAuxg) | Collaborating with other Xorbits users. |
|
|
390
396
|
| [Twitter](https://twitter.com/xorbitsio) | Staying up-to-date on new features. |
|
|
391
397
|
|
|
398
|
+
## Citation
|
|
399
|
+
|
|
400
|
+
If this work is helpful, please kindly cite as:
|
|
401
|
+
|
|
402
|
+
```bibtex
|
|
403
|
+
@inproceedings{lu2024xinference,
|
|
404
|
+
title = "Xinference: Making Large Model Serving Easy",
|
|
405
|
+
author = "Lu, Weizheng and Xiong, Lingfeng and Zhang, Feng and Qin, Xuye and Chen, Yueguo",
|
|
406
|
+
booktitle = "Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing: System Demonstrations",
|
|
407
|
+
month = nov,
|
|
408
|
+
year = "2024",
|
|
409
|
+
address = "Miami, Florida, USA",
|
|
410
|
+
publisher = "Association for Computational Linguistics",
|
|
411
|
+
url = "https://aclanthology.org/2024.emnlp-demo.30",
|
|
412
|
+
pages = "291--300",
|
|
413
|
+
}
|
|
414
|
+
```
|
|
415
|
+
|
|
392
416
|
## Contributors
|
|
393
417
|
|
|
394
418
|
<a href="https://github.com/xorbitsai/inference/graphs/contributors">
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
xinference/__init__.py,sha256=nmTTrYbIpj964ZF6ojtgOM7E85JBOj1EyQbmYjbj1jw,915
|
|
2
|
-
xinference/_compat.py,sha256=
|
|
3
|
-
xinference/_version.py,sha256=
|
|
2
|
+
xinference/_compat.py,sha256=vpf_M9Ou6d9qaq-hG5isJ-C8e8UdPZPqoWcPhabfNko,4135
|
|
3
|
+
xinference/_version.py,sha256=ENOsRw9OHQL_a2m0T4MVfI2yL84k11_7guNq3F53rsg,497
|
|
4
4
|
xinference/conftest.py,sha256=vETDpRBVIlWbWi7OTwf7og89U25KyYGyI7yPIB3O8N8,9564
|
|
5
|
-
xinference/constants.py,sha256=
|
|
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
|
-
xinference/types.py,sha256=
|
|
9
|
+
xinference/types.py,sha256=t9SIU06Y1Y_lmXMfQmYAHmP8K6vTnD5Ly32z4KqriZE,12514
|
|
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=4tEu4YiT5iQU9ZVPI5gpQzwe-pEXiM05o_7S7MnJHBg,92140
|
|
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,20 +18,20 @@ 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=JwzP7etUZBR0mmU7y3dUOEWN_D7ol_2hXN9KMAzKZaw,53601
|
|
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=k5hMtDUhZZjytz1aniTq4F9Bl2Kx-7fPv8cd_yLbCUw,40646
|
|
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=
|
|
33
|
+
xinference/core/supervisor.py,sha256=6DNERyU_Un-Xc9a1P2EyVmJiNOaKI7pBBNwiC4BA92s,53088
|
|
34
|
+
xinference/core/utils.py,sha256=trVesJM9GLiDXYtyoVt23rV_AS3G-gAu2BZpBkSMn8w,11067
|
|
35
35
|
xinference/core/worker.py,sha256=YIlaQosBRj_VStfZGPfWnT2ie13GW8K4NNEP5qz28lI,46402
|
|
36
36
|
xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
37
37
|
xinference/deploy/cmdline.py,sha256=yQI6KuRUzih0rs_fInp2Lr3rwkOjBOM0eydPaF7VKDQ,48385
|
|
@@ -44,22 +44,23 @@ xinference/deploy/test/test_cmdline.py,sha256=m8xDzjtDuAJy0QkvYVJIZDuTB29cmYBV0d
|
|
|
44
44
|
xinference/model/__init__.py,sha256=bCEwvKjoazBW8QZ5C5Hpfd5v_VTbWpXvo8IB9d4Qs70,1127
|
|
45
45
|
xinference/model/core.py,sha256=_NEH4wkjjJgRDdLHNVY_hL3V0kT67CvTay89uIzx1Ns,4736
|
|
46
46
|
xinference/model/utils.py,sha256=_yJ5h4RUzt7Kjs2WdjSzbVM3FTWEkX0ycOnXANZ9KVg,11394
|
|
47
|
-
xinference/model/audio/__init__.py,sha256=
|
|
47
|
+
xinference/model/audio/__init__.py,sha256=KasWsaNPeij6sGpHKqXaUc_bxUw1yYbD7-fwxkcoAVE,3731
|
|
48
48
|
xinference/model/audio/chattts.py,sha256=ny3DZTCTt2MzdkLw994_QHZ_4qIEUZcNexNJkCejCyo,4998
|
|
49
|
-
xinference/model/audio/core.py,sha256=
|
|
49
|
+
xinference/model/audio/core.py,sha256=bdStvxdYJC2R8YAs4W58P97MrcREq70Ta9JX1ROxynM,6894
|
|
50
50
|
xinference/model/audio/cosyvoice.py,sha256=Enur1Y4Xa-mpr7wwnoXWwhyh7PUAjrHZ8DV91tTrpjE,6426
|
|
51
51
|
xinference/model/audio/custom.py,sha256=8GXBRmTtR-GY03-E91nlRGTIuabCRzlt20ecU6Un6Y8,4985
|
|
52
|
-
xinference/model/audio/fish_speech.py,sha256=
|
|
52
|
+
xinference/model/audio/fish_speech.py,sha256=rdt73VK512WocFhL6WqcqoxOkMYtB00sMu40umt9RuQ,8856
|
|
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=Z_Y7Fv6fxLGAX8em5pgGVR2ZxBxtCsy0ANsKrjy9vA0,7300
|
|
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
|
|
58
|
+
xinference/model/audio/whisper_mlx.py,sha256=zBuCd7GUlsN9FC_-J11gqIkOCicihfbqxoabiXTvH2Q,7237
|
|
58
59
|
xinference/model/embedding/__init__.py,sha256=1GmvQsbeeVUT-VRaRGetf8UT4RQgLWIzfp5kfX5jw-k,3567
|
|
59
|
-
xinference/model/embedding/core.py,sha256=
|
|
60
|
+
xinference/model/embedding/core.py,sha256=kGMxfKQ5s0G2fJcW-zVxKThDFbOWpSQD8vkCgnhFnoU,29593
|
|
60
61
|
xinference/model/embedding/custom.py,sha256=757KncqhsOWVypHZFtuhBP_xy-UTNaFdy0BuZRfuIV8,3848
|
|
61
|
-
xinference/model/embedding/model_spec.json,sha256=
|
|
62
|
-
xinference/model/embedding/model_spec_modelscope.json,sha256=
|
|
62
|
+
xinference/model/embedding/model_spec.json,sha256=cVYzB4VLYw2FoP7bfLntTuMVDEigHTGDSyBtcj8F6gc,7060
|
|
63
|
+
xinference/model/embedding/model_spec_modelscope.json,sha256=kWPY9tILL69X_6iDuVoh6Y_VODLJ7EFsD0CGkbuQlGo,6210
|
|
63
64
|
xinference/model/embedding/utils.py,sha256=t_y-7TrYenJKzX3p8e8KWXyC66u7Kd7lMvSzEOolnZw,790
|
|
64
65
|
xinference/model/flexible/__init__.py,sha256=DUAfq9vaiXOfUJfP2WRfqDmGfMtKMqRE-wLETaJw4_w,1718
|
|
65
66
|
xinference/model/flexible/core.py,sha256=3REGHL9uUTgwgEEr6qv5uNMq-j-7by4bAco7QNwwxx4,7231
|
|
@@ -79,34 +80,35 @@ xinference/model/image/ocr/got_ocr2.py,sha256=N5Ux1dCtDMA25BBEmqiYNVKrk_HA-IPWch
|
|
|
79
80
|
xinference/model/image/scheduler/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
80
81
|
xinference/model/image/scheduler/flux.py,sha256=GHlpPfU5UxsiQWNyvNe9SaVZceNg_2CiF1oJUdCao5o,18830
|
|
81
82
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
82
|
-
xinference/model/image/stable_diffusion/core.py,sha256=
|
|
83
|
+
xinference/model/image/stable_diffusion/core.py,sha256=M_sYFsY_q91l0D6O7AqQVd_h-RIgXcmaydyCvASyNsI,23055
|
|
83
84
|
xinference/model/image/stable_diffusion/mlx.py,sha256=GZsozzGB04NfHAdU9MI6gwWE1t_A-s_Ddn_ic8DlkKQ,7476
|
|
84
|
-
xinference/model/llm/__init__.py,sha256=
|
|
85
|
+
xinference/model/llm/__init__.py,sha256=WqNnI4ePhe1XJ_gzFOk-wpM9fjBjUpDwGlAW9CuzlNM,14020
|
|
85
86
|
xinference/model/llm/core.py,sha256=g-luuAjZizrPunhyFE9IRjn57l0g6FY_1xUwtlRegbs,8151
|
|
86
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
87
|
+
xinference/model/llm/llm_family.json,sha256=mlqXYbBkjBeB3xWRpaYpScpoDM5DIT1ESxI8IE7lDoI,307998
|
|
87
88
|
xinference/model/llm/llm_family.py,sha256=tI2wPefd7v-PWcVhUO2qy6iGob_ioeNCwAQQzal-2o4,39549
|
|
88
89
|
xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
|
|
89
|
-
xinference/model/llm/llm_family_modelscope.json,sha256=
|
|
90
|
+
xinference/model/llm/llm_family_modelscope.json,sha256=nySjsEQk6V6PK0IX4zpjUyTQLBVGYv77cxwdHlagvps,238793
|
|
90
91
|
xinference/model/llm/llm_family_openmind_hub.json,sha256=jl9pfbe5DztoxgEwKBxDk1Wd7TziTiJ48_Ie_lJdYjA,67872
|
|
91
92
|
xinference/model/llm/memory.py,sha256=NEIMw6wWaF9S_bnBYq-EyuDhVbUEEeceQhwE1iwsrhI,10207
|
|
92
|
-
xinference/model/llm/utils.py,sha256=
|
|
93
|
+
xinference/model/llm/utils.py,sha256=uHLhiaxPNgrIOzGvVJJlwE2S7eQtFis4uvfOjFSVm4Q,24294
|
|
93
94
|
xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
94
95
|
xinference/model/llm/llama_cpp/core.py,sha256=vjuTapwbn-ZjUX-8WA0nFyicE4UGUSehU_csSetvcZw,10928
|
|
95
96
|
xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
97
|
xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc3ua8yPTI,19835
|
|
97
98
|
xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
98
|
-
xinference/model/llm/mlx/core.py,sha256=
|
|
99
|
+
xinference/model/llm/mlx/core.py,sha256=ojemIUVXt4ApI5LgjJ2BBXF_gw49Cu4EtixurLnSH1s,15318
|
|
99
100
|
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
100
|
-
xinference/model/llm/sglang/core.py,sha256=
|
|
101
|
+
xinference/model/llm/sglang/core.py,sha256=1xXOyn3oWYYl-AYvAGwsQkxsaEf0kpbdKQlfORgU7Dk,16721
|
|
101
102
|
xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
102
103
|
xinference/model/llm/transformers/chatglm.py,sha256=tr6nEfHAg_mFRDlqXLMvbSq6U47851jOpqTz_vkWNJM,22266
|
|
103
104
|
xinference/model/llm/transformers/cogvlm2.py,sha256=I5Ftm0VYjbTAv5ZARZCo32Ggpw58PJfHs5B_nX_BIlU,15972
|
|
104
105
|
xinference/model/llm/transformers/cogvlm2_video.py,sha256=ZGkpC4x2uEtjwoMrLSODmAUYTjOeSNYxZi9VpQrpnhU,11857
|
|
105
106
|
xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
|
|
106
|
-
xinference/model/llm/transformers/core.py,sha256=
|
|
107
|
+
xinference/model/llm/transformers/core.py,sha256=8-BKAXWhBAQOnk1tDHwNQzq5x74-y1P9kdxO2D3ZhjQ,28247
|
|
107
108
|
xinference/model/llm/transformers/deepseek_v2.py,sha256=-RKlI3mhja730md4evQ2vfIxBnZD5vWyrgmg_3eovms,4096
|
|
108
109
|
xinference/model/llm/transformers/deepseek_vl.py,sha256=pB6i6DW5oyfHdqTgKpi2DkIKVGlPLGIDR_Op0sB1uKA,10445
|
|
109
110
|
xinference/model/llm/transformers/glm4v.py,sha256=goph2HhpV8gUm2t8-T1P-jTF2r_kPeH6QNe64lmlm0g,13871
|
|
111
|
+
xinference/model/llm/transformers/glm_edge_v.py,sha256=sedHB4iRd37UC__1MeXs33NLMQQKFYBIFf3A71rMEZU,8159
|
|
110
112
|
xinference/model/llm/transformers/intern_vl.py,sha256=0pbze1eo3HvNQ0nW-mVJcJuJ4GrEyBBqQAYIdXnAn6c,18270
|
|
111
113
|
xinference/model/llm/transformers/internlm2.py,sha256=3mjRgqU0RgCFF0F46ieVH0NO2JCKGsQkmkoVlWJrh8E,3221
|
|
112
114
|
xinference/model/llm/transformers/minicpmv25.py,sha256=mr80-OlSlK_opSuAO3cz_QlkqujLr6V-OsTP0ebwpE8,6814
|
|
@@ -120,10 +122,10 @@ xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjD
|
|
|
120
122
|
xinference/model/llm/transformers/utils.py,sha256=Ej9Tu2yVAotfXMFsl30QlYXLZTODU6Pv_UppsGGUiSw,19185
|
|
121
123
|
xinference/model/llm/transformers/yi_vl.py,sha256=iCdRLw-wizbU-qXXc8CT4DhC0Pt-uYg0vFwXEhAZjQg,8961
|
|
122
124
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
123
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
125
|
+
xinference/model/llm/vllm/core.py,sha256=ZPg4oJql8mhHMs5CpHo83Fm6peeKvB3EBXwaFNQQ3Cw,35185
|
|
124
126
|
xinference/model/llm/vllm/utils.py,sha256=LKOmwfFRrlSecawxT-uE39tC2RQbf1UIiSH9Uz90X6w,1313
|
|
125
127
|
xinference/model/rerank/__init__.py,sha256=wRpf1bOMfmAsuEKEGczMTB5fWEvuqltlJbIbRb-x8Ko,3483
|
|
126
|
-
xinference/model/rerank/core.py,sha256=
|
|
128
|
+
xinference/model/rerank/core.py,sha256=e-QoFgVk-6LOQPM5zqbEj095J-1bkuyd9c5zRI5DlF8,14560
|
|
127
129
|
xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
|
|
128
130
|
xinference/model/rerank/model_spec.json,sha256=xUuJgJ8Ad4l2v8gEHxAdF_xoaSkA8j8AX51LhrjGEA0,2005
|
|
129
131
|
xinference/model/rerank/model_spec_modelscope.json,sha256=pf5hX4g0HdVjk2-ibHTl_mXHgQSSPYMTBOIwvnwMMkk,1616
|
|
@@ -211,22 +213,18 @@ xinference/thirdparty/deepseek_vl/utils/conversation.py,sha256=7oITA8TsIuOfumVZ8
|
|
|
211
213
|
xinference/thirdparty/deepseek_vl/utils/io.py,sha256=HQqLoONZF4nl1E9oMrm7_2LwU8ZSh1C9htm7vLN4YfI,2751
|
|
212
214
|
xinference/thirdparty/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
215
|
xinference/thirdparty/fish_speech/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
214
|
-
xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=
|
|
216
|
+
xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=zwsHs1oG4k7TBqBDZosGLW4uWADTzKWOjo0pI956PNM,7401
|
|
215
217
|
xinference/thirdparty/fish_speech/fish_speech/scheduler.py,sha256=xpstAfXlsdx-N_hDcJJYFKiLb_cW5mTdXACyuODrcIg,1101
|
|
216
218
|
xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=TQbqeYF5RPkShMNjb9dsqWTWhEyHFnfdFOR_gnbIfUo,4474
|
|
217
219
|
xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py,sha256=LYHvlvb9463UMJ3stVzBilVpLtdiLCteuzMIB5ypHS0,70
|
|
218
220
|
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
221
|
xinference/thirdparty/fish_speech/fish_speech/configs/base.yaml,sha256=7_yXj9Y9SNhI7wiQeFvoLArtp9gqJCF-f43JGQ-TwCI,2544
|
|
221
222
|
xinference/thirdparty/fish_speech/fish_speech/configs/firefly_gan_vq.yaml,sha256=-SO0089ARGOAlhttQN1J0fSpoa81MABHg20sOYmAfCc,1002
|
|
222
223
|
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
224
|
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
225
|
xinference/thirdparty/fish_speech/fish_speech/datasets/concat_repeat.py,sha256=y9pAty3Sa3gyfAERSaubmMNRdUzyAw4zzoDyXzuGGxQ,1498
|
|
227
226
|
xinference/thirdparty/fish_speech/fish_speech/datasets/semantic.py,sha256=FHpdQj3awN-21w3f96xL0Z6DvEnOpW7qES8_ZjdHBt8,16727
|
|
228
227
|
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
228
|
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text-data.proto,sha256=1ruMlbx5JfQ-_QAzzwPnBZ5zrdOPTRlEovVgpRwnn3w,392
|
|
231
229
|
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_pb2.py,sha256=GFnBeGCTFtWJTdNXQx0hzPpxagzleSyWxN3pE22-E2g,1758
|
|
232
230
|
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_stream.py,sha256=v9i3jbIC6KFTSLvSVso8-3mBDufSOwE7IAr4-5RXgQ0,781
|
|
@@ -234,24 +232,22 @@ xinference/thirdparty/fish_speech/fish_speech/i18n/README.md,sha256=pXQy_jPFXyTB
|
|
|
234
232
|
xinference/thirdparty/fish_speech/fish_speech/i18n/__init__.py,sha256=u9r_HCtTmYcU64L62Gg9lLANvGybfb0-ETw8Ob-fnxY,43
|
|
235
233
|
xinference/thirdparty/fish_speech/fish_speech/i18n/core.py,sha256=8Ks8wGog73U-AZqlzGltfx61KALGTh7uCIXnQHDnDOw,1036
|
|
236
234
|
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/
|
|
235
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/en_US.json,sha256=VDvNbFVbeA6xOrOZaG6kGvDTuvKJmP6Rpagzs07_dR4,8091
|
|
236
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json,sha256=ocpRRa2n7bA5VekQhk_sxt9VNH8HTgqN6fWBlxkVa6k,9001
|
|
237
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json,sha256=WRa2fn05kv5NkacQxsAf2RMR3IfiIAM_p9oiCNw49ao,9491
|
|
238
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ko_KR.json,sha256=n0clRJF1GeHs-fQdBVn2elIt8GFs7WpAbWzev2FIXdo,8780
|
|
241
239
|
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
|
|
240
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json,sha256=UXKUCm4i8DpRvNehWEZV5W6dTw36QcjzddvJpdUdAaM,7753
|
|
244
241
|
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
245
242
|
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=
|
|
243
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=mlrD22dZALaaoVphbriUYL6Ss1II0u-IZhwple2e5FI,28039
|
|
247
244
|
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lora.py,sha256=KHbtG1BGrFMtdoMtHXPWb3OTez8HtHEiuAaMEFOrNYI,2923
|
|
248
245
|
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
249
246
|
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
|
|
247
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py,sha256=pKiKQ8irkt5FqwodBiwD3QkzMGxGvTTC6PFKKProOuI,19985
|
|
248
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py,sha256=GxRY7jSb5vPjDJuofkHhQLWEmkZVCJQ0B-iNokW6vkw,3448
|
|
253
249
|
xinference/thirdparty/fish_speech/fish_speech/text/__init__.py,sha256=3lYfSw4Xb3Qh0p8FsjX4ToOJNsm7ZxN3XPh_xFKXoUQ,102
|
|
254
|
-
xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=
|
|
250
|
+
xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=hcrKvtDWa-jmPzFqhFJwHxEeY2QNZfAadKhwAo-E5CU,1203
|
|
255
251
|
xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=wv-x9U3cEz7D4iGmzkf_x2YpkvTthuDHVfM6VQW_gQw,3827
|
|
256
252
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/.gitignore,sha256=04gWbPAivQzTV7w2eOgkk3xcMZLuti1pkLwy_mW7k6M,1274
|
|
257
253
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/README.md,sha256=9tZNujydXU0DlgpnsJTfMI880mgh41l6UvqqQQKbcPk,890
|
|
@@ -267,7 +263,7 @@ xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/money.py,sha256
|
|
|
267
263
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/percentage.py,sha256=3DCSkP7Qg5px99rfgF-Qb1yL9HeMDAV6OxE2VSleeSo,838
|
|
268
264
|
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/telephone.py,sha256=cDPtwmnHKD_JP29wIp5p1Og0I132BUg_cmzGdyoJHM8,1557
|
|
269
265
|
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=
|
|
266
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/__init__.py,sha256=3YIGzsJbj84oTR-WQoFz_pztZtUIHp163K_x0XD8txU,706
|
|
271
267
|
xinference/thirdparty/fish_speech/fish_speech/utils/braceexpand.py,sha256=X_44wW-LJP21kNb19j63DSSzFopkgsSNkqmsElLSS6U,6724
|
|
272
268
|
xinference/thirdparty/fish_speech/fish_speech/utils/context.py,sha256=G5AyI1qavhX-vBesANU0Mb97ojBY80nwiXBrzNFdQ5E,287
|
|
273
269
|
xinference/thirdparty/fish_speech/fish_speech/utils/file.py,sha256=GrVn5R0Mc5Veb3_9kyOaH_yIiN3zoFvV7g1G3SY-Rp4,345
|
|
@@ -276,28 +272,28 @@ xinference/thirdparty/fish_speech/fish_speech/utils/logger.py,sha256=WVnMyEQqlO2
|
|
|
276
272
|
xinference/thirdparty/fish_speech/fish_speech/utils/logging_utils.py,sha256=BJ3h8hF-62MbqxajhmZgKglkpjPfz_GTFTr682SIeYU,1384
|
|
277
273
|
xinference/thirdparty/fish_speech/fish_speech/utils/rich_utils.py,sha256=RHRUrq2xY1d1Eg24htFnmyj0RRW2NRdww9xz0jWnQt8,3105
|
|
278
274
|
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
|
|
275
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/utils.py,sha256=3w0drAiLo5bVnOrXH8ezsIAaAkSP3cqwgpMcr7kERFQ,4283
|
|
276
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py,sha256=33vk7md7-T9rIwdOarQ1n5XKu_FqwZqeo6D_WGObjH4,3974
|
|
277
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=NwcVYzbRLqdh8Y1RAXBNpsmzYjQj1GKOTkW5EaNxMYo,46887
|
|
283
278
|
xinference/thirdparty/fish_speech/fish_speech/webui/css/style.css,sha256=CLXPzePjropDNCfg2jptIwJRMIWPuc5jfd2aLGadMD0,2617
|
|
284
279
|
xinference/thirdparty/fish_speech/fish_speech/webui/html/footer.html,sha256=ofq4m93dF0Z_lXn2J6nLBwXwdugBOPIzjzFGBbr1C58,348
|
|
285
280
|
xinference/thirdparty/fish_speech/fish_speech/webui/js/animate.js,sha256=AG2umxvH9ly6ZxJDxV4sfz1A9Q3_unA7LnkKv05X-i4,2690
|
|
286
281
|
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
|
|
282
|
+
xinference/thirdparty/fish_speech/tools/api.py,sha256=LXq6L84EW_5bvBp6fgIkkegDgVQ8obYPph1OFm9SW5Q,29282
|
|
289
283
|
xinference/thirdparty/fish_speech/tools/download_models.py,sha256=UOOV9SzseMUGFqOw85AeAaXg5LcW0jMvkoet1elvI44,1365
|
|
284
|
+
xinference/thirdparty/fish_speech/tools/e2e_webui.py,sha256=JrT7ubhodvMICngsZkDDJ0Z0bCB4G1cpPBtQFc63Nhw,8908
|
|
290
285
|
xinference/thirdparty/fish_speech/tools/extract_model.py,sha256=42b_U4rmqX3OUOIqWQQczsEktt79aQSOJ4E55B1bHl8,536
|
|
291
286
|
xinference/thirdparty/fish_speech/tools/file.py,sha256=ZSWIpGIOuGbQ5gWmfS9LZWLLidc9gZ9p95QzAZkJneI,3047
|
|
292
|
-
xinference/thirdparty/fish_speech/tools/
|
|
293
|
-
xinference/thirdparty/fish_speech/tools/
|
|
287
|
+
xinference/thirdparty/fish_speech/tools/fish_e2e.py,sha256=JKrZwFdUXFegFe7d8eJcF8xKbvOnddjegxORCTL3KBk,9625
|
|
288
|
+
xinference/thirdparty/fish_speech/tools/msgpack_api.py,sha256=yKWc9wAycB4GSeAACO0_qmc7ONZN_zZP8tRBmCTbPkE,2623
|
|
289
|
+
xinference/thirdparty/fish_speech/tools/post_api.py,sha256=tWpMgh264Abk7t4w0du51sGMeXDYQm3bLdh1NadxUAo,6993
|
|
290
|
+
xinference/thirdparty/fish_speech/tools/schema.py,sha256=gh43aA3-kG2bZV-8UJhGqY8d-q1aHZIZy__fBtw0FLk,5257
|
|
294
291
|
xinference/thirdparty/fish_speech/tools/smart_pad.py,sha256=O6fCgrSouBX6prkrj6a03DPI-5loiS_oKaidtIXxuFg,1626
|
|
295
|
-
xinference/thirdparty/fish_speech/tools/webui.py,sha256=
|
|
292
|
+
xinference/thirdparty/fish_speech/tools/webui.py,sha256=4E9xlCyZlwTFOkGNrh7mNjg5mwtPHNwP7WF-_GwlyAo,18048
|
|
296
293
|
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
294
|
xinference/thirdparty/fish_speech/tools/llama/build_dataset.py,sha256=rOVoiXPpKqwT2C2cDhTgw8TMNH5Tq0QzejPd4Y387zY,4898
|
|
299
295
|
xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py,sha256=vF2OVE4kj5qVaBBHGR1eTqcmLWvUeoO4OMj9eUkTXvw,4623
|
|
300
|
-
xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=
|
|
296
|
+
xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=mbC8hXgpkXAQS_GAIodpcZiHVBqe5TJOBAqi6WQ2rDo,33784
|
|
301
297
|
xinference/thirdparty/fish_speech/tools/llama/merge_lora.py,sha256=VS-ZYzar8-MKj4PCzEoRjIin7GISVk6accZJXvrZHWQ,3273
|
|
302
298
|
xinference/thirdparty/fish_speech/tools/llama/quantize.py,sha256=meAgs8IXCDjUz6R8ihvFMLNqo7MDJnSDi0sE-DAUJA0,16602
|
|
303
299
|
xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py,sha256=MuFdqOsU2QHq8cSz7pa4PAsjZyrJrghCZQR2SrpplTQ,2025
|
|
@@ -306,10 +302,9 @@ xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py,sha256=47DEQpj8HB
|
|
|
306
302
|
xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py,sha256=abg8hFiVcWwhJYT_E8De-vYRUQOs1u0Zxxgz1nj1790,22739
|
|
307
303
|
xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py,sha256=4Tau7ImBXLF-Atgnzb_-volKCb5nas56iBnLVlucL9k,10182
|
|
308
304
|
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
305
|
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=
|
|
306
|
+
xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py,sha256=DNXinP96_ZQX2G847E0eHqfOe1tcxF7vMBtjGlHBD9E,6845
|
|
307
|
+
xinference/thirdparty/fish_speech/tools/vqgan/inference.py,sha256=NL53U8qZ4IkvUssv83ltP1c1-zW7QWvhxZcDTR7ZiOE,3824
|
|
313
308
|
xinference/thirdparty/internvl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
314
309
|
xinference/thirdparty/internvl/conversation.py,sha256=2wLSnfxyLItQaLd-N5xoybBPKyZadXkVntPuMV5iyGo,15040
|
|
315
310
|
xinference/thirdparty/llava/__init__.py,sha256=UlCNtyBVX645CB6S6LfyYkTfQVO18_a8e9SmR7cHExA,41
|
|
@@ -15529,9 +15524,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15529
15524
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15530
15525
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15531
15526
|
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.
|
|
15527
|
+
xinference-1.0.1.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
15528
|
+
xinference-1.0.1.dist-info/METADATA,sha256=pLzWAyI3EYcEd7FbPEOnh6qtrxo0LqjCv2EWxREy8ZU,21992
|
|
15529
|
+
xinference-1.0.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
15530
|
+
xinference-1.0.1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
15531
|
+
xinference-1.0.1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
15532
|
+
xinference-1.0.1.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
|