Skip to content

Commit

Permalink
Chore: update submodule (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
XprobeBot authored Oct 12, 2024
1 parent dfbc8e0 commit 802d485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/inference
Submodule inference updated 46 files
+1 −1 .github/workflows/python.yaml
+4 −4 examples/StableDiffusionControlNet.ipynb
+2 −2 setup.cfg
+29 −2 xinference/api/restful_api.py
+10 −0 xinference/client/restful/restful_client.py
+4 −0 xinference/constants.py
+76 −23 xinference/core/image_interface.py
+80 −39 xinference/core/model.py
+187 −0 xinference/core/progress_tracker.py
+11 −0 xinference/core/supervisor.py
+77 −0 xinference/core/tests/test_progressor.py
+92 −0 xinference/core/tests/test_restful_api.py
+1 −0 xinference/core/worker.py
+1 −1 xinference/deploy/docker/requirements.txt
+1 −1 xinference/deploy/docker/requirements_cpu.txt
+2 −1 xinference/model/audio/chattts.py
+0 −2 xinference/model/audio/core.py
+8 −0 xinference/model/audio/model_spec.json
+9 −0 xinference/model/audio/model_spec_modelscope.json
+1 −2 xinference/model/audio/tests/test_chattts.py
+6 −7 xinference/model/image/core.py
+35 −4 xinference/model/image/sdapi.py
+208 −78 xinference/model/image/stable_diffusion/core.py
+49 −0 xinference/model/image/tests/test_stable_diffusion.py
+16 −16 xinference/model/llm/llm_family.json
+16 −12 xinference/model/llm/llm_family_modelscope.json
+2 −1 xinference/model/llm/transformers/cogvlm2.py
+2 −0 xinference/model/llm/transformers/cogvlm2_video.py
+6 −2 xinference/model/llm/transformers/core.py
+2 −0 xinference/model/llm/transformers/deepseek_vl.py
+2 −1 xinference/model/llm/transformers/glm4v.py
+2 −0 xinference/model/llm/transformers/intern_vl.py
+2 −0 xinference/model/llm/transformers/minicpmv25.py
+2 −0 xinference/model/llm/transformers/minicpmv26.py
+2 −0 xinference/model/llm/transformers/omnilmm.py
+11 −4 xinference/model/llm/transformers/qwen2_audio.py
+2 −28 xinference/model/llm/transformers/qwen2_vl.py
+2 −1 xinference/model/llm/transformers/qwen_vl.py
+2 −0 xinference/model/llm/transformers/tests/test_opt.py
+35 −2 xinference/model/llm/transformers/utils.py
+2 −0 xinference/model/llm/transformers/yi_vl.py
+58 −14 xinference/model/llm/utils.py
+52 −8 xinference/model/llm/vllm/core.py
+0 −1 xinference/model/llm/vllm/utils.py
+7 −4 xinference/model/utils.py
+0 −2 xinference/model/video/core.py

0 comments on commit 802d485

Please sign in to comment.