Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion third_party/inference
Submodule inference updated 58 files
+5 −4 README.md
+1 −0 README_ja_JP.md
+5 −4 README_zh_CN.md
+1 −1 doc/source/getting_started/installation.rst
+2 −0 doc/source/getting_started/release_notes.rst
+27 −19 doc/source/locale/zh_CN/LC_MESSAGES/getting_started/release_notes.po
+5 −5 doc/source/models/builtin/llm/glm-4.7.rst
+31 −0 doc/source/models/builtin/llm/glm-5.rst
+28 −0 doc/source/models/builtin/llm/index.rst
+31 −0 doc/source/models/builtin/llm/kimi-k2.5.rst
+1 −1 doc/source/models/builtin/llm/mineru2.5-2509-1.2b.rst
+31 −0 doc/source/models/builtin/llm/minimax-m2.5.rst
+79 −0 doc/source/models/builtin/llm/qwen3.5.rst
+1 −1 doc/source/user_guide/backends.rst
+1 −1 examples/AI_podcast.py
+1 −1 examples/AI_podcast_ZH.py
+1 −1 xinference/__init__.py
+78 −301 xinference/api/restful_api.py
+14 −14 xinference/client/restful/async_restful_client.py
+13 −13 xinference/client/restful/restful_client.py
+1 −1 xinference/conftest.py
+1 −1 xinference/core/supervisor.py
+2 −2 xinference/core/worker.py
+2 −2 xinference/deploy/docker/Dockerfile
+1 −1 xinference/deploy/docker/Dockerfile.cpu
+1 −1 xinference/deploy/local.py
+2 −2 xinference/deploy/utils.py
+1 −1 xinference/model/audio/indextts2.py
+3 −3 xinference/model/image/ocr/deepseek_ocr.py
+6 −6 xinference/model/llm/core.py
+292 −2 xinference/model/llm/llm_family.json
+1 −1 xinference/model/llm/mlx/core.py
+1 −1 xinference/model/llm/sglang/core.py
+1 −0 xinference/model/llm/tool_parsers/__init__.py
+173 −0 xinference/model/llm/tool_parsers/deepseek_v3_1_tool_parser.py
+321 −0 xinference/model/llm/tool_parsers/tests/test_deepseek_v3_1_tool_parser.py
+8 −0 xinference/model/llm/vllm/core.py
+2 −2 xinference/model/llm/vllm/utils.py
+1 −1 xinference/model/utils.py
+2 −2 xinference/thirdparty/audiotools/core/playback.py
+3 −3 xinference/thirdparty/audiotools/core/util.py
+1 −1 xinference/thirdparty/audiotools/data/datasets.py
+1 −1 xinference/thirdparty/audiotools/ml/layers/base.py
+1 −1 xinference/thirdparty/audiotools/preference.py
+1 −1 xinference/thirdparty/deepseek_vl2/serve/app_modules/utils.py
+2 −2 xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py
+1 −1 xinference/thirdparty/indextts/infer.py
+1 −1 xinference/thirdparty/indextts/infer_v2.py
+2 −2 xinference/thirdparty/indextts/s2mel/modules/gpt_fast/quantize.py
+2 −2 xinference/thirdparty/indextts/s2mel/modules/openvoice/utils.py
+2 −2 xinference/thirdparty/indextts/s2mel/optimizers.py
+2 −2 xinference/thirdparty/indextts/utils/maskgct/models/codec/facodec/optimizer.py
+1 −1 xinference/thirdparty/megatts3/tts/utils/commons/ckpt_utils.py
+2 −2 xinference/thirdparty/megatts3/tts/utils/commons/hparams.py
+2 −2 xinference/thirdparty/melo/data_utils.py
+2 −2 xinference/thirdparty/melo/split_utils.py
+1 −1 xinference/thirdparty/melo/text/japanese.py
+1 −1 xinference/thirdparty/melo/text/tone_sandhi.py
Loading