Skip to content

Commit

Permalink
Chore: update submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
XprobeBot committed May 17, 2024
1 parent 953f339 commit 9770c98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/inference
Submodule inference updated 39 files
+8 −0 .github/workflows/docker-cd.yaml
+2 −1 README.md
+1 −0 README_zh_CN.md
+1 −1 doc/source/getting_started/installation.rst
+44 −15 doc/source/locale/zh_CN/LC_MESSAGES/models/lora.po
+1 −1 doc/source/models/builtin/llm/codeqwen1.5-chat.rst
+25 −4 doc/source/models/builtin/llm/index.rst
+60 −0 doc/source/models/builtin/llm/yi-1.5-chat.rst
+60 −0 doc/source/models/builtin/llm/yi-1.5.rst
+1 −1 doc/source/models/builtin/llm/yi-200k.rst
+18 −3 doc/source/models/builtin/llm/yi-chat.rst
+1 −1 doc/source/models/builtin/llm/yi-vl-chat.rst
+28 −2 doc/source/models/lora.rst
+1 −1 doc/source/user_guide/backends.rst
+61 −40 examples/Xinference_Quick_Start.ipynb
+10 −4 xinference/core/chat_interface.py
+2 −2 xinference/core/model.py
+8 −2 xinference/deploy/docker/Dockerfile
+3 −1 xinference/fields.py
+98 −13 xinference/model/llm/ggml/chatglm.py
+49 −2 xinference/model/llm/ggml/llamacpp.py
+19 −0 xinference/model/llm/ggml/tests/test_chatglm.py
+132 −3 xinference/model/llm/llm_family.json
+139 −3 xinference/model/llm/llm_family_modelscope.json
+48 −0 xinference/model/llm/pytorch/chatglm.py
+23 −6 xinference/model/llm/pytorch/core.py
+35 −9 xinference/model/llm/pytorch/deepseek_vl.py
+32 −1 xinference/model/llm/pytorch/internlm2.py
+38 −11 xinference/model/llm/pytorch/qwen_vl.py
+38 −1 xinference/model/llm/pytorch/utils.py
+42 −14 xinference/model/llm/pytorch/yi_vl.py
+31 −9 xinference/model/llm/sglang/core.py
+920 −0 xinference/model/llm/tests/test_stream_options.py
+25 −5 xinference/model/llm/utils.py
+82 −3 xinference/model/llm/vllm/core.py
+10 −1 xinference/types.py
+2 −1 xinference/web/ui/src/scenes/launch_model/LaunchModelComponent.js
+8 −2 xinference/web/ui/src/scenes/launch_model/index.js
+102 −33 xinference/web/ui/src/scenes/launch_model/modelCard.js

0 comments on commit 9770c98

Please sign in to comment.