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 29, 2024
1 parent 2ab2d0c commit 69005aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/inference
Submodule inference updated 56 files
+6 −1 .github/workflows/python.yaml
+3 −0 .gitignore
+2 −1 doc/source/getting_started/installation.rst
+20 −0 doc/source/models/builtin/audio/index.rst
+19 −0 doc/source/models/builtin/audio/whisper-base-mlx.rst
+19 −0 doc/source/models/builtin/audio/whisper-base.en-mlx.rst
+19 −0 doc/source/models/builtin/audio/whisper-large-v3-mlx.rst
+19 −0 doc/source/models/builtin/audio/whisper-large-v3-turbo-mlx.rst
+19 −0 doc/source/models/builtin/audio/whisper-medium-mlx.rst
+19 −0 doc/source/models/builtin/audio/whisper-medium.en-mlx.rst
+19 −0 doc/source/models/builtin/audio/whisper-small-mlx.rst
+19 −0 doc/source/models/builtin/audio/whisper-small.en-mlx.rst
+19 −0 doc/source/models/builtin/audio/whisper-tiny-mlx.rst
+19 −0 doc/source/models/builtin/audio/whisper-tiny.en-mlx.rst
+2 −2 doc/source/models/builtin/embedding/gte-qwen2.rst
+2 −2 doc/source/models/builtin/llm/codestral-v0.1.rst
+15 −4 doc/source/models/builtin/llm/index.rst
+1 −1 doc/source/models/builtin/llm/llama-3.1-instruct.rst
+5 −5 doc/source/models/builtin/llm/llama-3.2-vision-instruct.rst
+9 −9 doc/source/models/builtin/llm/llama-3.2-vision.rst
+11 −11 doc/source/models/builtin/llm/qwen2-vl-instruct.rst
+260 −4 doc/source/models/builtin/llm/qwen2.5-coder-instruct.rst
+66 −2 doc/source/models/builtin/llm/qwen2.5-coder.rst
+111 −0 doc/source/models/builtin/llm/qwq-32b-preview.rst
+32 −1 doc/source/models/model_abilities/audio.rst
+2 −1 doc/source/user_guide/backends.rst
+7 −5 setup.cfg
+22 −2 xinference/_compat.py
+86 −1 xinference/api/restful_api.py
+39 −0 xinference/client/restful/restful_client.py
+35 −12 xinference/core/model.py
+3 −3 xinference/deploy/docker/requirements.txt
+1 −1 xinference/deploy/docker/requirements_cpu.txt
+12 −0 xinference/model/audio/__init__.py
+21 −4 xinference/model/audio/core.py
+70 −35 xinference/model/audio/fish_speech.py
+80 −0 xinference/model/audio/model_spec.json
+ xinference/model/audio/tests/jfk.flac
+16 −2 xinference/model/audio/tests/test_fish_speech.py
+11 −12 xinference/model/audio/tests/test_whisper.py
+135 −0 xinference/model/audio/tests/test_whisper_mlx.py
+208 −0 xinference/model/audio/whisper_mlx.py
+259 −4 xinference/model/embedding/core.py
+1 −1 xinference/model/embedding/model_spec.json
+1 −1 xinference/model/embedding/model_spec_modelscope.json
+16 −0 xinference/model/embedding/tests/test_embedding_models.py
+2 −0 xinference/model/llm/__init__.py
+309 −2 xinference/model/llm/llm_family.json
+308 −0 xinference/model/llm/llm_family_modelscope.json
+0 −1 xinference/model/llm/mlx/core.py
+1 −0 xinference/model/llm/sglang/core.py
+1 −0 xinference/model/llm/transformers/core.py
+230 −0 xinference/model/llm/transformers/glm_edge_v.py
+19 −0 xinference/model/llm/utils.py
+84 −2 xinference/model/llm/vllm/core.py
+2 −1 xinference/types.py

0 comments on commit 69005aa

Please sign in to comment.