xinference 0.11.0__py3-none-any.whl → 0.11.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of xinference might be problematic. Click here for more details.
- xinference/_version.py +3 -3
- xinference/api/restful_api.py +30 -0
- xinference/client/restful/restful_client.py +29 -0
- xinference/core/cache_tracker.py +12 -1
- xinference/core/chat_interface.py +10 -4
- xinference/core/model.py +2 -2
- xinference/core/supervisor.py +30 -2
- xinference/core/utils.py +12 -0
- xinference/core/worker.py +4 -1
- xinference/deploy/cmdline.py +126 -0
- xinference/deploy/test/test_cmdline.py +24 -0
- xinference/fields.py +3 -1
- xinference/model/llm/__init__.py +2 -0
- xinference/model/llm/ggml/chatglm.py +98 -13
- xinference/model/llm/ggml/llamacpp.py +49 -2
- xinference/model/llm/llm_family.json +633 -9
- xinference/model/llm/llm_family.py +84 -10
- xinference/model/llm/llm_family_modelscope.json +337 -10
- xinference/model/llm/memory.py +332 -0
- xinference/model/llm/pytorch/chatglm.py +48 -0
- xinference/model/llm/pytorch/core.py +25 -6
- xinference/model/llm/pytorch/deepseek_vl.py +35 -9
- xinference/model/llm/pytorch/intern_vl.py +387 -0
- xinference/model/llm/pytorch/internlm2.py +32 -1
- xinference/model/llm/pytorch/qwen_vl.py +38 -11
- xinference/model/llm/pytorch/utils.py +38 -1
- xinference/model/llm/pytorch/yi_vl.py +42 -14
- xinference/model/llm/sglang/core.py +31 -9
- xinference/model/llm/utils.py +38 -5
- xinference/model/llm/vllm/core.py +87 -5
- xinference/model/rerank/core.py +23 -1
- xinference/model/utils.py +17 -7
- xinference/thirdparty/deepseek_vl/models/processing_vlm.py +1 -1
- xinference/thirdparty/deepseek_vl/models/siglip_vit.py +2 -2
- xinference/thirdparty/llava/mm_utils.py +3 -2
- xinference/thirdparty/llava/model/llava_arch.py +1 -1
- xinference/thirdparty/omnilmm/chat.py +6 -5
- xinference/types.py +10 -1
- xinference/web/ui/build/asset-manifest.json +3 -3
- xinference/web/ui/build/index.html +1 -1
- xinference/web/ui/build/static/js/{main.8e44da4b.js → main.551aa479.js} +3 -3
- xinference/web/ui/build/static/js/main.551aa479.js.map +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/1fa824d82b2af519de7700c594e50bde4bbca60d13bd3fabff576802e4070304.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/23caf6f1e52c43e983ca3bfd4189f41dbd645fa78f2dfdcd7f6b69bc41678665.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/a6da6bc3d0d2191adebee87fb58ecebe82d071087bd2f7f3a9c7fdd2ada130f2.json +1 -0
- {xinference-0.11.0.dist-info → xinference-0.11.2.dist-info}/METADATA +10 -8
- {xinference-0.11.0.dist-info → xinference-0.11.2.dist-info}/RECORD +52 -50
- xinference/web/ui/build/static/js/main.8e44da4b.js.map +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/1870cd6f7054d04e049e363c0a85526584fe25519378609d2838e28d7492bbf1.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/5393569d846332075b93b55656716a34f50e0a8c970be789502d7e6c49755fd7.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/ddaec68b88e5eff792df1e39a4b4b8b737bfc832293c015660c3c69334e3cf5c.json +0 -1
- /xinference/web/ui/build/static/js/{main.8e44da4b.js.LICENSE.txt → main.551aa479.js.LICENSE.txt} +0 -0
- {xinference-0.11.0.dist-info → xinference-0.11.2.dist-info}/LICENSE +0 -0
- {xinference-0.11.0.dist-info → xinference-0.11.2.dist-info}/WHEEL +0 -0
- {xinference-0.11.0.dist-info → xinference-0.11.2.dist-info}/entry_points.txt +0 -0
- {xinference-0.11.0.dist-info → xinference-0.11.2.dist-info}/top_level.txt +0 -0
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
xinference/__init__.py,sha256=0LgIveLP6CXxoIaSrxhlFyOh0lOqPgJBVcBe0tkWJjc,987
|
|
2
2
|
xinference/_compat.py,sha256=SQAjZMGxtBIce45qtW7ob7RWzA0zhv2yB3AxT0rb0uU,1778
|
|
3
|
-
xinference/_version.py,sha256=
|
|
3
|
+
xinference/_version.py,sha256=UcTD5E4mTdIp6njSmYr_Ony5Wmkd1GJnwA9b2LvniUg,498
|
|
4
4
|
xinference/conftest.py,sha256=Qus4KWCeaKS7c5UgNCTpPNucD2bjV8P7u1_qRosgGno,9743
|
|
5
5
|
xinference/constants.py,sha256=Bu_fOJUGAvvqF_6FY5OzOHl7fQ1Nomek3LY17xr9oz4,2882
|
|
6
6
|
xinference/device_utils.py,sha256=zswJiws3VyTIaNO8z-MOcsJH_UiPoePPiKK5zoNrjTA,3285
|
|
7
|
-
xinference/fields.py,sha256=
|
|
7
|
+
xinference/fields.py,sha256=0UtBFaDNzn1n9MRjyTkNrolsIML-TpZfudWOejqjni8,5245
|
|
8
8
|
xinference/isolation.py,sha256=NstVRcO3dG4umHExICXAHlzVKwH8ch8MBwKwE-KFkE0,1826
|
|
9
|
-
xinference/types.py,sha256=
|
|
9
|
+
xinference/types.py,sha256=BFKUGHb0jKkAA1dczSf8pPlFutRE7-JtRp6C3oVSJ7Q,13626
|
|
10
10
|
xinference/utils.py,sha256=VSOJMFd9H7kce98OtJZbcDjjpfzRpHAFs8WU0xXPBM8,717
|
|
11
11
|
xinference/api/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
12
|
-
xinference/api/restful_api.py,sha256=
|
|
12
|
+
xinference/api/restful_api.py,sha256=Wj1LWFTQiwH7FEheaG1pA4wpVOCtWHnbTdRHUa6Qcek,60530
|
|
13
13
|
xinference/api/oauth2/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
14
14
|
xinference/api/oauth2/auth_service.py,sha256=74JzB42fbbmBu4Q1dW3A9Fp_N7167KgRGB42Z0NHjAM,6119
|
|
15
15
|
xinference/api/oauth2/types.py,sha256=K923sv_XySIUtM2Eozl9IG082IJcDOS5SFLrPZ5ELBg,996
|
|
@@ -18,33 +18,33 @@ xinference/client/__init__.py,sha256=Gc4HOzAy_1cic5kXlso7hahYgw89CKvZSJDicEU461k
|
|
|
18
18
|
xinference/client/common.py,sha256=iciZRs5YjM2gYsXnwACPMaiBZp4_XpawWwfym0Iyu40,1617
|
|
19
19
|
xinference/client/handlers.py,sha256=3gd9C7u4URbcVdR6Eyv8cpEZ175Ll4q_jGL07CnEIpg,648
|
|
20
20
|
xinference/client/restful/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
21
|
-
xinference/client/restful/restful_client.py,sha256=
|
|
21
|
+
xinference/client/restful/restful_client.py,sha256=zqfZHliUeiDHvKKo1SrXH3rAvyxp0o_TaMwuCjV2pjQ,43589
|
|
22
22
|
xinference/core/__init__.py,sha256=Fe5tYCHDbYJ7PhxJhQ68VbfgKgOsAuslNPr4wPhFMJM,612
|
|
23
|
-
xinference/core/cache_tracker.py,sha256=
|
|
24
|
-
xinference/core/chat_interface.py,sha256=
|
|
23
|
+
xinference/core/cache_tracker.py,sha256=OMY_0HZkb-R5EhHHWppIGqPhC3v9Iwdjp9oema_6eFc,4798
|
|
24
|
+
xinference/core/chat_interface.py,sha256=B-qG7RF7HOquhKaPAJSnHA3Dqov5QZQA2yO-txt1IPs,17380
|
|
25
25
|
xinference/core/event.py,sha256=dTXv-zg-sAqlY1rFLvyor9D8WEXZvnUH7NigegpziO8,1648
|
|
26
26
|
xinference/core/image_interface.py,sha256=G2iK24auEN4MrLkPlu1CAA_gf-BQrGQTjazi_FYqIxE,8825
|
|
27
27
|
xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
|
|
28
|
-
xinference/core/model.py,sha256=
|
|
28
|
+
xinference/core/model.py,sha256=KAD9a2fYY97MfByNRnmia2oZR-UK7B-zW8gWl_tUJgs,18121
|
|
29
29
|
xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
|
|
30
30
|
xinference/core/status_guard.py,sha256=fF5hisvfn6es9DV6Z6RRD6V_S_uLcb8lHM6PArGgb04,2820
|
|
31
|
-
xinference/core/supervisor.py,sha256
|
|
32
|
-
xinference/core/utils.py,sha256=
|
|
33
|
-
xinference/core/worker.py,sha256=
|
|
31
|
+
xinference/core/supervisor.py,sha256=bREFDEeO6rF9hyWOuf9mA6IHo6Ur2BDGgPmnuysaN9o,41969
|
|
32
|
+
xinference/core/utils.py,sha256=LqPrez5dGELRQDSwOD5EP8XHb-aUKAdyszS-QpNouuw,6401
|
|
33
|
+
xinference/core/worker.py,sha256=oGsqHQ5yJ4Ry-tAL06x6jkLxkQKbj0LxWtvvOy-SRdM,32780
|
|
34
34
|
xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
35
|
-
xinference/deploy/cmdline.py,sha256=
|
|
35
|
+
xinference/deploy/cmdline.py,sha256=J1NSfnQ-iJ87OPb_kNOfONgMZNqCow1Klm91uLS4_Lk,44582
|
|
36
36
|
xinference/deploy/local.py,sha256=vlAvhcl8utP1DjW4MJpBgD4JLHQV-1Xebmdd8j9M8IM,3946
|
|
37
37
|
xinference/deploy/supervisor.py,sha256=fMHeEGigQ72PD9JEFmZ5Xudn25Uj4DhD2OVIlAu_YpA,2978
|
|
38
38
|
xinference/deploy/utils.py,sha256=PYdxLRARG-oZoQZtC-1t2Xve6ehjfuEITwAuDglDMIA,5377
|
|
39
39
|
xinference/deploy/worker.py,sha256=Av3qU1b0tdxfkds3Mc2Qiqy9c_xSD0Tp3cToWoXqTpo,2966
|
|
40
40
|
xinference/deploy/test/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
41
|
-
xinference/deploy/test/test_cmdline.py,sha256=
|
|
41
|
+
xinference/deploy/test/test_cmdline.py,sha256=W83eR1nQGE7-DaRItEoFU0JkVH1sz_bc8TnSpc07zHc,7436
|
|
42
42
|
xinference/locale/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
43
43
|
xinference/locale/utils.py,sha256=w-G1DAJGw1UUQVVtq6khOZn7ZjobUmTw6qwHMm2eWIs,1312
|
|
44
44
|
xinference/locale/zh_CN.json,sha256=YA55G9s1p05Bt5RBoDo5SV12dd-CMJI0ABap6RpCp4M,1097
|
|
45
45
|
xinference/model/__init__.py,sha256=IRC3ojiqYkVLIK_xsIxYeKypEeeTTdrovnVzK_4L4eg,663
|
|
46
46
|
xinference/model/core.py,sha256=nENyctnKtEBMakd_BpTbgCtLUeci3ak7QIwEk-pq4IM,3546
|
|
47
|
-
xinference/model/utils.py,sha256=
|
|
47
|
+
xinference/model/utils.py,sha256=L-pGH8HwIPwrJyRdnLk1OVPoDNdSlAyKp0eEY47J_fw,14974
|
|
48
48
|
xinference/model/audio/__init__.py,sha256=0EVzX6b4pcOO63NAcNpYWTVYVa7w7yG5cPpGxOY9MXw,2347
|
|
49
49
|
xinference/model/audio/core.py,sha256=ypbIvbueTFKeulYt7aJX7FfU4y3Hn3DzxkhhjKO6Dxw,4373
|
|
50
50
|
xinference/model/audio/custom.py,sha256=Li6VpTmpZ17YXk_bwN2-tUKRAJwNcW-O4OwrJefzC2o,4966
|
|
@@ -65,38 +65,40 @@ xinference/model/image/model_spec_modelscope.json,sha256=KMI-2YOJoLUtN93LZiqqETW
|
|
|
65
65
|
xinference/model/image/utils.py,sha256=gxg8jJ2nYaDknzCcSC53WCy1slbB5aWU14AbJbfm6Z4,906
|
|
66
66
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
67
67
|
xinference/model/image/stable_diffusion/core.py,sha256=ib_ZeSg7hzynmRqSnhjtrVuhoLOgZPrR1ZH2LjBmH2E,6063
|
|
68
|
-
xinference/model/llm/__init__.py,sha256=
|
|
68
|
+
xinference/model/llm/__init__.py,sha256=kl2z63rNpgkoFQcg536SUt4TKub2wuDB8c7weYKeeoU,9874
|
|
69
69
|
xinference/model/llm/core.py,sha256=CZJrbW3HaV8vJj5mxSnBD8ssABALG_xyXyPS0hHVBPY,7982
|
|
70
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
71
|
-
xinference/model/llm/llm_family.py,sha256=
|
|
72
|
-
xinference/model/llm/llm_family_modelscope.json,sha256=
|
|
73
|
-
xinference/model/llm/
|
|
70
|
+
xinference/model/llm/llm_family.json,sha256=otMgqAExkRqPC0yV_si0yc6sNhPEIxQjDrSg31Er9F8,152586
|
|
71
|
+
xinference/model/llm/llm_family.py,sha256=aQZPE2gj5YfII2mhgbaSs1MfllKnUXd8xbflKr_YdFs,37357
|
|
72
|
+
xinference/model/llm/llm_family_modelscope.json,sha256=5cyM-y0HtG_fBfC289IU97iasfjZZgUefn5UmVmg7TY,91282
|
|
73
|
+
xinference/model/llm/memory.py,sha256=PTD8m6TCZVU1zrwc9wepX9cUjCqAXBENj6X7tjua0to,10207
|
|
74
|
+
xinference/model/llm/utils.py,sha256=0SindpTW6dUWn17E-Ne9scnSfPOovb53sIuc9zxIFfo,31653
|
|
74
75
|
xinference/model/llm/ggml/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
75
|
-
xinference/model/llm/ggml/chatglm.py,sha256=
|
|
76
|
-
xinference/model/llm/ggml/llamacpp.py,sha256=
|
|
76
|
+
xinference/model/llm/ggml/chatglm.py,sha256=qqCxVvPp4CZq0z6MuwTcVUMEkQJDjjXm6naJ6WfGOl0,16208
|
|
77
|
+
xinference/model/llm/ggml/llamacpp.py,sha256=7Fvt2h7AJ8P6xVRztcw0aJgteagjCeOZJ7RniN6VYqs,13345
|
|
77
78
|
xinference/model/llm/ggml/tools/__init__.py,sha256=6a6P2VPKE06xKxJ-dTqp4TRO2IEDWvtcVP6gHutAR0M,624
|
|
78
79
|
xinference/model/llm/ggml/tools/convert_ggml_to_gguf.py,sha256=92To8eoVQBkDZD52_aWBNda2K1Ob6YaHlcfS-8_aOuw,17991
|
|
79
80
|
xinference/model/llm/ggml/tools/gguf.py,sha256=Hv2haR-UN7NdB1N8YId32hFoEPd-JX6_aUNWRJhyJZc,30277
|
|
80
81
|
xinference/model/llm/pytorch/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
81
82
|
xinference/model/llm/pytorch/baichuan.py,sha256=JBHldfdjUlSV44HB_td6402CwryDm61rlzw4D_flKHI,2820
|
|
82
|
-
xinference/model/llm/pytorch/chatglm.py,sha256=
|
|
83
|
+
xinference/model/llm/pytorch/chatglm.py,sha256=meFb4P1MXw63IhoDQwmFGczTXa3vEpv1L1Eo9XIifG8,9624
|
|
83
84
|
xinference/model/llm/pytorch/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
|
|
84
|
-
xinference/model/llm/pytorch/core.py,sha256=
|
|
85
|
-
xinference/model/llm/pytorch/deepseek_vl.py,sha256=
|
|
85
|
+
xinference/model/llm/pytorch/core.py,sha256=VGJfZ92e3SftQXrOwxiYMUSF1YnWSUU8Z8WHr6yzpJ8,19984
|
|
86
|
+
xinference/model/llm/pytorch/deepseek_vl.py,sha256=T9DKP4cULvRaHSiU08lOWd_j6mt8b3ZIBByneZ0jY8U,11498
|
|
86
87
|
xinference/model/llm/pytorch/falcon.py,sha256=POSP7vzRJaM5PjvX8dh60jNDXgnCwktwSmeZ7kypQU0,4499
|
|
87
|
-
xinference/model/llm/pytorch/
|
|
88
|
+
xinference/model/llm/pytorch/intern_vl.py,sha256=ADmZeWvkKz_lGBJQqksgEv0sKa8dk6hNI9fNSdgRZDs,14835
|
|
89
|
+
xinference/model/llm/pytorch/internlm2.py,sha256=vjspoc2VHbuD1JaUtjt0sOq9MwvRr2OD3_tKQhBVUPc,7244
|
|
88
90
|
xinference/model/llm/pytorch/llama_2.py,sha256=HMhUmn4oYW2maeSMIr1yY7jlAOMD0OVAxnF0dnRWmio,3710
|
|
89
91
|
xinference/model/llm/pytorch/omnilmm.py,sha256=4r6pipch1LU1FPA80sOCE7Z0k3TO_J8CIT7pmVmWKEM,5664
|
|
90
|
-
xinference/model/llm/pytorch/qwen_vl.py,sha256=
|
|
91
|
-
xinference/model/llm/pytorch/utils.py,sha256=
|
|
92
|
+
xinference/model/llm/pytorch/qwen_vl.py,sha256=_InWNWJAHAf6TW5bmd4yc9WChrG6DhW8_3Q7ytvW5tc,8962
|
|
93
|
+
xinference/model/llm/pytorch/utils.py,sha256=eMLQei05LoNcDE5qusOxr07xYyH0q7cgmprhhKZks7s,18577
|
|
92
94
|
xinference/model/llm/pytorch/vicuna.py,sha256=avNOgt9fBjwYzahL-j6-EcQS-7km167h8ttJolnNWnE,2334
|
|
93
|
-
xinference/model/llm/pytorch/yi_vl.py,sha256=
|
|
95
|
+
xinference/model/llm/pytorch/yi_vl.py,sha256=MljT7tpgFIhL6n5rdoS3hmq_u0rtHRE6cxXCseujklQ,10911
|
|
94
96
|
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
95
|
-
xinference/model/llm/sglang/core.py,sha256=
|
|
97
|
+
xinference/model/llm/sglang/core.py,sha256=RGHy6t9n0c4zL6Uha8P7t-qPvisPyulFVHw-8Aq8CJ0,14046
|
|
96
98
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
97
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
99
|
+
xinference/model/llm/vllm/core.py,sha256=_cM-NEnDtpGVHMgHxr-uxV0sA-xXUjDsL5i__cpHQEU,21639
|
|
98
100
|
xinference/model/rerank/__init__.py,sha256=BXIL1uu3ZpZHX9bODhW9lxKUXudZE7-OkXFmmM5rpMU,2817
|
|
99
|
-
xinference/model/rerank/core.py,sha256=
|
|
101
|
+
xinference/model/rerank/core.py,sha256=BLIIStjxUFghSFoxCimet88ghqGwmVaskOYdVRxKdpI,10572
|
|
100
102
|
xinference/model/rerank/custom.py,sha256=NKk7jA7p4xkuwS5WoOs2SY2wdnoAVpyCjBTvv317bBw,3917
|
|
101
103
|
xinference/model/rerank/model_spec.json,sha256=LCiiCdNz4NYt9vKVnHffk3ZpwvgzzHxe4zsaxOqxL18,1367
|
|
102
104
|
xinference/model/rerank/model_spec_modelscope.json,sha256=vSSC0aWy_DHnNDzzBcMWr2pqdISDmPS95FtD_YfMmn4,1275
|
|
@@ -107,19 +109,19 @@ xinference/thirdparty/deepseek_vl/models/__init__.py,sha256=gVJoBKpRfny6w_QpTrTh
|
|
|
107
109
|
xinference/thirdparty/deepseek_vl/models/clip_encoder.py,sha256=tn-uTCAcb63WOX6cB0rl2ynOsum23xy1tAvBqPbIHHo,8197
|
|
108
110
|
xinference/thirdparty/deepseek_vl/models/image_processing_vlm.py,sha256=Nk3rK0eCwl-hoYeOrv1iiG7Zv3KlZFF2AAzVXN2wRT0,6796
|
|
109
111
|
xinference/thirdparty/deepseek_vl/models/modeling_vlm.py,sha256=guGUqPuN_sjanlyP9D7N58tZwTw8CTy9AN-54_uEM9E,5705
|
|
110
|
-
xinference/thirdparty/deepseek_vl/models/processing_vlm.py,sha256=
|
|
112
|
+
xinference/thirdparty/deepseek_vl/models/processing_vlm.py,sha256=xytEqLoEKoKis-RBHjdQKHvhsSmT9YuSbaVX6F3CBUg,13076
|
|
111
113
|
xinference/thirdparty/deepseek_vl/models/projector.py,sha256=BXPx4jj4jIDdZYZJ_mo3SmzgaTAVC7BxQMuU1wEzdIA,3625
|
|
112
114
|
xinference/thirdparty/deepseek_vl/models/sam.py,sha256=pHdqAwPSurRyRuwmMQmriThz8eyPFiaofaLGGwpLDuU,20344
|
|
113
|
-
xinference/thirdparty/deepseek_vl/models/siglip_vit.py,sha256=
|
|
115
|
+
xinference/thirdparty/deepseek_vl/models/siglip_vit.py,sha256=G0NdFVBvU4FxLu5I20rw--Ypjlx_2TvjRPW3Dhany7I,24088
|
|
114
116
|
xinference/thirdparty/deepseek_vl/utils/__init__.py,sha256=u8C--egJMT_DDm0JG3frXGSQNNv6cfIAumPhghzkxhk,1091
|
|
115
117
|
xinference/thirdparty/deepseek_vl/utils/conversation.py,sha256=7oITA8TsIuOfumVZ8hcoDpA6dm1jz7n8-VXPe_7-4YA,11702
|
|
116
118
|
xinference/thirdparty/deepseek_vl/utils/io.py,sha256=HQqLoONZF4nl1E9oMrm7_2LwU8ZSh1C9htm7vLN4YfI,2751
|
|
117
119
|
xinference/thirdparty/llava/__init__.py,sha256=UlCNtyBVX645CB6S6LfyYkTfQVO18_a8e9SmR7cHExA,41
|
|
118
120
|
xinference/thirdparty/llava/conversation.py,sha256=_OKwx8mkikwfsuTVR3BtvolqNcwY1X3DP7X9TlmR31g,7758
|
|
119
|
-
xinference/thirdparty/llava/mm_utils.py,sha256=
|
|
121
|
+
xinference/thirdparty/llava/mm_utils.py,sha256=f0JFOhbdFyLjA8W6VRDsGn5Xwnz4fWjY4Gyt3Apzk7k,3883
|
|
120
122
|
xinference/thirdparty/llava/model/__init__.py,sha256=KlZDBvQbrUBrHix1PQTmAmq5dJHCipCKOlcpLZUJZso,60
|
|
121
123
|
xinference/thirdparty/llava/model/constants.py,sha256=fFKjeLBhxYo3UGBhA6DbS0LGApXmxJqeQ0iMPaPh480,140
|
|
122
|
-
xinference/thirdparty/llava/model/llava_arch.py,sha256=
|
|
124
|
+
xinference/thirdparty/llava/model/llava_arch.py,sha256=I2SkH4mTNdCsXgaXGAOKsABTfJzSXj9KC2IYOOjOw08,17198
|
|
123
125
|
xinference/thirdparty/llava/model/llava_llama.py,sha256=cXGSrL2bcy2FIAxSCQ25BhSbk6JYOs0uvPD7_zH7ZBI,5678
|
|
124
126
|
xinference/thirdparty/llava/model/clip_encoder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
127
|
xinference/thirdparty/llava/model/clip_encoder/builder.py,sha256=D1d2_hW2V1kT4jn_-spbYH3CRysyqZGPKsvb6Aai3QY,315
|
|
@@ -127,7 +129,7 @@ xinference/thirdparty/llava/model/clip_encoder/clip_encoder.py,sha256=ieNXVeV1UF
|
|
|
127
129
|
xinference/thirdparty/llava/model/multimodal_projector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
130
|
xinference/thirdparty/llava/model/multimodal_projector/builder.py,sha256=URP051uhGLWqC6ERsqjn2MiQDNYzOoQ6EJEcB-Z0RzM,1933
|
|
129
131
|
xinference/thirdparty/omnilmm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
130
|
-
xinference/thirdparty/omnilmm/chat.py,sha256=
|
|
132
|
+
xinference/thirdparty/omnilmm/chat.py,sha256=oi0I-yVkvvnW_Vqj-iQzKaPUbGJ__EBn1we9AHlaGn4,6784
|
|
131
133
|
xinference/thirdparty/omnilmm/constants.py,sha256=bq6C4oIANqwTtt5G7sjJUdRlLyTa-_urOHMJN7VBmU4,84
|
|
132
134
|
xinference/thirdparty/omnilmm/conversation.py,sha256=m0lzft61Sw1Z4RxEpucweeQvV0PZEyrvh0mXL7Psh8I,13276
|
|
133
135
|
xinference/thirdparty/omnilmm/utils.py,sha256=VUMXIgq1tx3qwDmS2VewsXra6XqCUArQB0ik0_qk7x0,3989
|
|
@@ -139,14 +141,14 @@ xinference/thirdparty/omnilmm/train/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY
|
|
|
139
141
|
xinference/thirdparty/omnilmm/train/train_utils.py,sha256=L4JtFWDKtdEcQYpGW-UV6GCswTqHkiskK3phM9J-xUM,5634
|
|
140
142
|
xinference/web/ui/package-lock.json,sha256=l-6VBG39LwkPggB5xwKZEip74w_7keFmAW5QQGjs0M8,767866
|
|
141
143
|
xinference/web/ui/package.json,sha256=W0Bq0vT0HOALv-nFo34Fos3r6DKrjR7zAL5swLg5qZg,1987
|
|
142
|
-
xinference/web/ui/build/asset-manifest.json,sha256=
|
|
144
|
+
xinference/web/ui/build/asset-manifest.json,sha256=B23xrVfQ0w11-bYbNY6Rsbg5ZsvR1gcfSEsK6OIfWis,453
|
|
143
145
|
xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
|
|
144
|
-
xinference/web/ui/build/index.html,sha256=
|
|
146
|
+
xinference/web/ui/build/index.html,sha256=KHO0-c7G9Cq9CFlwxu5n6WyEgNkoEjZikIT6vD3ONcc,650
|
|
145
147
|
xinference/web/ui/build/static/css/main.54bca460.css,sha256=4wtz0RH25SYUxe23fjnvkRT_ryxx64P3Spy00M5bfV4,1529
|
|
146
148
|
xinference/web/ui/build/static/css/main.54bca460.css.map,sha256=eBKcQcqefJDkZZheXW7xIDU4mbic1aJ7SGlh9XEyxVI,2958
|
|
147
|
-
xinference/web/ui/build/static/js/main.
|
|
148
|
-
xinference/web/ui/build/static/js/main.
|
|
149
|
-
xinference/web/ui/build/static/js/main.
|
|
149
|
+
xinference/web/ui/build/static/js/main.551aa479.js,sha256=aVL8fjmitz1QoF_zc3ftj5O58eTN2R-MrCFwqp_ducE,961491
|
|
150
|
+
xinference/web/ui/build/static/js/main.551aa479.js.LICENSE.txt,sha256=rbybPZZs56fvnjMiAklb5AB-cE9DLmWrrraygrxIG3I,2279
|
|
151
|
+
xinference/web/ui/build/static/js/main.551aa479.js.map,sha256=ouEIecK03HMG6mkzz29ZkzzpYIAqU20X1XArB7aXahI,4297010
|
|
150
152
|
xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
|
|
151
153
|
xinference/web/ui/node_modules/.package-lock.json,sha256=TiGKTauADRWUfO6X9URCfruDRh_J1_vD5tqMVdoKD0o,765826
|
|
152
154
|
xinference/web/ui/node_modules/.cache/babel-loader/000791038e4133db461021f1018491323a006cca7a53e09c2ac35032bc36d8b6.json,sha256=lcvLWh7kYVCN6ZBwqKJYmnST8it8tv7i7gOzsbV5Gas,1358
|
|
@@ -1330,7 +1332,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/184f05dd485735635373312d62ec4
|
|
|
1330
1332
|
xinference/web/ui/node_modules/.cache/babel-loader/185ad3c6b393b8cacb29ae482cacf09bd2c8f06ecf36ab3734a3e318e0c486b1.json,sha256=yMfmYSUbuk3dCUg3Yoczl9wHf9dx5A5gRMw1quSJX1Q,3833
|
|
1331
1333
|
xinference/web/ui/node_modules/.cache/babel-loader/185c00602b71a4543f22396585e3a8d5a1207ae917347fbaba10d36ef89dc2a2.json,sha256=leZ4M33_LzAIKcQapSLWlXDi7IHQFwarnzeexZ0UiXs,1838
|
|
1332
1334
|
xinference/web/ui/node_modules/.cache/babel-loader/186b515e5d45fac7c5c2ec43bbe5d538f837a44e6204570c6db15359cb6e505f.json,sha256=vzYmNblBqYeLBqwPy6-zrjzBmEZy0MQHBP_yzUvfr8w,378
|
|
1333
|
-
xinference/web/ui/node_modules/.cache/babel-loader/1870cd6f7054d04e049e363c0a85526584fe25519378609d2838e28d7492bbf1.json,sha256=jvekbvR7e8XHOD-EcnkxfD3JIIIORzx4xxV7RjySrKE,10984
|
|
1334
1335
|
xinference/web/ui/node_modules/.cache/babel-loader/1876a5463c8f42f85a2b7d1d487729c573f68f55aaf670efc9e235f2ee4a6246.json,sha256=VQ3zzjUsLtrJNJGx2CWlGP6ny7nVLtJlyZDiGpJ-94U,751
|
|
1335
1336
|
xinference/web/ui/node_modules/.cache/babel-loader/187c656322a7ca701b343835c69ae4feb031aff6e347ba3b9549d3b0a3c8f355.json,sha256=1sgW1YOocvKWCSYORWy9JgyikQyG7Mt81ZUJtFe2NvI,1310
|
|
1336
1337
|
xinference/web/ui/node_modules/.cache/babel-loader/18993457a20954128876029737385ef64bc1a11664d21f730a8a23a5a5440ed0.json,sha256=fYPaDnE85LqbXCoaSkxuwMykRLwROQhzYby4-qbbskY,1918
|
|
@@ -1688,6 +1689,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/1f9275573aaf589903cb887b4704b
|
|
|
1688
1689
|
xinference/web/ui/node_modules/.cache/babel-loader/1f9709c3bfb96565e13095ab3f1bfd292fe914cef9909ef9d14aa42ee135d51a.json,sha256=BMcXG-A_a_Aem229rZN6KVAGamqHmrvw0ZvsJYB31hg,1421
|
|
1689
1690
|
xinference/web/ui/node_modules/.cache/babel-loader/1f9bee33e067d74988af08cbbea6e1b20cfebc071f885b0f5a472541cbed6ec2.json,sha256=5_8PMXOJXhxrewyJsyJCp__idnhY-5QbU5Xx5qKwcvQ,1500
|
|
1690
1691
|
xinference/web/ui/node_modules/.cache/babel-loader/1f9d3e98d9d75883b1c25d637ad32a000631788fb7f730c74221cbf11e52e7c2.json,sha256=uxyk75PpJ614eArQgcXUjarNJ70yTEE2l37PjZKGxFY,1475
|
|
1692
|
+
xinference/web/ui/node_modules/.cache/babel-loader/1fa824d82b2af519de7700c594e50bde4bbca60d13bd3fabff576802e4070304.json,sha256=9b88UByDgWuhZxSGFn1hFUrQbDC5KQ_ZqVoxyDRUnTs,11171
|
|
1691
1693
|
xinference/web/ui/node_modules/.cache/babel-loader/1fa950f4cdcb6de564290ef10fd62855d0f15afd564eaabec88ce83dbb545284.json,sha256=Pn2hxa6b_VRiR3Rnm5Vhk2I-C2iMBZpO0FZCF0XMNBY,1147
|
|
1692
1694
|
xinference/web/ui/node_modules/.cache/babel-loader/1fb0a2c42b9d6d6a6714e402cdde3a8bef0541249f383eead9e0fef194d1a467.json,sha256=0oF0dUXLQag_QuLPzF3WnsQKYEJQ1BKMg31EfMeWJjc,1396
|
|
1693
1695
|
xinference/web/ui/node_modules/.cache/babel-loader/1fb3d944dbc65105f20534b7c5095baf4f491b0f079fca9b81741e4e4e4542f1.json,sha256=27skkqbCkQR2aIyk8cRwbVVaPfUQp_864Kqzu1rGhfg,2406
|
|
@@ -1883,6 +1885,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/23b63a3f850e2fd1a91b4cd410be4
|
|
|
1883
1885
|
xinference/web/ui/node_modules/.cache/babel-loader/23b72bb3037b5728ba811fa546b88867152551cd2c81d4bf09a3c36db9410f73.json,sha256=bM3cvhQQXxmZGcoRFyuBiGSNEuiJpRMBjmeNq-zE0NE,1248
|
|
1884
1886
|
xinference/web/ui/node_modules/.cache/babel-loader/23c526d8edcb3d7f772c29b0ff9672055c3947827bbd4eef453c0090dcc0ef77.json,sha256=5qXGbpTSKOs6_g_UUb6IVhVsdM21WjpjW4EM9bNWiGk,1202
|
|
1885
1887
|
xinference/web/ui/node_modules/.cache/babel-loader/23c67ac27325ba231cc9194da955c24b8032c6e8ab2de961609031447d4f6d7a.json,sha256=udedLiC2ZCJiweBAZOzhyLKb1rtjY1zim8r3cP-RwF8,1248
|
|
1888
|
+
xinference/web/ui/node_modules/.cache/babel-loader/23caf6f1e52c43e983ca3bfd4189f41dbd645fa78f2dfdcd7f6b69bc41678665.json,sha256=UvAvf4vs6nlbEkVZ32-NhSIlGEfX1Ci4O-ZUa4Be0YE,13677
|
|
1886
1889
|
xinference/web/ui/node_modules/.cache/babel-loader/23cb12c44eafefb7d456cef8582138efdfed7daebb6f4b6e7359ec8ff25329cb.json,sha256=hFf7fiAahUINivzVAafir8eb4n-anMtV2eTWpBoPW4g,1554
|
|
1887
1890
|
xinference/web/ui/node_modules/.cache/babel-loader/23cdb459c3a81154271c47c63c3c48b8b564e0dd434e8bd17b710871be7368c5.json,sha256=aH0SMUkaxUq1sFPSHcLCXf2jwAvXyM9abJoTpQNWBMQ,1715
|
|
1888
1891
|
xinference/web/ui/node_modules/.cache/babel-loader/23de79c2687d4f2cc2083083345213227f299c9758235788a2956e86ac5961a9.json,sha256=Iezix1XII-n_7S8-UHU--GcXGvtObk5JuKxrRrxhUR4,1679
|
|
@@ -4143,7 +4146,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/53756725ef11f97b1616fa01e4486
|
|
|
4143
4146
|
xinference/web/ui/node_modules/.cache/babel-loader/5376b7753a8a2550ee94e61b8d90718fb34537e4928e3a7814d42fc7d6be186a.json,sha256=-NMuykzMP-BzLDDan6BmlSShodvWG_KjMN31hGZ5_tU,1176
|
|
4144
4147
|
xinference/web/ui/node_modules/.cache/babel-loader/537bbbd6a327cc20a826e54e0717f8d71e0ef33648409c512c8a6ed9760f680c.json,sha256=kUaRriTNxhQW2XhqirJpsDa1xIinnrSX_lLfEk6wJQg,20210
|
|
4145
4148
|
xinference/web/ui/node_modules/.cache/babel-loader/53867b68a0b49c920cf6cee6d3bd95e4796ba82dd5332a1d034affa09cc004cb.json,sha256=U5vN4zr1O38HY47mnAy_xlEe_X91Ly8vld1LPiN8Q_Y,5538
|
|
4146
|
-
xinference/web/ui/node_modules/.cache/babel-loader/5393569d846332075b93b55656716a34f50e0a8c970be789502d7e6c49755fd7.json,sha256=sk625R4JVtqf-RcQ5sJHViOkC8S_8UGxrtBujkqWGt8,13447
|
|
4147
4149
|
xinference/web/ui/node_modules/.cache/babel-loader/53948204cbb8006d746a9da05456c5b0b1677ea306318c43f3d3fec46c91c67c.json,sha256=P02Mb7W0lRL9tLkRIPpsUx98yvPNj6bsdFB2FED0hhc,914
|
|
4148
4150
|
xinference/web/ui/node_modules/.cache/babel-loader/5394e2b265efd1be72a9030095e93976d88293e24ecf27f8556ffd0b5e5e4216.json,sha256=_uriBNmpb6rmg28rDDUuWP1BYb3SB89PaF_V3_jo5F0,1320
|
|
4149
4151
|
xinference/web/ui/node_modules/.cache/babel-loader/539f18646ec870ab1c5e42b7d78b2916cb743c5039e59bef57dc66994b37a7ab.json,sha256=Pnp96k9QNZ3wt5gHF608lOQQE4emZJQGNPW5mahDGQE,1795
|
|
@@ -8193,6 +8195,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/a6bb917e4869d7d6ddf50b75932ca
|
|
|
8193
8195
|
xinference/web/ui/node_modules/.cache/babel-loader/a6bc28b3bf1ef1a101bf56455585ec96bd7ea6c1138208a6d8117c683ec2409b.json,sha256=MKlkOzm-aWbjJMVjllLa1i8eN1ngafAB32bp9Vu5tAk,1649
|
|
8194
8196
|
xinference/web/ui/node_modules/.cache/babel-loader/a6cc40d3bce998f1d6d658815b665501dee5545041708255cb5f9610f320ba5c.json,sha256=FGJ0G7yJx9ztnAO88lCG9SB4zzs3QB-Rqx5fmc0ued8,10843
|
|
8195
8197
|
xinference/web/ui/node_modules/.cache/babel-loader/a6d6b24a6cb0ef2167566c013092d36ca48edde283668459a4ed8f08cff18dc1.json,sha256=EZ_oYeRQFIhdowE0nfIfNNVZ1UjuD0_Qs07qt1gm8Es,1786
|
|
8198
|
+
xinference/web/ui/node_modules/.cache/babel-loader/a6da6bc3d0d2191adebee87fb58ecebe82d071087bd2f7f3a9c7fdd2ada130f2.json,sha256=1kMUZVdoSDv_L4BPn5IDc2s-aLgcZKrpRSl0NnPxxVs,110515
|
|
8196
8199
|
xinference/web/ui/node_modules/.cache/babel-loader/a6dc4ece620554fbd7ed60ce072ce1b6a48cb2f455f5205e0c584d36b88d9d4e.json,sha256=GtFRq6pdOlP0kklYvUc_tanze-rkQB2exnRIjwiA5tw,1101
|
|
8197
8200
|
xinference/web/ui/node_modules/.cache/babel-loader/a6deab6f2e45ade4165256db7a812a5d299bc585529c201d51a0e2d6c2b68bb7.json,sha256=ouQ_GZHaGdNPn6HEkTpTLlEyIFGzPXBEtGyXaJbUB74,1074
|
|
8198
8201
|
xinference/web/ui/node_modules/.cache/babel-loader/a6e86ae74dc45afdb7906a16b3ba1248499afe72501f60c441b4bb6df3e8f93b.json,sha256=4KG-ryvG4pgMCCbddj3XmF1iBOdhxDylyhyZNK8Y3C8,1044
|
|
@@ -10817,7 +10820,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/dd9c51a9ca13cb4301841fb349a9b
|
|
|
10817
10820
|
xinference/web/ui/node_modules/.cache/babel-loader/dd9d14c69f18f1e11efcfbb9d05c9207ce16ba67a196b802e89653337570e41c.json,sha256=joRjAFucZDnIJsXsIRcRM6TWZHw-tMz83UfoyCdkDTQ,1032
|
|
10818
10821
|
xinference/web/ui/node_modules/.cache/babel-loader/dd9e01dacfd525823e5564983dc4ce4c654305893fa2769d24f9574103a1543f.json,sha256=AZmN2PexKlczzT2goeFs7fzdfyfDXAWaBQF-kdnXROw,1172
|
|
10819
10822
|
xinference/web/ui/node_modules/.cache/babel-loader/ddac931e9f2e469acf1d9469ff25924ddea06fe5874ec107b9d58848961780ed.json,sha256=1WgbDVABC-9fTFPoSeKfy2FFXe5505yFORBFzRdb2y4,1217
|
|
10820
|
-
xinference/web/ui/node_modules/.cache/babel-loader/ddaec68b88e5eff792df1e39a4b4b8b737bfc832293c015660c3c69334e3cf5c.json,sha256=kZcssaWZPTA0pLRh5OXSpPxfFGWyTJ6G0P8Dk5rtx1o,103318
|
|
10821
10823
|
xinference/web/ui/node_modules/.cache/babel-loader/ddb7faca5ddb45fe5d3069edce85189268be15bd1a123de6558e13b66e11bb3c.json,sha256=CHTVOX65rYUO-s37Afa_sr-NJD0fV5BEN-icIjQBnP4,1931
|
|
10822
10824
|
xinference/web/ui/node_modules/.cache/babel-loader/ddbb86885f9831b28e6a7531b5b2020bb4cfbe95b7e38e641177ec7926250f99.json,sha256=NwMP1hUK3rfivmu2XSjbuM7YWXcWe7XrSwU5pQCbDDw,2064
|
|
10823
10825
|
xinference/web/ui/node_modules/.cache/babel-loader/ddbd850e27d640dcf0ce67495c814308090db95ca0a69048920ea1b194f4cb6c.json,sha256=tE2r61j04S3qfUtO76T49HqzL_-5p5lYVZlkq3iJcK8,1730
|
|
@@ -15421,9 +15423,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15421
15423
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15422
15424
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15423
15425
|
xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
|
|
15424
|
-
xinference-0.11.
|
|
15425
|
-
xinference-0.11.
|
|
15426
|
-
xinference-0.11.
|
|
15427
|
-
xinference-0.11.
|
|
15428
|
-
xinference-0.11.
|
|
15429
|
-
xinference-0.11.
|
|
15426
|
+
xinference-0.11.2.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
15427
|
+
xinference-0.11.2.dist-info/METADATA,sha256=DQYeSyUTuB1mVksGNtxaXfcwqI0Vc8r_ucm3BcpVcXg,15542
|
|
15428
|
+
xinference-0.11.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
15429
|
+
xinference-0.11.2.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
15430
|
+
xinference-0.11.2.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
15431
|
+
xinference-0.11.2.dist-info/RECORD,,
|