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 21, 2024
1 parent fabb170 commit d7d620a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/inference
Submodule inference updated 36 files
+2 −1 .github/workflows/python.yaml
+5 −0 .pre-commit-config.yaml
+34 −8 xinference/api/restful_api.py
+4 −0 xinference/client/restful/restful_client.py
+5 −6 xinference/core/event.py
+8 −3 xinference/core/model.py
+13 −3 xinference/core/scheduler.py
+2 −0 xinference/core/tests/test_continuous_batching.py
+1 −1 xinference/deploy/docker/cpu.Dockerfile
+6 −2 xinference/model/llm/llm_family.json
+6 −2 xinference/model/llm/llm_family_modelscope.json
+23 −0 xinference/model/llm/pytorch/chatglm.py
+39 −49 xinference/model/llm/pytorch/core.py
+11 −0 xinference/model/llm/pytorch/glm4v.py
+15 −0 xinference/model/llm/pytorch/internlm2.py
+46 −179 xinference/model/llm/pytorch/utils.py
+14 −2 xinference/model/llm/utils.py
+35 −6 xinference/model/rerank/core.py
+13 −0 xinference/model/rerank/tests/test_rerank.py
+28 −0 xinference/types.py
+8 −0 xinference/web/ui/src/components/MenuSide.js
+41 −0 xinference/web/ui/src/components/copyComponent/copyComponent.js
+9 −0 xinference/web/ui/src/components/copyComponent/style.css
+45 −0 xinference/web/ui/src/components/deleteDialog.js
+1 −1 xinference/web/ui/src/router/index.js
+23 −25 xinference/web/ui/src/scenes/launch_model/LaunchModelComponent.js
+9 −0 xinference/web/ui/src/scenes/launch_model/launchCustom.js
+27 −40 xinference/web/ui/src/scenes/launch_model/launchLLM.js
+126 −91 xinference/web/ui/src/scenes/launch_model/modelCard.js
+0 −8 xinference/web/ui/src/scenes/launch_model/styles/launchModelStyle.js
+44 −6 xinference/web/ui/src/scenes/launch_model/styles/modelCardStyle.css
+20 −4 xinference/web/ui/src/scenes/register_model/components/addControlnet.js
+88 −17 xinference/web/ui/src/scenes/register_model/components/addModelSpecs.js
+14 −6 xinference/web/ui/src/scenes/register_model/index.js
+228 −64 xinference/web/ui/src/scenes/register_model/registerModel.js
+13 −13 xinference/web/ui/src/scenes/register_model/styles/registerModelStyle.css

0 comments on commit d7d620a

Please sign in to comment.