Skip to content

Commit

Permalink
Chore: update submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
XprobeBot committed Nov 15, 2024
1 parent fbaa8d9 commit fbe09ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/inference
Submodule inference updated 57 files
+3 −0 .github/workflows/python.yaml
+18 −0 README.md
+18 −0 README_ja_JP.md
+18 −0 README_zh_CN.md
+4 −0 setup.cfg
+62 −11 xinference/api/restful_api.py
+8 −2 xinference/client/restful/restful_client.py
+1 −0 xinference/constants.py
+10 −3 xinference/core/model.py
+8 −2 xinference/core/supervisor.py
+67 −2 xinference/core/utils.py
+3 −1 xinference/deploy/docker/requirements.txt
+3 −1 xinference/deploy/docker/requirements_cpu.txt
+1 −1 xinference/model/audio/model_spec.json
+5 −2 xinference/model/image/stable_diffusion/core.py
+58 −0 xinference/model/image/tests/test_stable_diffusion.py
+176 −4 xinference/model/llm/llm_family.json
+211 −0 xinference/model/llm/llm_family_modelscope.json
+45 −2 xinference/model/llm/mlx/core.py
+6 −0 xinference/model/llm/mlx/tests/test_mlx.py
+11 −4 xinference/model/rerank/core.py
+2 −3 xinference/model/rerank/tests/test_rerank.py
+0 −0 xinference/thirdparty/fish_speech/fish_speech/configs/__init__.py
+0 −0 xinference/thirdparty/fish_speech/fish_speech/configs/lora/__init__.py
+254 −0 xinference/thirdparty/fish_speech/fish_speech/conversation.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
+2 −1 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 −2 xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json
+123 −0 xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ko_KR.json
+2 −1 xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json
+0 −0 xinference/thirdparty/fish_speech/fish_speech/models/__init__.py
+76 −11 xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py
+0 −0 xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/__init__.py
+9 −9 xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py
+1 −1 xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py
+32 −1 xinference/thirdparty/fish_speech/fish_speech/text/clean.py
+2 −1 xinference/thirdparty/fish_speech/fish_speech/utils/__init__.py
+22 −0 xinference/thirdparty/fish_speech/fish_speech/utils/utils.py
+0 −0 xinference/thirdparty/fish_speech/fish_speech/webui/__init__.py
+1 −1 xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py
+1 −1 xinference/thirdparty/fish_speech/fish_speech/webui/manage.py
+578 −75 xinference/thirdparty/fish_speech/tools/api.py
+0 −35 xinference/thirdparty/fish_speech/tools/commons.py
+232 −0 xinference/thirdparty/fish_speech/tools/e2e_webui.py
+298 −0 xinference/thirdparty/fish_speech/tools/fish_e2e.py
+0 −0 xinference/thirdparty/fish_speech/tools/llama/__init__.py
+393 −9 xinference/thirdparty/fish_speech/tools/llama/generate.py
+90 −29 xinference/thirdparty/fish_speech/tools/msgpack_api.py
+37 −15 xinference/thirdparty/fish_speech/tools/post_api.py
+187 −0 xinference/thirdparty/fish_speech/tools/schema.py
+0 −0 xinference/thirdparty/fish_speech/tools/vqgan/__init__.py
+7 −1 xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py
+2 −3 xinference/thirdparty/fish_speech/tools/vqgan/inference.py
+138 −75 xinference/thirdparty/fish_speech/tools/webui.py

0 comments on commit fbe09ea

Please sign in to comment.