Skip to content

Commit

Permalink
Chore: update submodule (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
XprobeBot authored Apr 12, 2024
1 parent a6a5d79 commit 0f3ffa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/inference
Submodule inference updated 75 files
+1 −2 .github/workflows/python.yaml
+3 −3 README.md
+3 −3 README_zh_CN.md
+26 −0 doc/source/gen_docs.py
+19 −10 doc/source/getting_started/installation.rst
+0 −18 doc/source/locale/ja_JP/LC_MESSAGES/user_guide/backends.po
+78 −40 doc/source/locale/zh_CN/LC_MESSAGES/getting_started/installation.po
+83 −63 doc/source/locale/zh_CN/LC_MESSAGES/user_guide/backends.po
+7 −0 doc/source/models/builtin/llm/index.rst
+95 −5 doc/source/models/builtin/llm/llama-2-chat.rst
+95 −5 doc/source/models/builtin/llm/llama-2.rst
+31 −1 doc/source/models/builtin/llm/mistral-instruct-v0.1.rst
+31 −1 doc/source/models/builtin/llm/mistral-instruct-v0.2.rst
+17 −2 doc/source/models/builtin/llm/mixtral-instruct-v0.1.rst
+16 −1 doc/source/models/builtin/llm/mixtral-v0.1.rst
+79 −19 doc/source/models/builtin/llm/qwen1.5-chat.rst
+45 −0 doc/source/models/builtin/llm/qwen1.5-moe-chat.rst
+3 −3 doc/source/models/model_abilities/chat.rst
+12 −13 doc/source/user_guide/backends.rst
+6 −6 setup.cfg
+25 −6 xinference/api/restful_api.py
+4 −3 xinference/client/oscar/actor_client.py
+8 −2 xinference/client/restful/restful_client.py
+14 −0 xinference/client/tests/test_client.py
+16 −0 xinference/core/supervisor.py
+2 −13 xinference/core/tests/test_types.py
+4 −2 xinference/deploy/docker/Dockerfile
+5 −4 xinference/deploy/docker/cpu.Dockerfile
+1 −2 xinference/model/embedding/core.py
+1 −0 xinference/model/embedding/tests/test_embedding_models.py
+0 −6 xinference/model/llm/__init__.py
+0 −281 xinference/model/llm/ggml/ctransformers.py
+0 −161 xinference/model/llm/ggml/ctransformers_util.py
+2 −10 xinference/model/llm/ggml/llamacpp.py
+0 −162 xinference/model/llm/ggml/tests/test_ctransformers.py
+244 −7 xinference/model/llm/llm_family.json
+15 −0 xinference/model/llm/llm_family.py
+100 −0 xinference/model/llm/llm_family_modelscope.json
+2 −0 xinference/model/llm/pytorch/chatglm.py
+22 −28 xinference/model/llm/pytorch/core.py
+2 −0 xinference/model/llm/pytorch/internlm2.py
+2 −0 xinference/model/llm/pytorch/qwen_vl.py
+4 −2 xinference/model/llm/pytorch/yi_vl.py
+14 −0 xinference/model/llm/tests/test_llm_family.py
+42 −4 xinference/model/llm/utils.py
+51 −6 xinference/model/llm/vllm/core.py
+3 −0 xinference/model/rerank/core.py
+7 −0 xinference/model/rerank/tests/test_rerank.py
+1 −1 xinference/thirdparty/omnilmm/chat.py
+15 −19 xinference/types.py
+8 −38 xinference/web/ui/src/App.js
+10 −3 xinference/web/ui/src/components/MenuSide.js
+1 −0 xinference/web/ui/src/components/Title.js
+8 −6 xinference/web/ui/src/components/authAlertDialog.js
+10 −13 xinference/web/ui/src/components/fetcher.js
+51 −0 xinference/web/ui/src/router/index.js
+18 −21 xinference/web/ui/src/scenes/launch_model/LaunchModelComponent.js
+0 −353 xinference/web/ui/src/scenes/launch_model/audioCard.js
+0 −365 xinference/web/ui/src/scenes/launch_model/embeddingCard.js
+0 −354 xinference/web/ui/src/scenes/launch_model/imageCard.js
+29 −22 xinference/web/ui/src/scenes/launch_model/index.js
+152 −61 xinference/web/ui/src/scenes/launch_model/launchCustom.js
+0 −96 xinference/web/ui/src/scenes/launch_model/launchEmbedding.js
+0 −98 xinference/web/ui/src/scenes/launch_model/launchImage.js
+3 −3 xinference/web/ui/src/scenes/launch_model/launchLLM.js
+0 −98 xinference/web/ui/src/scenes/launch_model/launchRerank.js
+753 −447 xinference/web/ui/src/scenes/launch_model/modelCard.js
+0 −335 xinference/web/ui/src/scenes/launch_model/rerankCard.js
+8 −0 xinference/web/ui/src/scenes/launch_model/styles/launchModelStyle.js
+103 −0 xinference/web/ui/src/scenes/launch_model/styles/modelCardStyle.js
+2 −1 xinference/web/ui/src/scenes/login/login.js
+4 −1 xinference/web/ui/src/scenes/register_model/index.js
+5 −0 xinference/web/ui/src/scenes/register_model/register_embedding.js
+5 −0 xinference/web/ui/src/scenes/register_model/register_rerank.js
+16 −12 xinference/web/ui/src/scenes/running_models/index.js

0 comments on commit 0f3ffa4

Please sign in to comment.