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 24, 2024
1 parent dd017ad commit f01f7a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/inference
Submodule inference updated 48 files
+1 −1 .github/workflows/python.yaml
+4 −1 .gitignore
+165 −0 benchmark/benchmark_rerank.py
+35 −35 doc/source/development/xinference_internals.rst
+3 −3 doc/source/getting_started/installation.rst
+0 −1 doc/source/locale/zh_CN/LC_MESSAGES/development/xinference_internals.po
+2 −2 doc/source/models/builtin/llm/c4ai-command-r-v01.rst
+30 −0 doc/source/models/builtin/llm/codeqwen1.5.rst
+125 −5 doc/source/models/builtin/llm/deepseek-coder-instruct.rst
+225 −0 doc/source/models/builtin/llm/deepseek-coder.rst
+75 −0 doc/source/models/builtin/llm/deepseek.rst
+24 −3 doc/source/models/builtin/llm/index.rst
+3 −3 doc/source/user_guide/backends.rst
+7 −6 setup.cfg
+30 −0 xinference/api/restful_api.py
+29 −0 xinference/client/restful/restful_client.py
+8 −0 xinference/client/tests/test_client.py
+12 −1 xinference/core/cache_tracker.py
+30 −2 xinference/core/supervisor.py
+12 −0 xinference/core/utils.py
+4 −1 xinference/core/worker.py
+126 −0 xinference/deploy/cmdline.py
+2 −2 xinference/deploy/docker/cpu.Dockerfile
+24 −0 xinference/deploy/test/test_cmdline.py
+1 −0 xinference/model/embedding/tests/test_embedding_models.py
+2 −0 xinference/model/llm/__init__.py
+501 −6 xinference/model/llm/llm_family.json
+84 −10 xinference/model/llm/llm_family.py
+198 −7 xinference/model/llm/llm_family_modelscope.json
+332 −0 xinference/model/llm/memory.py
+2 −0 xinference/model/llm/pytorch/core.py
+387 −0 xinference/model/llm/pytorch/intern_vl.py
+7 −7 xinference/model/llm/pytorch/tests/test_opt.py
+8 −0 xinference/model/llm/tests/test_llm_family.py
+55 −0 xinference/model/llm/tests/test_memory_estimate.py
+13 −0 xinference/model/llm/utils.py
+5 −2 xinference/model/llm/vllm/core.py
+23 −1 xinference/model/rerank/core.py
+15 −0 xinference/model/rerank/tests/test_rerank.py
+17 −7 xinference/model/utils.py
+1 −1 xinference/thirdparty/deepseek_vl/models/processing_vlm.py
+2 −2 xinference/thirdparty/deepseek_vl/models/siglip_vit.py
+1 −5 xinference/thirdparty/deepseek_vl/serve/app_deepseek.py
+2 −1 xinference/thirdparty/deepseek_vl/serve/app_modules/utils.py
+1 −1 xinference/thirdparty/deepseek_vl/serve/assets/custom.css
+3 −2 xinference/thirdparty/llava/mm_utils.py
+1 −1 xinference/thirdparty/llava/model/llava_arch.py
+6 −5 xinference/thirdparty/omnilmm/chat.py

0 comments on commit f01f7a5

Please sign in to comment.