Skip to content

Commit

Permalink
Chore: update submodule (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
XprobeBot authored Aug 9, 2024
1 parent 01c53ca commit d3fb6e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/inference
Submodule inference updated 70 files
+3 −1 .github/workflows/issue.yaml
+6 −2 .github/workflows/python.yaml
+1 −1 README.md
+30 −45 benchmark/benchmark_latency.py
+21 −68 benchmark/benchmark_long.py
+54 −42 benchmark/benchmark_rerank.py
+380 −0 benchmark/benchmark_runner.py
+48 −63 benchmark/benchmark_serving.py
+7 −44 benchmark/utils.py
+1 −1 doc/source/gen_docs.py
+70 −102 doc/source/locale/ja_JP/LC_MESSAGES/reference/index.po
+98 −59 doc/source/locale/zh_CN/LC_MESSAGES/models/custom.po
+41 −61 doc/source/locale/zh_CN/LC_MESSAGES/reference/index.po
+2 −0 doc/source/models/builtin/audio/index.rst
+19 −0 doc/source/models/builtin/audio/sensevoicesmall.rst
+21 −0 doc/source/models/builtin/embedding/gte-qwen2.rst
+19 −0 doc/source/models/builtin/image/flux.1-dev.rst
+19 −0 doc/source/models/builtin/image/flux.1-schnell.rst
+4 −2 doc/source/models/builtin/image/index.rst
+19 −0 doc/source/models/builtin/image/kolors.rst
+1 −1 doc/source/models/builtin/image/sd-turbo.rst
+1 −1 doc/source/models/builtin/image/sd3-medium.rst
+1 −1 doc/source/models/builtin/image/sdxl-turbo.rst
+1 −1 doc/source/models/builtin/image/stable-diffusion-v1.5.rst
+1 −1 doc/source/models/builtin/image/stable-diffusion-xl-base-1.0.rst
+44 −0 doc/source/models/custom.rst
+1 −0 doc/source/models/model_abilities/audio.rst
+0 −10 doc/source/reference/index.rst
+14 −8 setup.cfg
+54 −0 xinference/api/restful_api.py
+0 −3 xinference/client/handlers.py
+51 −134 xinference/client/restful/restful_client.py
+1 −0 xinference/constants.py
+1 −4 xinference/core/chat_interface.py
+33 −5 xinference/core/image_interface.py
+28 −2 xinference/core/model.py
+37 −0 xinference/core/supervisor.py
+128 −84 xinference/core/worker.py
+1 −4 xinference/deploy/cmdline.py
+1 −1 xinference/deploy/docker/cpu.Dockerfile
+4 −2 xinference/deploy/docker/requirements.txt
+4 −2 xinference/deploy/docker/requirements_cpu.txt
+11 −3 xinference/model/audio/core.py
+114 −0 xinference/model/audio/funasr.py
+20 −0 xinference/model/audio/model_spec.json
+21 −0 xinference/model/audio/model_spec_modelscope.json
+52 −0 xinference/model/audio/tests/test_funasr.py
+1 −1 xinference/model/audio/whisper.py
+12 −0 xinference/model/core.py
+3 −4 xinference/model/image/core.py
+41 −13 xinference/model/image/model_spec.json
+30 −10 xinference/model/image/model_spec_modelscope.json
+53 −2 xinference/model/image/stable_diffusion/core.py
+2 −0 xinference/model/llm/__init__.py
+83 −1 xinference/model/llm/llm_family.json
+85 −1 xinference/model/llm/llm_family_modelscope.json
+1 −0 xinference/model/llm/pytorch/core.py
+247 −0 xinference/model/llm/pytorch/minicpmv26.py
+72 −34 xinference/model/llm/sglang/core.py
+38 −0 xinference/model/llm/vllm/core.py
+62 −0 xinference/model/video/__init__.py
+178 −0 xinference/model/video/core.py
+180 −0 xinference/model/video/diffusers.py
+11 −0 xinference/model/video/model_spec.json
+12 −0 xinference/model/video/model_spec_modelscope.json
+13 −0 xinference/model/video/tests/__init__.py
+63 −0 xinference/model/video/tests/test_diffusers_video.py
+10 −24 xinference/types.py
+4 −0 xinference/web/ui/src/scenes/launch_model/index.js
+25 −0 xinference/web/ui/src/scenes/running_models/index.js

0 comments on commit d3fb6e2

Please sign in to comment.