Skip to content

Commit

Permalink
Chore: update submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
XprobeBot committed Jun 28, 2024
1 parent 8e81cad commit 8b20772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/inference
Submodule inference updated 51 files
+1 −0 .github/workflows/python.yaml
+35 −10 doc/source/locale/zh_CN/LC_MESSAGES/models/model_abilities/image.po
+2 −0 doc/source/models/builtin/image/index.rst
+19 −0 doc/source/models/builtin/image/sd3-medium.rst
+1 −1 doc/source/models/builtin/llm/glm-4v.rst
+2 −2 doc/source/models/builtin/llm/index.rst
+1 −1 doc/source/models/builtin/llm/qwen1.5-moe-chat.rst
+1 −1 doc/source/models/builtin/llm/qwen2-moe-instruct.rst
+2 −0 doc/source/models/builtin/rerank/index.rst
+18 −0 doc/source/models/builtin/rerank/jina-reranker-v2.rst
+9 −0 doc/source/models/model_abilities/image.rst
+4 −2 setup.cfg
+96 −16 xinference/api/restful_api.py
+30 −0 xinference/client/restful/restful_client.py
+3 −3 xinference/conftest.py
+5 −0 xinference/constants.py
+1 −1 xinference/core/model.py
+63 −1 xinference/core/supervisor.py
+5 −21 xinference/core/tests/test_restful_api.py
+23 −0 xinference/core/worker.py
+46 −0 xinference/deploy/cmdline.py
+3 −2 xinference/deploy/docker/Dockerfile
+2 −0 xinference/deploy/docker/cpu.Dockerfile
+6 −0 xinference/model/image/model_spec.json
+7 −0 xinference/model/image/model_spec_modelscope.json
+2 −2 xinference/model/llm/ggml/llamacpp.py
+3 −2 xinference/model/llm/llm_family.py
+169 −80 xinference/model/llm/pytorch/chatglm.py
+5 −0 xinference/model/llm/pytorch/cogvlm2.py
+72 −6 xinference/model/llm/pytorch/core.py
+5 −0 xinference/model/llm/pytorch/glm4v.py
+10 −0 xinference/model/llm/pytorch/intern_vl.py
+5 −0 xinference/model/llm/pytorch/internlm2.py
+16 −5 xinference/model/llm/pytorch/minicpmv25.py
+0 −1 xinference/model/llm/pytorch/omnilmm.py
+9 −0 xinference/model/llm/pytorch/qwen_vl.py
+342 −0 xinference/model/llm/pytorch/tensorizer_utils.py
+116 −0 xinference/model/llm/pytorch/tests/test_tensorizer.py
+11 −14 xinference/model/llm/utils.py
+2 −2 xinference/model/llm/vllm/core.py
+10 −2 xinference/model/rerank/core.py
+7 −0 xinference/model/rerank/model_spec.json
+1 −0 xinference/types.py
+230 −355 xinference/web/ui/package-lock.json
+33 −12 xinference/web/ui/src/scenes/cluster_info/nodeInfo.js
+68 −7 xinference/web/ui/src/scenes/launch_model/LaunchModelComponent.js
+14 −1 xinference/web/ui/src/scenes/launch_model/components/addPair.js
+2 −1 xinference/web/ui/src/scenes/launch_model/index.js
+108 −21 xinference/web/ui/src/scenes/launch_model/launchLLM.js
+347 −31 xinference/web/ui/src/scenes/launch_model/modelCard.js
+19 −1 xinference/web/ui/src/scenes/register_model/registerModel.js

0 comments on commit 8b20772

Please sign in to comment.