Skip to content

Commit

Permalink
Chore: update submodule (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
XprobeBot authored Jan 19, 2024
1 parent a7fbd03 commit 2102505
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/inference
Submodule inference updated 45 files
+1 −0 .github/workflows/python.yaml
+97 −0 doc/source/getting_started/troubleshooting.rst
+19 −0 doc/source/getting_started/using_docker_image.rst
+34 −31 doc/source/locale/zh_CN/LC_MESSAGES/getting_started/using_docker_image.po
+1 −1 doc/source/models/builtin/llm/chatglm3.rst
+2 −0 doc/source/models/builtin/llm/index.rst
+45 −0 doc/source/models/builtin/llm/internlm2-chat.rst
+6 −6 doc/source/models/builtin/llm/qwen-chat.rst
+0 −21 docker-compose.yml
+1 −0 setup.cfg
+35 −1 xinference/api/restful_api.py
+2 −2 xinference/client/oscar/actor_client.py
+2 −2 xinference/client/restful/restful_client.py
+31 −13 xinference/client/tests/test_client.py
+5 −1 xinference/conftest.py
+83 −0 xinference/core/metrics.py
+148 −8 xinference/core/model.py
+86 −0 xinference/core/status_guard.py
+57 −7 xinference/core/supervisor.py
+84 −0 xinference/core/tests/test_metrics.py
+35 −0 xinference/core/tests/test_restful_api.py
+132 −13 xinference/core/worker.py
+57 −4 xinference/deploy/cmdline.py
+0 −1 xinference/deploy/docker/Dockerfile
+27 −0 xinference/deploy/docker/docker-compose.yml
+32 −6 xinference/deploy/local.py
+33 −5 xinference/deploy/worker.py
+4 −1 xinference/fields.py
+7 −0 xinference/model/llm/__init__.py
+3 −2 xinference/model/llm/ggml/llamacpp.py
+70 −3 xinference/model/llm/llm_family.json
+11 −1 xinference/model/llm/llm_family.py
+72 −3 xinference/model/llm/llm_family_modelscope.json
+70 −28 xinference/model/llm/pytorch/chatglm.py
+11 −30 xinference/model/llm/pytorch/core.py
+155 −0 xinference/model/llm/pytorch/internlm2.py
+8 −7 xinference/model/llm/pytorch/tests/test_opt.py
+0 −153 xinference/model/llm/pytorch/utils.py
+2 −1 xinference/model/llm/tests/test_utils.py
+37 −8 xinference/model/llm/utils.py
+15 −3 xinference/model/llm/vllm/core.py
+15 −8 xinference/model/multimodal/__init__.py
+45 −0 xinference/model/multimodal/model_spec_modelscope.json
+7 −2 xinference/model/utils.py
+2 −0 xinference/types.py

0 comments on commit 2102505

Please sign in to comment.