xinference 1.11.0.post1__py3-none-any.whl → 1.12.0__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/__init__.py +8 -0
- xinference/_version.py +3 -3
- xinference/api/oauth2/utils.py +26 -5
- xinference/core/model.py +1 -10
- xinference/device_utils.py +11 -1
- xinference/model/embedding/model_spec.json +70 -0
- xinference/model/image/core.py +20 -10
- xinference/model/image/model_spec.json +55 -3
- xinference/model/image/ocr/__init__.py +5 -0
- xinference/model/image/ocr/deepseek_ocr.py +958 -0
- xinference/model/llm/core.py +2 -0
- xinference/model/llm/llama_cpp/core.py +2 -0
- xinference/model/llm/llm_family.json +319 -6
- xinference/model/llm/lmdeploy/core.py +2 -0
- xinference/model/llm/sglang/core.py +2 -0
- xinference/model/llm/transformers/core.py +2 -0
- xinference/model/llm/transformers/multimodal/qwen-omni.py +60 -11
- xinference/model/llm/transformers/multimodal/qwen2_vl.py +2 -2
- xinference/model/llm/vllm/core.py +2 -0
- xinference/model/rerank/model_spec.json +368 -252
- xinference/model/rerank/sentence_transformers/core.py +10 -2
- xinference/thirdparty/indextts/gpt/transformers_generation_utils.py +71 -5
- xinference/thirdparty/indextts/gpt/transformers_gpt2.py +51 -1
- xinference/ui/gradio/media_interface.py +469 -4
- xinference/ui/gradio/utils/__init__.py +19 -0
- xinference/ui/gradio/utils/latex.py +342 -0
- xinference/ui/web/ui/build/asset-manifest.json +3 -3
- xinference/ui/web/ui/build/index.html +1 -1
- xinference/ui/web/ui/build/static/js/{main.e4d9a9e1.js → main.87d6859b.js} +3 -3
- xinference/ui/web/ui/build/static/js/{main.e4d9a9e1.js.map → main.87d6859b.js.map} +1 -1
- xinference/ui/web/ui/node_modules/.cache/babel-loader/412a6b414a8267c7a349d9beda4593cdf218abf32edaaf339e6a230df40397b8.json +1 -0
- {xinference-1.11.0.post1.dist-info → xinference-1.12.0.dist-info}/METADATA +10 -11
- {xinference-1.11.0.post1.dist-info → xinference-1.12.0.dist-info}/RECORD +38 -35
- xinference/ui/web/ui/node_modules/.cache/babel-loader/bb4e8722d2d41d87f1fce3661bc8937bffe9448e231fc5f0462630849e851592.json +0 -1
- /xinference/ui/web/ui/build/static/js/{main.e4d9a9e1.js.LICENSE.txt → main.87d6859b.js.LICENSE.txt} +0 -0
- {xinference-1.11.0.post1.dist-info → xinference-1.12.0.dist-info}/WHEEL +0 -0
- {xinference-1.11.0.post1.dist-info → xinference-1.12.0.dist-info}/entry_points.txt +0 -0
- {xinference-1.11.0.post1.dist-info → xinference-1.12.0.dist-info}/licenses/LICENSE +0 -0
- {xinference-1.11.0.post1.dist-info → xinference-1.12.0.dist-info}/top_level.txt +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
xinference/__init__.py,sha256=
|
|
1
|
+
xinference/__init__.py,sha256=zOlQgr4ZmJsJ1uEmK4IViq6VJFzzbq4m35z7-stvr7M,1265
|
|
2
2
|
xinference/_compat.py,sha256=YF-lS6tX06zkFi2oFS0yq_LBn4hX_8u0Ft0vKxGALwA,4238
|
|
3
|
-
xinference/_version.py,sha256=
|
|
3
|
+
xinference/_version.py,sha256=EaOBaFygS5bTWkEr_G2C-KNAkB1EqSfkaKJz6mKvybA,498
|
|
4
4
|
xinference/conftest.py,sha256=vETDpRBVIlWbWi7OTwf7og89U25KyYGyI7yPIB3O8N8,9564
|
|
5
5
|
xinference/constants.py,sha256=643I-3Hd-3BU6DRCMrohsW5HYp990WjYi1cbFwAxCL8,5117
|
|
6
|
-
xinference/device_utils.py,sha256=
|
|
6
|
+
xinference/device_utils.py,sha256=8IMb1qNOhbXze8L67ha-q5yR7rIQbFxbUQoE-Mnd_SM,5396
|
|
7
7
|
xinference/fields.py,sha256=FaL9-jXDkn6kwupCmo-F6hh2JvMPJJzRWSUB1NKuhKc,5352
|
|
8
8
|
xinference/isolation.py,sha256=gTU1em5fxg1m-7hxieWBMZvVkXZX4GZYmeT7XxXsYrU,2699
|
|
9
9
|
xinference/types.py,sha256=YwAEATfm8CXXdWNYn_Y7AEGiYojFqlq0n5rulaIlQ0k,14842
|
|
@@ -13,7 +13,7 @@ xinference/api/restful_api.py,sha256=7e_ieMPcO7LMOESWd1NYK5w-2zKZMG520KuxPBg_qK4
|
|
|
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
|
|
16
|
-
xinference/api/oauth2/utils.py,sha256=
|
|
16
|
+
xinference/api/oauth2/utils.py,sha256=hNCwZzrNM3pSbRG0lW-s1ZsD9uwifiF2dKpFUohxbGA,1969
|
|
17
17
|
xinference/client/__init__.py,sha256=TnDlTxUF4dBRhpUgXu-aLsKtnZ3jEE_f4ReGu5Q6XhY,756
|
|
18
18
|
xinference/client/common.py,sha256=LqVR27-zVmQSbVy5tyUpXi0VuJw3MRrYMSqOsIH0Ybw,3007
|
|
19
19
|
xinference/client/handlers.py,sha256=2FdxGJhusLICplu2BoP2SNNYm0QXoGmmoU2xZi9SRQY,1356
|
|
@@ -24,7 +24,7 @@ xinference/core/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,5
|
|
|
24
24
|
xinference/core/cache_tracker.py,sha256=3ubjYCU5aZToSp2GEuzedECVrg-PR4kThTefrFUkb9g,6971
|
|
25
25
|
xinference/core/event.py,sha256=42F38H2WOl6aPxp2oxX6WNxHRRxbnvYRmbt4Ar7NP4U,1640
|
|
26
26
|
xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
|
|
27
|
-
xinference/core/model.py,sha256=
|
|
27
|
+
xinference/core/model.py,sha256=dUDRoXRMAPGsRZ81uadLC8_FI5E8Y0lSXr1-3InRv4w,39296
|
|
28
28
|
xinference/core/progress_tracker.py,sha256=CNCc1ZVscvp-JJznPTYJDPuis7ya6ZothZUIalDcxDo,6798
|
|
29
29
|
xinference/core/resource.py,sha256=aTV89dmuKxw5JnwQglRkA2Wxu1EBLM5WjmLxITSXYgs,1808
|
|
30
30
|
xinference/core/status_guard.py,sha256=VLhyqpobdclfyzcROqf4bmGDiKpuHllto316X3Z6Hrc,2860
|
|
@@ -68,7 +68,7 @@ xinference/model/embedding/cache_manager.py,sha256=_ScNPA2PhkcKsk9WSaORd8GtImnKa
|
|
|
68
68
|
xinference/model/embedding/core.py,sha256=53wPJmkBXi7R7NEVPPEqi48Llb4ry8UHlLXHCQ5JtXI,11245
|
|
69
69
|
xinference/model/embedding/custom.py,sha256=CmxoTGH2KP5YjaP9UelRZiXk4VnQoUEWwn3TsMI9SEM,3038
|
|
70
70
|
xinference/model/embedding/embed_family.py,sha256=trYpZt-1z6WzTU5U5zxwU_-vKxeSQ0QMXYB5rz6BOOk,5556
|
|
71
|
-
xinference/model/embedding/model_spec.json,sha256=
|
|
71
|
+
xinference/model/embedding/model_spec.json,sha256=_CPhErO0bfPH89XJ2484FisXpwVOATPpvU8f6ux3AOw,29004
|
|
72
72
|
xinference/model/embedding/flag/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
|
|
73
73
|
xinference/model/embedding/flag/core.py,sha256=n84TMXGWZT8TOIbo7DDllDmKWL6qPblPgikeCbVlb6I,11440
|
|
74
74
|
xinference/model/embedding/llama_cpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -88,12 +88,13 @@ xinference/model/flexible/launchers/transformers_launcher.py,sha256=RNksbNu9TmMM
|
|
|
88
88
|
xinference/model/flexible/launchers/yolo_launcher.py,sha256=BRLhxzO8r3aruQLgDxjS94bKz3u0x9eo9fJsfKI6Bqk,2016
|
|
89
89
|
xinference/model/image/__init__.py,sha256=X43XSNSbQrVlU82jgKxrX965o6uGO-GPMvLvyb0GF2U,2957
|
|
90
90
|
xinference/model/image/cache_manager.py,sha256=Ccc0SRWdq8qiLhrRwh4LYZLiHZ6ywQTEz6VdyFHnE2Y,4700
|
|
91
|
-
xinference/model/image/core.py,sha256=
|
|
91
|
+
xinference/model/image/core.py,sha256=ABfNOxgIkrz_Za_jCwFs0aQzToVVGByOqHtv0iCbdPc,9876
|
|
92
92
|
xinference/model/image/custom.py,sha256=THn9AZUdPtV0BmMO1tUTpMEXBQkzfle8p5685ZYcqek,1969
|
|
93
|
-
xinference/model/image/model_spec.json,sha256=
|
|
93
|
+
xinference/model/image/model_spec.json,sha256=2yrZpi0Iixufw2b-n9SjTc-xedoUrbqy-M9idulH9ZQ,25539
|
|
94
94
|
xinference/model/image/sdapi.py,sha256=Xgdtnvw4Xwj1Nc0cBoDo_ogH6E2mFJqLvX0jSxxgdnA,5936
|
|
95
95
|
xinference/model/image/utils.py,sha256=wXqZRHqn11qERJKfYkK4nDSNanjNXsg1xaG2nVAs01Y,2344
|
|
96
|
-
xinference/model/image/ocr/__init__.py,sha256=
|
|
96
|
+
xinference/model/image/ocr/__init__.py,sha256=2NzkfTGpJHePyRicRxWnpDKZHjFL2QU_yqPwzs-EGPw,708
|
|
97
|
+
xinference/model/image/ocr/deepseek_ocr.py,sha256=xFbQmFKrfqCpriJ8CdkdVLmdg1knSu3NXecZs9vvyMM,34461
|
|
97
98
|
xinference/model/image/ocr/got_ocr2.py,sha256=-eu4-tnt5wMh1WKuEIoaN9tlxdCvbOPhhn5UGN-4Fvs,2500
|
|
98
99
|
xinference/model/image/scheduler/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
99
100
|
xinference/model/image/scheduler/flux.py,sha256=_l9XWYHfZMO5W9hLCuE9YGRuHN5F1pCE1-W1BqXCnRI,18833
|
|
@@ -102,18 +103,18 @@ xinference/model/image/stable_diffusion/core.py,sha256=KrEHIAr-c5rbH0r4TR2lDonG-
|
|
|
102
103
|
xinference/model/image/stable_diffusion/mlx.py,sha256=caWbXNAvGIbg6FvG1M6BFFXzsPUltI2Fhhu-lpMPirY,7487
|
|
103
104
|
xinference/model/llm/__init__.py,sha256=zk3dusiCUhg6rEtUXNnru8QKfRUkoojDeDjzVdH78H0,9037
|
|
104
105
|
xinference/model/llm/cache_manager.py,sha256=7Ult1h8JCcwd05g95Kwm3j7qIaaK3phyW9LQNAzrHmY,11253
|
|
105
|
-
xinference/model/llm/core.py,sha256
|
|
106
|
+
xinference/model/llm/core.py,sha256=s3bAZZubxMroT0RS4P6JkGnA2RbpyWWzamh8mAi8D28,9246
|
|
106
107
|
xinference/model/llm/custom.py,sha256=uRJGWICXvaAKKnVYM7gyWO9e_x6jzz9dWZWH92UWpAE,2761
|
|
107
108
|
xinference/model/llm/harmony.py,sha256=E1KqpFn2lz9uxegbpnrYqQAL1Gx8BfBVB8gyiblWccg,9900
|
|
108
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
109
|
+
xinference/model/llm/llm_family.json,sha256=CK7cvwjhPjxhkCQInj7KApQsRKBL0UW2rEcsbL7ZL1A,853868
|
|
109
110
|
xinference/model/llm/llm_family.py,sha256=H92Mtq8NJavwenI3BPyTHVHLrlgfUXcy2LGN1OCA7pE,21381
|
|
110
111
|
xinference/model/llm/memory.py,sha256=y8fBjIGd6zIPkgIxGtjakD7GPLW3VoM4m6x1UBM6IKs,10144
|
|
111
112
|
xinference/model/llm/reasoning_parser.py,sha256=sk5KuteBMGK0A0-ooq3nB9scP1SS8WxWS_b5OYiDD68,17449
|
|
112
113
|
xinference/model/llm/utils.py,sha256=aRM9A-m5RfhVJMcutak5EzMReYeWPHEo5gPERYzoM-4,42826
|
|
113
114
|
xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
114
|
-
xinference/model/llm/llama_cpp/core.py,sha256
|
|
115
|
+
xinference/model/llm/llama_cpp/core.py,sha256=pVkOq_l0Vxto7ezrmuTLkxetUrvoiJ0Xe8cmqPqnNHM,14095
|
|
115
116
|
xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
|
-
xinference/model/llm/lmdeploy/core.py,sha256=
|
|
117
|
+
xinference/model/llm/lmdeploy/core.py,sha256=cd2p150rkKhmM1Qx338bDqz_vQI81OiO5ZRXHNutmR4,19919
|
|
117
118
|
xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
118
119
|
xinference/model/llm/mlx/core.py,sha256=5nxHxEFI2x6DVDWUln3HBoxf4NfeLN2P3rhV9zKwOMU,35482
|
|
119
120
|
xinference/model/llm/mlx/distributed_models/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
@@ -123,7 +124,7 @@ xinference/model/llm/mlx/distributed_models/qwen2.py,sha256=kU4FNoKlthjnwY6pORVw
|
|
|
123
124
|
xinference/model/llm/mlx/distributed_models/qwen3.py,sha256=mconllhlTKOY96UP6Y9G3kBppSbP5kYCcziDeBEdtVY,2586
|
|
124
125
|
xinference/model/llm/mlx/distributed_models/qwen3_moe.py,sha256=_d__HWDYfL1wAUAa-0xWiszLC6AYkGLQ5eTVtsi5Pc4,2380
|
|
125
126
|
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
126
|
-
xinference/model/llm/sglang/core.py,sha256=
|
|
127
|
+
xinference/model/llm/sglang/core.py,sha256=ikW2iSxN6kENWleL2tMzT5LZnX8RHTd_Qfwk0Da-Eq0,31091
|
|
127
128
|
xinference/model/llm/tool_parsers/__init__.py,sha256=FqS5V2v-HpBy5J9IWaw7ZfZ5_fzAtYeVG0WN-bmL98o,1778
|
|
128
129
|
xinference/model/llm/tool_parsers/abstract_tool_parser.py,sha256=7D2ihK7Ny9LNmHcezcEKYNwe8GIZJHydFZlWDg4xXpE,1312
|
|
129
130
|
xinference/model/llm/tool_parsers/deepseek_r1_tool_parser.py,sha256=1uEmC_fbpZWVojtowMpd84nkQmQ8udHjLLqBBt3dTpE,7896
|
|
@@ -133,7 +134,7 @@ xinference/model/llm/tool_parsers/llama3_tool_parser.py,sha256=vBD39Ub2ha0CXRCOt
|
|
|
133
134
|
xinference/model/llm/tool_parsers/qwen_tool_parser.py,sha256=AqD4Os0zp_GhM-v1e9WQKvbpGSDrDxBvMiJmOiDKFwA,13025
|
|
134
135
|
xinference/model/llm/transformers/__init__.py,sha256=_4hQ7BvHNE4WAyzNcTB0_iY5mBcaPGTkLvQcWiylBoI,1724
|
|
135
136
|
xinference/model/llm/transformers/chatglm.py,sha256=Wql_Y5BC-tsZa29gdLi8HeXKF22bkjx9su_FEKyOinw,23097
|
|
136
|
-
xinference/model/llm/transformers/core.py,sha256=
|
|
137
|
+
xinference/model/llm/transformers/core.py,sha256=2A2N4i3V0Iqs-hP6mCFHhTaxjB98XvxA5njrUEuUMkg,43301
|
|
137
138
|
xinference/model/llm/transformers/deepseek_v2.py,sha256=4LB_grDfdaXBCdTwduqpWFrYoeKsMnBERWTxcNl7EfA,2624
|
|
138
139
|
xinference/model/llm/transformers/gemma3.py,sha256=oH5SwLM7aX-8zMPO7918x2BKDZGJgeFdZ5FduHiDDQI,5490
|
|
139
140
|
xinference/model/llm/transformers/gpt_oss.py,sha256=uPO0WsDlxxd9KY3mlldyZyQIcogPk-rDxL-LHbIgSuc,3386
|
|
@@ -151,11 +152,11 @@ xinference/model/llm/transformers/multimodal/intern_vl.py,sha256=jzHxcryQIBAUChL
|
|
|
151
152
|
xinference/model/llm/transformers/multimodal/minicpmv26.py,sha256=p2amIpc5i05XbpCiS6iYh-qODh4rCR-dVg3xiNQmSCg,12950
|
|
152
153
|
xinference/model/llm/transformers/multimodal/minicpmv45.py,sha256=tSjzJ9zfZVbebh6nE39hBcXRWZDxY0whm80AU5AsEOw,13007
|
|
153
154
|
xinference/model/llm/transformers/multimodal/ovis2.py,sha256=ASGfKX4LXwjSNaSLfv7YTFYYlS3uVJ7-Ehq34WFKJuA,8912
|
|
154
|
-
xinference/model/llm/transformers/multimodal/qwen-omni.py,sha256=
|
|
155
|
+
xinference/model/llm/transformers/multimodal/qwen-omni.py,sha256=iT7U8uwqaKtoewxi3XCRTHDKqjzvLYaETtiHlrdNVkM,10204
|
|
155
156
|
xinference/model/llm/transformers/multimodal/qwen2_audio.py,sha256=wFzyTyNvSfTKA4opMeYHT4m4SpmAbcUfvkc16Bf4FRA,4680
|
|
156
|
-
xinference/model/llm/transformers/multimodal/qwen2_vl.py,sha256=
|
|
157
|
+
xinference/model/llm/transformers/multimodal/qwen2_vl.py,sha256=YRegRIAgReZWgs87T65P8FEvKbvmEB2mXxCFDkiurw0,9462
|
|
157
158
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
158
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
159
|
+
xinference/model/llm/vllm/core.py,sha256=e1Ryi3FRmyMPPCoNUJqWz27p9tb3HdQbKSgiLNGQrfI,65292
|
|
159
160
|
xinference/model/llm/vllm/distributed_executor.py,sha256=8bFU4JSgvbBTrhGZhsANfMUX4DR6es1zw-cljVLkTBw,14125
|
|
160
161
|
xinference/model/llm/vllm/utils.py,sha256=LKOmwfFRrlSecawxT-uE39tC2RQbf1UIiSH9Uz90X6w,1313
|
|
161
162
|
xinference/model/llm/vllm/xavier/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
|
|
@@ -175,11 +176,11 @@ xinference/model/rerank/__init__.py,sha256=6Fnqhno88H72F6UVcmk7Ebi8bN3ZCRL7Zkv0M
|
|
|
175
176
|
xinference/model/rerank/cache_manager.py,sha256=NFc5GlswraktwJwO1QxC5ckkLj5pN_9Zd29eoGc5PHk,1275
|
|
176
177
|
xinference/model/rerank/core.py,sha256=FOJvT1-lM2DvSeSOvfD82pcpidq4FKuFNZuP28T80rY,6753
|
|
177
178
|
xinference/model/rerank/custom.py,sha256=7j583DeslLA-8jNSzJb9KGM7wcTRR1y_af9aJ9sQn4Q,2942
|
|
178
|
-
xinference/model/rerank/model_spec.json,sha256=
|
|
179
|
+
xinference/model/rerank/model_spec.json,sha256=Hzznu19WIAdMAQvrfPK46sP2C5pUbpj5EseyPmjiO48,8274
|
|
179
180
|
xinference/model/rerank/rerank_family.py,sha256=BXEWUvr1H3tPV5Z6p4jcU4xfUFehV-2oN9b3tT8nGvU,5386
|
|
180
181
|
xinference/model/rerank/utils.py,sha256=Achr7MhVoc78UGhx6L0OUVWAf63se5nXSg95wCjMjso,1191
|
|
181
182
|
xinference/model/rerank/sentence_transformers/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
|
|
182
|
-
xinference/model/rerank/sentence_transformers/core.py,sha256=
|
|
183
|
+
xinference/model/rerank/sentence_transformers/core.py,sha256=9O7794woGuQC-16EjZH7XoVCcZ3SCFcm6OdxkCD3B84,13913
|
|
183
184
|
xinference/model/rerank/vllm/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
|
|
184
185
|
xinference/model/rerank/vllm/core.py,sha256=FqwZ7Q-us_3lV-SoL68MQgg-U48JnonDSd6qG0YpYHg,5877
|
|
185
186
|
xinference/model/scheduler/__init__.py,sha256=wArdtMnG8AufosXhHAQFOSLVygqaaLC5lKwUwY6k7Zg,765
|
|
@@ -523,8 +524,8 @@ xinference/thirdparty/indextts/gpt/model.py,sha256=kDpZVlbPAJXL3f728vHfiTUWmmlk2
|
|
|
523
524
|
xinference/thirdparty/indextts/gpt/model_v2.py,sha256=Sfufynj5LR5bkl_gynRDheXD7tGnVzRtpWbdxUm9rgk,37171
|
|
524
525
|
xinference/thirdparty/indextts/gpt/perceiver.py,sha256=xQd2RpG8J6xG9_3_l4gxiEpDGSTieYyemO6lOB8gBTc,9407
|
|
525
526
|
xinference/thirdparty/indextts/gpt/transformers_beam_search.py,sha256=2R5yOYZ9tDEsJX2Ap6Jk8jfwwrDgsRn-OcxC_NzCac0,49570
|
|
526
|
-
xinference/thirdparty/indextts/gpt/transformers_generation_utils.py,sha256=
|
|
527
|
-
xinference/thirdparty/indextts/gpt/transformers_gpt2.py,sha256=
|
|
527
|
+
xinference/thirdparty/indextts/gpt/transformers_generation_utils.py,sha256=9pt8HT3jSBvnaA-BEAEpadpgICkCrJt6csEjzD5IPUo,256358
|
|
528
|
+
xinference/thirdparty/indextts/gpt/transformers_gpt2.py,sha256=glCSxxoyH0WAHAY8xGYx15xqdCc9R7YPd9Wmq96M6CE,87973
|
|
528
529
|
xinference/thirdparty/indextts/gpt/transformers_modeling_utils.py,sha256=hxxop0ZuRVDf3jAhdigao86y-eWJTPAtjMO_dwSPYqU,274934
|
|
529
530
|
xinference/thirdparty/indextts/gpt/conformer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
530
531
|
xinference/thirdparty/indextts/gpt/conformer/attention.py,sha256=4frH-NCj8T9Q_ADWM3kWQRmyREf3eFk8k2XRglyecFI,14071
|
|
@@ -880,17 +881,19 @@ xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc
|
|
|
880
881
|
xinference/ui/__init__.py,sha256=vlb6zkPS-v_VIp-8yH_GgzH6Lk0XOqb46VmI4NRvG9s,683
|
|
881
882
|
xinference/ui/gradio/__init__.py,sha256=8sdxsx-RvET6fwoyjC76ThgRpYFc-Evdt7mpJKUtIZA,719
|
|
882
883
|
xinference/ui/gradio/chat_interface.py,sha256=4Hkxct581oE-UJfHE7eO1q-MOdx_12P3S1fmcEzS0sE,31181
|
|
883
|
-
xinference/ui/gradio/media_interface.py,sha256=
|
|
884
|
+
xinference/ui/gradio/media_interface.py,sha256=oMuaGrGz4tpwAx5K7D4cHMnR8a2PzRikFx5o8-jMMNw,70608
|
|
885
|
+
xinference/ui/gradio/utils/__init__.py,sha256=UTNMz8EL6bJdxqMxT8esq4Kq-s26Z2V00ICp6DimSCQ,787
|
|
886
|
+
xinference/ui/gradio/utils/latex.py,sha256=DK-J2uUKy1uydTMuBQydZd7QbVkjpchLgsSk5iSHhzU,11341
|
|
884
887
|
xinference/ui/web/ui/package-lock.json,sha256=qLruwANnYWM2tNKJIBj8X9sfoj2-1fASY_aSlrp6T3M,760863
|
|
885
888
|
xinference/ui/web/ui/package.json,sha256=fKbU-QiHj3ob1ZUkbTrNnBKr6xI4keQusuZWvNaD030,2053
|
|
886
|
-
xinference/ui/web/ui/build/asset-manifest.json,sha256=
|
|
889
|
+
xinference/ui/web/ui/build/asset-manifest.json,sha256=6i-m4S6l-GZi1Dnv1Oev_GD9bbmvQirGK-x1fULE0og,453
|
|
887
890
|
xinference/ui/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
|
|
888
|
-
xinference/ui/web/ui/build/index.html,sha256=
|
|
891
|
+
xinference/ui/web/ui/build/index.html,sha256=uENk6LNxYz0nifjboPdpfZWNxXhLwIg-PZw2-rJNci8,650
|
|
889
892
|
xinference/ui/web/ui/build/static/css/main.5ea97072.css,sha256=QzhgxUs4GpS3hwOv6NW25TdDNDMvQiN6HckuAEaVKZo,3341
|
|
890
893
|
xinference/ui/web/ui/build/static/css/main.5ea97072.css.map,sha256=t_9sK7h9hkRY9o0SArNBI34LV30HMzBQHCIhfpynO_k,6321
|
|
891
|
-
xinference/ui/web/ui/build/static/js/main.
|
|
892
|
-
xinference/ui/web/ui/build/static/js/main.
|
|
893
|
-
xinference/ui/web/ui/build/static/js/main.
|
|
894
|
+
xinference/ui/web/ui/build/static/js/main.87d6859b.js,sha256=Phx1Zyz2Y4Hlp6incXUEGls45tTZIuvTtsI-WyLlrQ0,1277442
|
|
895
|
+
xinference/ui/web/ui/build/static/js/main.87d6859b.js.LICENSE.txt,sha256=0xWDzLX4HHvsxHE4Es_ZDJF6VqQRSNGGa1-p0MGy8d0,2227
|
|
896
|
+
xinference/ui/web/ui/build/static/js/main.87d6859b.js.map,sha256=XE4rPt1LEB_xp1L4zhtVZxH7R-RAhbCHLuWRFfz7O6Y,5199925
|
|
894
897
|
xinference/ui/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
|
|
895
898
|
xinference/ui/web/ui/node_modules/.package-lock.json,sha256=OdknlpWEXQcVqYuk6s6MJ1Xh3NUb6bDKev0zEXtV2KM,758749
|
|
896
899
|
xinference/ui/web/ui/node_modules/.cache/babel-loader/000586173ff934bab9e3b1eb56de8522e86c56b7e0e03b59b1ccc15e269ea871.json,sha256=VRSx_-UfpuhJhxOku106XYcyPD8mk2KGsa_hhR1nrMc,1450
|
|
@@ -4051,6 +4054,7 @@ xinference/ui/web/ui/node_modules/.cache/babel-loader/411379884c68e5c8440d1370a4
|
|
|
4051
4054
|
xinference/ui/web/ui/node_modules/.cache/babel-loader/411d52c14e131ef71517e35791a44bb1a26bc380b3bd36232932c22c74795c20.json,sha256=I9PmXQlEeHj2t60LG_6FtS7DDznMYLmldHbO_3AHGts,1255
|
|
4052
4055
|
xinference/ui/web/ui/node_modules/.cache/babel-loader/41219cef47319192f8c4202c09a65e976c39f9544e57de4f5bf694b51ff2062c.json,sha256=Ybj1-KiCuSexkIqpluNd6_yYxNs2L80oAomTo79sbR8,1754
|
|
4053
4056
|
xinference/ui/web/ui/node_modules/.cache/babel-loader/4125536b4a2d86d764a81030c11d0fc6d324e9beb92095f03260420fcc0b7ee3.json,sha256=86AvgI-Hv9wuxASsjZ-0h4uK5ufqGqXjh8jbfCNEfJ0,1806
|
|
4057
|
+
xinference/ui/web/ui/node_modules/.cache/babel-loader/412a6b414a8267c7a349d9beda4593cdf218abf32edaaf339e6a230df40397b8.json,sha256=fueZSS8vuHe6NLSuiE5SkvJauQwzg3AJg05j1FH45E8,159470
|
|
4054
4058
|
xinference/ui/web/ui/node_modules/.cache/babel-loader/412acf1d03199c0c2bf6d534fbe20f407bfe515231be1c373e5caae6e2ccb942.json,sha256=PxgFBs-j1XXZpC6Zw4ZSpE1tUMYkE4yH5pXPvWIZKQM,2132
|
|
4055
4059
|
xinference/ui/web/ui/node_modules/.cache/babel-loader/412e769d2248c97a72e4df5e89ee0ac515d45ba635070f574cd779f6733d40f6.json,sha256=61HGtiFQwz0-uq18dKAoY0nN8gtw78pG00cw3_QsSg8,1680
|
|
4056
4060
|
xinference/ui/web/ui/node_modules/.cache/babel-loader/413277589181429c9cfd98d78d0abaa5074fdd7279a2a1e0b1686c8d9322ae7f.json,sha256=zvwVzoU4p2wjNiQN3y_anuxCvjqSBewtMu29lSWnA0U,8703
|
|
@@ -9883,7 +9887,6 @@ xinference/ui/web/ui/node_modules/.cache/babel-loader/bb445ec2bd57b34ad3ced7024a
|
|
|
9883
9887
|
xinference/ui/web/ui/node_modules/.cache/babel-loader/bb45ed20203b938905f1c31889d590b83cffdf713f0298088daac6c0d46961db.json,sha256=vAI37VykRlHSl4oCjvv3b5m3nrnEqVuwkmIynWWpvdg,6174
|
|
9884
9888
|
xinference/ui/web/ui/node_modules/.cache/babel-loader/bb46d2ee0efd2d0c037aac62786e442dc93c851bc97c1d9db5a5a35978d7d3c4.json,sha256=k0y4kQXhU8ID0X2XL6oggeekuhjAOZUSxyPDjTu4Sbc,1595
|
|
9885
9889
|
xinference/ui/web/ui/node_modules/.cache/babel-loader/bb48bd647c3b9b272b6e9d5f02075efe14e5b87c33ad9df5d170e8ec3aab5a33.json,sha256=73CxRANul3l1AzOhDeHgcJFW9dWesm_ljtgbSuEu2Qw,1459
|
|
9886
|
-
xinference/ui/web/ui/node_modules/.cache/babel-loader/bb4e8722d2d41d87f1fce3661bc8937bffe9448e231fc5f0462630849e851592.json,sha256=glZF2h0rmH3PizN84wK5O-MBM3D4q3GclroG275Js_E,159299
|
|
9887
9890
|
xinference/ui/web/ui/node_modules/.cache/babel-loader/bb4edfce586cac1e80ae265780b8fa5d1836a800193eb5eef97a48b314ba9f62.json,sha256=xTGi_cTl2YZG66azaypKpUnBi6QGuy5FrzHgtNcwKqE,1309
|
|
9888
9891
|
xinference/ui/web/ui/node_modules/.cache/babel-loader/bb521407583b07917b44bdd5590a516c3e48df02787a9c0eabb50c6d3221ed16.json,sha256=k76litTnURvBrg-FcWJutwYG13bcMsvKmfqfG4-cHRo,2326
|
|
9889
9892
|
xinference/ui/web/ui/node_modules/.cache/babel-loader/bb559d0ab301bbbaa0c3cec003d36072cacbe2c7c80d66d759362f5088fb56e9.json,sha256=DdiI8Rrr7ftEhtlojRb7KgN93PaKJodp5B1zA-iMBtI,1463
|
|
@@ -16031,9 +16034,9 @@ xinference/ui/web/ui/src/locales/en.json,sha256=z1dhi3YJw-2PUITfIrwJmHV7_M5guwzY
|
|
|
16031
16034
|
xinference/ui/web/ui/src/locales/ja.json,sha256=FB8luZp4MbKSMawyzuQbwhi85lv6bWseHc0ywdYBHRQ,12231
|
|
16032
16035
|
xinference/ui/web/ui/src/locales/ko.json,sha256=RkQ_Jcf-rNx9a7kqKd0eH2MFg_Vo-IWqyL3CdszvYAQ,11056
|
|
16033
16036
|
xinference/ui/web/ui/src/locales/zh.json,sha256=3D2T7tMyYx10K9TuvFEqcPwBtQBGGWmF4XlpYlKqMEw,10093
|
|
16034
|
-
xinference-1.
|
|
16035
|
-
xinference-1.
|
|
16036
|
-
xinference-1.
|
|
16037
|
-
xinference-1.
|
|
16038
|
-
xinference-1.
|
|
16039
|
-
xinference-1.
|
|
16037
|
+
xinference-1.12.0.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
16038
|
+
xinference-1.12.0.dist-info/METADATA,sha256=MDXBtKl2_1o1NpSCPpK-Dwz_bbFpMrN-5H2EQLoFDYU,27513
|
|
16039
|
+
xinference-1.12.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
16040
|
+
xinference-1.12.0.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
16041
|
+
xinference-1.12.0.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
16042
|
+
xinference-1.12.0.dist-info/RECORD,,
|