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 14, 2024
1 parent e892579 commit 901f9b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/inference
Submodule inference updated 41 files
+74 −6 xinference/api/restful_api.py
+74 −5 xinference/client/restful/restful_client.py
+29 −1 xinference/client/tests/test_client.py
+1 −0 xinference/constants.py
+48 −28 xinference/core/cache_tracker.py
+54 −42 xinference/core/model.py
+34 −16 xinference/core/scheduler.py
+73 −24 xinference/core/supervisor.py
+7 −2 xinference/core/tests/test_restful_api.py
+68 −2 xinference/core/worker.py
+86 −2 xinference/deploy/cmdline.py
+19 −10 xinference/deploy/test/test_cmdline.py
+14 −1 xinference/model/audio/__init__.py
+12 −1 xinference/model/audio/core.py
+6 −4 xinference/model/audio/custom.py
+20 −0 xinference/model/audio/model_spec_modelscope.json
+34 −2 xinference/model/llm/__init__.py
+2 −0 xinference/model/llm/llm_family.json
+86 −1 xinference/model/llm/llm_family.py
+66 −0 xinference/model/llm/llm_family_csghub.json
+2 −0 xinference/model/llm/llm_family_modelscope.json
+18 −12 xinference/model/llm/pytorch/chatglm.py
+92 −42 xinference/model/llm/pytorch/core.py
+13 −3 xinference/model/llm/pytorch/glm4v.py
+1 −1 xinference/model/llm/pytorch/qwen_vl.py
+27 −14 xinference/model/llm/pytorch/utils.py
+159 −0 xinference/model/llm/tests/test_stream_options.py
+14 −13 xinference/model/llm/utils.py
+10 −4 xinference/model/llm/vllm/core.py
+8 −2 xinference/model/utils.py
+0 −0 xinference/thirdparty/ChatTTS/experimental/__init__.py
+0 −0 xinference/thirdparty/ChatTTS/infer/__init__.py
+0 −0 xinference/thirdparty/ChatTTS/model/__init__.py
+0 −0 xinference/thirdparty/ChatTTS/utils/__init__.py
+1 −1 xinference/web/ui/src/scenes/cluster_info/index.js
+48 −3 xinference/web/ui/src/scenes/launch_model/LaunchModelComponent.js
+50 −1 xinference/web/ui/src/scenes/launch_model/launchLLM.js
+494 −146 xinference/web/ui/src/scenes/launch_model/modelCard.js
+141 −0 xinference/web/ui/src/scenes/launch_model/styles/modelCardStyle.css
+0 −103 xinference/web/ui/src/scenes/launch_model/styles/modelCardStyle.js
+5 −2 xinference/web/ui/src/scenes/register_model/registerModel.js

0 comments on commit 901f9b3

Please sign in to comment.