xinference 1.6.1__py3-none-any.whl → 1.7.0.post1__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 +79 -2
- xinference/client/restful/restful_client.py +64 -2
- xinference/core/media_interface.py +123 -0
- xinference/core/model.py +31 -0
- xinference/core/supervisor.py +8 -17
- xinference/core/worker.py +5 -17
- xinference/deploy/cmdline.py +6 -2
- xinference/model/audio/chattts.py +24 -39
- xinference/model/audio/cosyvoice.py +18 -30
- xinference/model/audio/funasr.py +42 -0
- xinference/model/audio/model_spec.json +18 -0
- xinference/model/audio/model_spec_modelscope.json +19 -1
- xinference/model/audio/utils.py +75 -0
- xinference/model/core.py +1 -0
- xinference/model/embedding/__init__.py +74 -18
- xinference/model/embedding/core.py +98 -597
- xinference/model/embedding/embed_family.py +133 -0
- xinference/model/embedding/flag/__init__.py +13 -0
- xinference/model/embedding/flag/core.py +282 -0
- xinference/model/embedding/model_spec.json +24 -0
- xinference/model/embedding/model_spec_modelscope.json +24 -0
- xinference/model/embedding/sentence_transformers/__init__.py +13 -0
- xinference/model/embedding/sentence_transformers/core.py +399 -0
- xinference/model/embedding/vllm/__init__.py +0 -0
- xinference/model/embedding/vllm/core.py +95 -0
- xinference/model/image/model_spec.json +20 -2
- xinference/model/image/model_spec_modelscope.json +21 -2
- xinference/model/image/stable_diffusion/core.py +144 -53
- xinference/model/llm/llama_cpp/memory.py +4 -2
- xinference/model/llm/llm_family.json +57 -0
- xinference/model/llm/llm_family_modelscope.json +61 -0
- xinference/model/llm/sglang/core.py +4 -0
- xinference/model/llm/utils.py +11 -0
- xinference/model/llm/vllm/core.py +3 -0
- xinference/model/rerank/core.py +96 -4
- xinference/model/rerank/model_spec.json +24 -0
- xinference/model/rerank/model_spec_modelscope.json +24 -0
- xinference/model/rerank/utils.py +4 -3
- xinference/model/utils.py +38 -1
- xinference/model/video/diffusers.py +65 -3
- xinference/model/video/model_spec.json +31 -4
- xinference/model/video/model_spec_modelscope.json +32 -4
- xinference/web/ui/build/asset-manifest.json +6 -6
- xinference/web/ui/build/index.html +1 -1
- xinference/web/ui/build/static/css/main.013f296b.css +2 -0
- xinference/web/ui/build/static/css/main.013f296b.css.map +1 -0
- xinference/web/ui/build/static/js/main.8a9e3ba0.js +3 -0
- xinference/web/ui/build/static/js/main.8a9e3ba0.js.map +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/34cfbfb7836e136ba3261cfd411cc554bf99ba24b35dcceebeaa4f008cb3c9dc.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/55b9fb40b57fa926e8f05f31c2f96467e76e5ad62f033dca97c03f9e8c4eb4fe.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/6595880facebca7ceace6f17cf21c3a5a9219a2f52fb0ba9f3cf1131eddbcf6b.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/aa998bc2d9c11853add6b8a2e08f50327f56d8824ccaaec92d6dde1b305f0d85.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/c748246b1d7bcebc16153be69f37e955bb2145526c47dd425aeeff70d3004dbc.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/e31234e95d60a5a7883fbcd70de2475dc1c88c90705df1a530abb68f86f80a51.json +1 -0
- xinference/web/ui/src/locales/en.json +18 -7
- xinference/web/ui/src/locales/ja.json +224 -0
- xinference/web/ui/src/locales/ko.json +224 -0
- xinference/web/ui/src/locales/zh.json +18 -7
- {xinference-1.6.1.dist-info → xinference-1.7.0.post1.dist-info}/METADATA +9 -8
- {xinference-1.6.1.dist-info → xinference-1.7.0.post1.dist-info}/RECORD +66 -57
- xinference/web/ui/build/static/css/main.337afe76.css +0 -2
- xinference/web/ui/build/static/css/main.337afe76.css.map +0 -1
- xinference/web/ui/build/static/js/main.ddf9eaee.js +0 -3
- xinference/web/ui/build/static/js/main.ddf9eaee.js.map +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/12e02ee790dbf57ead09a241a93bb5f893393aa36628ca741d44390e836a103f.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/12e637ed5fa9ca6491b03892b6949c03afd4960fe36ac25744488e7e1982aa19.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/77ac2665a784e99501ae95d32ef5937837a0439a47e965d291b38e99cb619f5b.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/d4ed4e82bfe69915999ec83f5feaa4301c75ecc6bdf1c78f2d03e4671ecbefc8.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/dc249829767b8abcbc3677e0b07b6d3ecbfdfe6d08cfe23a665eb33373a9aa9d.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/f91af913d7f91c410719ab13136aaed3aaf0f8dda06652f25c42cb5231587398.json +0 -1
- /xinference/web/ui/build/static/js/{main.ddf9eaee.js.LICENSE.txt → main.8a9e3ba0.js.LICENSE.txt} +0 -0
- {xinference-1.6.1.dist-info → xinference-1.7.0.post1.dist-info}/WHEEL +0 -0
- {xinference-1.6.1.dist-info → xinference-1.7.0.post1.dist-info}/entry_points.txt +0 -0
- {xinference-1.6.1.dist-info → xinference-1.7.0.post1.dist-info}/licenses/LICENSE +0 -0
- {xinference-1.6.1.dist-info → xinference-1.7.0.post1.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
xinference/__init__.py,sha256=nmTTrYbIpj964ZF6ojtgOM7E85JBOj1EyQbmYjbj1jw,915
|
|
2
2
|
xinference/_compat.py,sha256=YF-lS6tX06zkFi2oFS0yq_LBn4hX_8u0Ft0vKxGALwA,4238
|
|
3
|
-
xinference/_version.py,sha256=
|
|
3
|
+
xinference/_version.py,sha256=FLTvXc3gsm40inNtWJwpd9lC2ODsO7OetP5N4-FyECo,503
|
|
4
4
|
xinference/conftest.py,sha256=vETDpRBVIlWbWi7OTwf7og89U25KyYGyI7yPIB3O8N8,9564
|
|
5
5
|
xinference/constants.py,sha256=-QqMRJo1MvTgnLmRZLF3DVj3PMXUzg1rV-XIsuN_nGI,4319
|
|
6
6
|
xinference/device_utils.py,sha256=ELsqvnjvz9wYthTyQFzKSV4mZsaASz6hj_IsfMmfMWc,4447
|
|
@@ -9,7 +9,7 @@ xinference/isolation.py,sha256=gTU1em5fxg1m-7hxieWBMZvVkXZX4GZYmeT7XxXsYrU,2699
|
|
|
9
9
|
xinference/types.py,sha256=CEHiKrMT_a1xX38vxVxHIWgkLxRXaMkaXRrMI8E1D9Y,11637
|
|
10
10
|
xinference/utils.py,sha256=xMuOg3LZhTUf7inEhm-HmXCIoly0pHaWtMKMnnf8XGk,2273
|
|
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=QCJyPB3wpO1WhB47p6Ky_BUHrAP0tp_oPXtnNXfgKX0,102114
|
|
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,23 +18,23 @@ xinference/client/__init__.py,sha256=Gc4HOzAy_1cic5kXlso7hahYgw89CKvZSJDicEU461k
|
|
|
18
18
|
xinference/client/common.py,sha256=iciZRs5YjM2gYsXnwACPMaiBZp4_XpawWwfym0Iyu40,1617
|
|
19
19
|
xinference/client/handlers.py,sha256=HYmQjG0BPK5PKcWVEDJqQz5iLjS8yjOq5j-HP_CAi_k,630
|
|
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=QFAzEKvmkH7nzbOE1zRXkE3kGVXHlWYF2ge3ZEdsmfE,60273
|
|
22
22
|
xinference/core/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
23
23
|
xinference/core/cache_tracker.py,sha256=3ubjYCU5aZToSp2GEuzedECVrg-PR4kThTefrFUkb9g,6971
|
|
24
24
|
xinference/core/chat_interface.py,sha256=GbjCZgxv9t14r7-DK7G2tB5Xhuze8R4nLiB92D4mBjo,31174
|
|
25
25
|
xinference/core/event.py,sha256=42F38H2WOl6aPxp2oxX6WNxHRRxbnvYRmbt4Ar7NP4U,1640
|
|
26
|
-
xinference/core/media_interface.py,sha256=
|
|
26
|
+
xinference/core/media_interface.py,sha256=ZC_wnO_jtsUEuD9qncAK_LovpZdP86wSG_IX1dF0W3U,32049
|
|
27
27
|
xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
|
|
28
|
-
xinference/core/model.py,sha256=
|
|
28
|
+
xinference/core/model.py,sha256=gpmFyziU4_rlTr7YXTPXoU8Z2luX4nMtgbk8c4oZqoY,47889
|
|
29
29
|
xinference/core/progress_tracker.py,sha256=CNCc1ZVscvp-JJznPTYJDPuis7ya6ZothZUIalDcxDo,6798
|
|
30
30
|
xinference/core/resource.py,sha256=aTV89dmuKxw5JnwQglRkA2Wxu1EBLM5WjmLxITSXYgs,1808
|
|
31
31
|
xinference/core/scheduler.py,sha256=QLT0FD2ICxtXtg7stfs58Cy7hK_XOiN2GmKo8hBjKF0,15242
|
|
32
32
|
xinference/core/status_guard.py,sha256=VLhyqpobdclfyzcROqf4bmGDiKpuHllto316X3Z6Hrc,2860
|
|
33
|
-
xinference/core/supervisor.py,sha256=
|
|
33
|
+
xinference/core/supervisor.py,sha256=82oZAjaglpFIM0l7l9oJfHbQbcdxN_13V19ch9GhKcE,71466
|
|
34
34
|
xinference/core/utils.py,sha256=VgcvxpTr2Q8am3MoHp7JPjC7jLYlKX2kLVdBo2Q_fRo,10430
|
|
35
|
-
xinference/core/worker.py,sha256=
|
|
35
|
+
xinference/core/worker.py,sha256=B5XqADPjd3n14P2gzYJB9Jw3r-o_JDjOfkEDIb28kgc,60988
|
|
36
36
|
xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
37
|
-
xinference/deploy/cmdline.py,sha256=
|
|
37
|
+
xinference/deploy/cmdline.py,sha256=Q2OFxPSbkU98YbkD0wMpFQX0_vtm3zMDbBJ25tJjRX4,51257
|
|
38
38
|
xinference/deploy/local.py,sha256=sO3BcpEH9oCF87CxWVA4AXAYcfHGnrcop40ew5NOA2g,3979
|
|
39
39
|
xinference/deploy/supervisor.py,sha256=68rB2Ey5KFeF6zto9YGbw3P8QLZmF_KSh1NwH_pNP4w,2986
|
|
40
40
|
xinference/deploy/utils.py,sha256=gEU7mXID00bbi7PxE7iqJePpLhwvzjmgAHsEErKddp8,6623
|
|
@@ -42,31 +42,38 @@ xinference/deploy/worker.py,sha256=VQ71ClWpeGsyFgDmcOes2ub1cil10cBjhFLHYeuVwC4,2
|
|
|
42
42
|
xinference/deploy/test/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
43
43
|
xinference/deploy/test/test_cmdline.py,sha256=ozgVyvaa_AxRDbApu4o3qzOfVfF1wflMNtsJbudUwb8,9801
|
|
44
44
|
xinference/model/__init__.py,sha256=bCEwvKjoazBW8QZ5C5Hpfd5v_VTbWpXvo8IB9d4Qs70,1127
|
|
45
|
-
xinference/model/core.py,sha256=
|
|
46
|
-
xinference/model/utils.py,sha256=
|
|
45
|
+
xinference/model/core.py,sha256=KDvMMneUWMpfsxmKUc1y7_u83o1pUzBNtyLaYjFtAdQ,5083
|
|
46
|
+
xinference/model/utils.py,sha256=_gkUu037RpdYnkOUgqu2UCh8L4L0r3IKV64FpknAgzs,16068
|
|
47
47
|
xinference/model/audio/__init__.py,sha256=CY1JDmT3g3V3Ei3mx3uvHkHL3MKqG8fp0hsCHJymcKA,3330
|
|
48
|
-
xinference/model/audio/chattts.py,sha256=
|
|
48
|
+
xinference/model/audio/chattts.py,sha256=I53CcY52QYKLi2obc6tU-5fMbhUOZWryOOahs1xYBXE,4115
|
|
49
49
|
xinference/model/audio/core.py,sha256=C20tXJJBnK9HhkkomiybFaYys-s5bW-Y4RWkkFJ4Zjw,8108
|
|
50
|
-
xinference/model/audio/cosyvoice.py,sha256=
|
|
50
|
+
xinference/model/audio/cosyvoice.py,sha256=X4UNBQUWd87lX2STqDAb97UeXiO3KDRj5yR9NEFmFYA,7265
|
|
51
51
|
xinference/model/audio/custom.py,sha256=8GXBRmTtR-GY03-E91nlRGTIuabCRzlt20ecU6Un6Y8,4985
|
|
52
52
|
xinference/model/audio/f5tts.py,sha256=RyfEYVvKhV7JygIv4F45C8wBr-u0mx9WpXj3gIOtL7o,6809
|
|
53
53
|
xinference/model/audio/f5tts_mlx.py,sha256=SbYIo1C3EfZ8L30P7OTx0Dx7KuXIIpQKf8uZqR1e760,8527
|
|
54
54
|
xinference/model/audio/fish_speech.py,sha256=U1NtEhQFtzVYZ0vpx10EqBnqUz-hmx1ZTAzD9OSPskQ,6767
|
|
55
|
-
xinference/model/audio/funasr.py,sha256=
|
|
55
|
+
xinference/model/audio/funasr.py,sha256=kB65bxZCTxVdBdkGscwTSE2CxAHsI4X9CkrAIRjWTUY,5664
|
|
56
56
|
xinference/model/audio/kokoro.py,sha256=7gqMqsW9NW3xm9zOXbqB4y_1UmMnI5JCub14K3iyLL4,3729
|
|
57
57
|
xinference/model/audio/megatts.py,sha256=fA2_vbEZ1ggIh2xSGacnyp72Kn2TyQGfjxFlO_w-oGw,3369
|
|
58
58
|
xinference/model/audio/melotts.py,sha256=lJdOsce2mMOTQIslv6xq1JTEO7vC6Q9ga2xjY-_E7uw,3493
|
|
59
|
-
xinference/model/audio/model_spec.json,sha256=
|
|
60
|
-
xinference/model/audio/model_spec_modelscope.json,sha256=
|
|
61
|
-
xinference/model/audio/utils.py,sha256=
|
|
59
|
+
xinference/model/audio/model_spec.json,sha256=4skTIpSmpsrPnIToQB1gfFr_0WPNOpitsQMGuCzMOKU,13545
|
|
60
|
+
xinference/model/audio/model_spec_modelscope.json,sha256=3f0ByyURshg_pUOzsYx8xDy1iuj8gAGtmawk1P6UVSI,6142
|
|
61
|
+
xinference/model/audio/utils.py,sha256=r6-ySbhLQUxWJiAJhNrbVaEoCiPuwUQS7FHBOtyeRxc,4376
|
|
62
62
|
xinference/model/audio/whisper.py,sha256=NePQOYy2CnVqi7g6uY9hq5tlUIxZ995FOIOPsPZCfJ8,9058
|
|
63
63
|
xinference/model/audio/whisper_mlx.py,sha256=zBuCd7GUlsN9FC_-J11gqIkOCicihfbqxoabiXTvH2Q,7237
|
|
64
|
-
xinference/model/embedding/__init__.py,sha256=
|
|
65
|
-
xinference/model/embedding/core.py,sha256=
|
|
64
|
+
xinference/model/embedding/__init__.py,sha256=xBvmhGbVrIngpU4gJUcNSDX2-Uhtj3ro-DNg62UVYtU,5479
|
|
65
|
+
xinference/model/embedding/core.py,sha256=f-iLnsoQSxHUsKjdxA00528-ev3eB7ko_PX9xTHExzw,10541
|
|
66
66
|
xinference/model/embedding/custom.py,sha256=757KncqhsOWVypHZFtuhBP_xy-UTNaFdy0BuZRfuIV8,3848
|
|
67
|
-
xinference/model/embedding/
|
|
68
|
-
xinference/model/embedding/
|
|
67
|
+
xinference/model/embedding/embed_family.py,sha256=VGnLdB5DYLbAKmm-hPY7oKd5CinoYy2YPIRfNYLBfk4,5503
|
|
68
|
+
xinference/model/embedding/model_spec.json,sha256=nyGUY4FPT6jGiH65GfOQrr2LT9cIV2eqKlQ2S4v1rLo,7945
|
|
69
|
+
xinference/model/embedding/model_spec_modelscope.json,sha256=ErxjE0Y-VnxUUWqHAbyCZJxZHw1Hu1WgeEAZySscoYg,7021
|
|
69
70
|
xinference/model/embedding/utils.py,sha256=t_y-7TrYenJKzX3p8e8KWXyC66u7Kd7lMvSzEOolnZw,790
|
|
71
|
+
xinference/model/embedding/flag/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
|
|
72
|
+
xinference/model/embedding/flag/core.py,sha256=LNBac1r-Pde78tBPgbHx5rniyx3S0AvoZg0254PMajk,10874
|
|
73
|
+
xinference/model/embedding/sentence_transformers/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
|
|
74
|
+
xinference/model/embedding/sentence_transformers/core.py,sha256=lI4HBKfAWB56vNLzerPZf1pFNlJn09uWL5xX6YAvqmI,16518
|
|
75
|
+
xinference/model/embedding/vllm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
|
+
xinference/model/embedding/vllm/core.py,sha256=kH2mC3hSB527PCuL6tWYm88NqHdgR8zjfzfnSMOvMSA,3221
|
|
70
77
|
xinference/model/flexible/__init__.py,sha256=DUAfq9vaiXOfUJfP2WRfqDmGfMtKMqRE-wLETaJw4_w,1718
|
|
71
78
|
xinference/model/flexible/core.py,sha256=gxeVvKgiSiD7NKLw4FtmyPtWtSx6puW_W0TLJa9H4GQ,7363
|
|
72
79
|
xinference/model/flexible/utils.py,sha256=_GlEarRHKPAxT7o6N39VOd9sB580zKzdSktqjbdrNig,1145
|
|
@@ -76,8 +83,8 @@ xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRU
|
|
|
76
83
|
xinference/model/image/__init__.py,sha256=n_RhozCUaU8fn8ZGTkJ9EWRVPTOit7uGVIoTsjCafNs,2835
|
|
77
84
|
xinference/model/image/core.py,sha256=SYlUS-aTI3y5LvmWXivdEV5HbjY1Mpe-_kXge8E_4RE,13079
|
|
78
85
|
xinference/model/image/custom.py,sha256=5gjujQpJVTJ-pVB5LzBo4-bWKKOHzFlRaoRKJ_CuIUg,3769
|
|
79
|
-
xinference/model/image/model_spec.json,sha256=
|
|
80
|
-
xinference/model/image/model_spec_modelscope.json,sha256=
|
|
86
|
+
xinference/model/image/model_spec.json,sha256=fOJYJc918eVCBXWi4qitXUS6Vy84HMj4teOtMzbkdwU,10502
|
|
87
|
+
xinference/model/image/model_spec_modelscope.json,sha256=nM05DcrfFb6xYK2d0FyEfB5DBiqPK7WGqrYsG2Y1Sss,9636
|
|
81
88
|
xinference/model/image/sdapi.py,sha256=Xgdtnvw4Xwj1Nc0cBoDo_ogH6E2mFJqLvX0jSxxgdnA,5936
|
|
82
89
|
xinference/model/image/utils.py,sha256=sJCxC8iCS7r9sVY4edKz2DYaZ-ebq_t9HjL7fZMS8z8,2344
|
|
83
90
|
xinference/model/image/ocr/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
@@ -85,27 +92,27 @@ xinference/model/image/ocr/got_ocr2.py,sha256=N5Ux1dCtDMA25BBEmqiYNVKrk_HA-IPWch
|
|
|
85
92
|
xinference/model/image/scheduler/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
86
93
|
xinference/model/image/scheduler/flux.py,sha256=GHlpPfU5UxsiQWNyvNe9SaVZceNg_2CiF1oJUdCao5o,18830
|
|
87
94
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
88
|
-
xinference/model/image/stable_diffusion/core.py,sha256=
|
|
95
|
+
xinference/model/image/stable_diffusion/core.py,sha256=sTceL97g4qXz9ukPGIBmPkRGgMAvOJGh7RaqKlTvOcc,28091
|
|
89
96
|
xinference/model/image/stable_diffusion/mlx.py,sha256=GZsozzGB04NfHAdU9MI6gwWE1t_A-s_Ddn_ic8DlkKQ,7476
|
|
90
97
|
xinference/model/llm/__init__.py,sha256=Pm8hxP3E1m9-H-JaicIsUCvZ77uD0ClL0KvqcreO1aY,9137
|
|
91
98
|
xinference/model/llm/core.py,sha256=S8Ys69u6NWRjjHksBlGG50RPwHIDSQsUBiK-wRunfj0,10236
|
|
92
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
99
|
+
xinference/model/llm/llm_family.json,sha256=oL4aja5uZHaDetGKpEt8v0ZYG_GPQnpnMeGnA9Zyx10,412322
|
|
93
100
|
xinference/model/llm/llm_family.py,sha256=Nex1zvegUH1TvGjy8yILYiehY2QFOziRASGBlAa7wPg,44510
|
|
94
101
|
xinference/model/llm/llm_family_csghub.json,sha256=OYve65CgLVHdyTC3UMe7vqhFwC09OR7XhzDsVEpkJhY,6908
|
|
95
|
-
xinference/model/llm/llm_family_modelscope.json,sha256=
|
|
102
|
+
xinference/model/llm/llm_family_modelscope.json,sha256=7Zs4rW07xpvWfT_3bE6cjDsn_xu0wiXGE7JJD6yUjws,357641
|
|
96
103
|
xinference/model/llm/llm_family_openmind_hub.json,sha256=sAWzttUasckGzNdcBHhdxvXB893tBhnm__w_1hr6JXw,58243
|
|
97
104
|
xinference/model/llm/memory.py,sha256=GLNmXBI-AtMbuaJfEf50fnhN4rdbOZjLyT6L_Vjqa5g,10206
|
|
98
105
|
xinference/model/llm/reasoning_parser.py,sha256=L9BGzsQiTw8QY6BtQfdEGJmCL_RpnYR1MXBkczOS6SU,17184
|
|
99
|
-
xinference/model/llm/utils.py,sha256=
|
|
106
|
+
xinference/model/llm/utils.py,sha256=U8UpYQ-me31zRxE8dlGYpyGBVWI_zit7atFDDBXg9nc,36755
|
|
100
107
|
xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
101
108
|
xinference/model/llm/llama_cpp/core.py,sha256=ZyOZoKZAXX0tM511OdSbEdV_jPxzfJyQ60YdK_x-IbI,13737
|
|
102
|
-
xinference/model/llm/llama_cpp/memory.py,sha256=
|
|
109
|
+
xinference/model/llm/llama_cpp/memory.py,sha256=joneOU-Mn1l5KHXqeYThsJyh1DvAldheWsrlpdwjdXI,15658
|
|
103
110
|
xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
111
|
xinference/model/llm/lmdeploy/core.py,sha256=sLYhIzmIFv7IdPh2Ft8cC2_jCdJMQ2bBAzPpktDB3bA,19981
|
|
105
112
|
xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
106
113
|
xinference/model/llm/mlx/core.py,sha256=B3gO3wJNYAC6O5iVTHgSEBzjST3L90MrBd8taQSxSvc,24828
|
|
107
114
|
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
108
|
-
xinference/model/llm/sglang/core.py,sha256=
|
|
115
|
+
xinference/model/llm/sglang/core.py,sha256=6M6bVs2ESoTeG8ZlmDlCywu8b_2FI8dEYRhZAUxSazo,25397
|
|
109
116
|
xinference/model/llm/transformers/__init__.py,sha256=_4hQ7BvHNE4WAyzNcTB0_iY5mBcaPGTkLvQcWiylBoI,1724
|
|
110
117
|
xinference/model/llm/transformers/chatglm.py,sha256=RP1Kg5zWMUJyd4ScgzxUVEmsqS4---VkSdgKyGaQ_0M,22875
|
|
111
118
|
xinference/model/llm/transformers/core.py,sha256=fAE7vtclIQLaEk2AwMoPxjF3WhfmrJuZWOF2Pco2aDw,31019
|
|
@@ -127,7 +134,7 @@ xinference/model/llm/transformers/multimodal/qwen-omni.py,sha256=8qtBMU1jcXaEGo7
|
|
|
127
134
|
xinference/model/llm/transformers/multimodal/qwen2_audio.py,sha256=_T8rgg1U28PegijTMX3ycVm9m2xUMmB5yXPyCXNFYII,4678
|
|
128
135
|
xinference/model/llm/transformers/multimodal/qwen2_vl.py,sha256=45D95cxlJbw295cbZkN-20FxSiYxAarznqO0MK-_N4M,8541
|
|
129
136
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
130
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
137
|
+
xinference/model/llm/vllm/core.py,sha256=zBySypsJmJRy621Voc5bIdPcTOyCPo5b2wvYLUKy3yA,49629
|
|
131
138
|
xinference/model/llm/vllm/distributed_executor.py,sha256=wxIjZ9-TAr6kHqQAHInY3ZWJsLuno_CU0lXl1xP3W6I,11735
|
|
132
139
|
xinference/model/llm/vllm/utils.py,sha256=LKOmwfFRrlSecawxT-uE39tC2RQbf1UIiSH9Uz90X6w,1313
|
|
133
140
|
xinference/model/llm/vllm/xavier/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
|
|
@@ -144,16 +151,16 @@ xinference/model/llm/vllm/xavier/transfer.py,sha256=2IbaiAhRnJMwa9qsMa5bowngqfjx
|
|
|
144
151
|
xinference/model/llm/vllm/xavier/test/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
|
|
145
152
|
xinference/model/llm/vllm/xavier/test/test_xavier.py,sha256=lSfo4caaLdWRh0diJ1jd_sY85GV-_9BT40ySs_nirJQ,4695
|
|
146
153
|
xinference/model/rerank/__init__.py,sha256=yxxv4OOHCl3UUOLENP45Eghf_dEsRaCkUUcW5bth_NE,3141
|
|
147
|
-
xinference/model/rerank/core.py,sha256=
|
|
154
|
+
xinference/model/rerank/core.py,sha256=mHgPvnhkD9CO8Lp_k5rUI9OmmrTKe2NPeKL1pHDOk9A,19411
|
|
148
155
|
xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
|
|
149
|
-
xinference/model/rerank/model_spec.json,sha256=
|
|
150
|
-
xinference/model/rerank/model_spec_modelscope.json,sha256=
|
|
151
|
-
xinference/model/rerank/utils.py,sha256=
|
|
156
|
+
xinference/model/rerank/model_spec.json,sha256=GC0aD3vcMMBaPoYn74AL4FlkgDugX3z56eWNBfqqRhk,2705
|
|
157
|
+
xinference/model/rerank/model_spec_modelscope.json,sha256=lQ48VuQwokc564yKjYqCEPspW5EJryIJXtuo6crXKlQ,2211
|
|
158
|
+
xinference/model/rerank/utils.py,sha256=iwvoPbN4nli1ovm8-4aZj5WyJahtQnyDe6p4GEFP0zU,1183
|
|
152
159
|
xinference/model/video/__init__.py,sha256=K8zlxWsflB2vmIQgQJCttbudHvblKUSYkoBQcCZYO4k,1797
|
|
153
160
|
xinference/model/video/core.py,sha256=jrBLq1MwB8rI0Mny8mvHlQ8N91uSC_O4tbkjbKHcWjc,6205
|
|
154
|
-
xinference/model/video/diffusers.py,sha256=
|
|
155
|
-
xinference/model/video/model_spec.json,sha256=
|
|
156
|
-
xinference/model/video/model_spec_modelscope.json,sha256=
|
|
161
|
+
xinference/model/video/diffusers.py,sha256=SgZcPvUxbo1LWJDS46fd4NKQ8DR_hNk0PRJPbHhasQ8,15040
|
|
162
|
+
xinference/model/video/model_spec.json,sha256=YK9YFPBZ1buuoutvWciOZtrSv2dFjMu6ONhWmaenX34,4026
|
|
163
|
+
xinference/model/video/model_spec_modelscope.json,sha256=mPbuv9BYFTTad14j15_94zHxX9ZwcGkYIecj5n-sag0,3991
|
|
157
164
|
xinference/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
158
165
|
xinference/thirdparty/cosyvoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
159
166
|
xinference/thirdparty/cosyvoice/bin/average_model.py,sha256=82LeGlvQh8xFHA_T9fJJDBTtDhJ_UzukJJcFRjyjc9Y,3202
|
|
@@ -614,14 +621,14 @@ xinference/thirdparty/whisper/normalizers/english.json,sha256=Zgf5SL6YJNLhsvoiI8
|
|
|
614
621
|
xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc3yhvWzWuMhQzRnp2dM6IQdA,20868
|
|
615
622
|
xinference/web/ui/package-lock.json,sha256=Q3gwsjjCFtDjVg5Yk7s4jfMAZ1wiyFfS_TJCw3ECB64,762407
|
|
616
623
|
xinference/web/ui/package.json,sha256=iitsROb4-TLzxbOftXJqUGpp38TuPhzfLKy5n9THQYg,2081
|
|
617
|
-
xinference/web/ui/build/asset-manifest.json,sha256=
|
|
624
|
+
xinference/web/ui/build/asset-manifest.json,sha256=hlAGNAQtHKO2yM5_2842NBfLrVOoPw1MjLTcQ2ZGJEk,453
|
|
618
625
|
xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
|
|
619
|
-
xinference/web/ui/build/index.html,sha256=
|
|
620
|
-
xinference/web/ui/build/static/css/main.
|
|
621
|
-
xinference/web/ui/build/static/css/main.
|
|
622
|
-
xinference/web/ui/build/static/js/main.
|
|
623
|
-
xinference/web/ui/build/static/js/main.
|
|
624
|
-
xinference/web/ui/build/static/js/main.
|
|
626
|
+
xinference/web/ui/build/index.html,sha256=ABo9VzAvcwzkhN7wRyRyT3dv9rYBkRZl1CAnRDUi7aw,650
|
|
627
|
+
xinference/web/ui/build/static/css/main.013f296b.css,sha256=Aj4xU40JlOcnayucrFblYBa0t1da3X9S4e4gb_hgoFI,5289
|
|
628
|
+
xinference/web/ui/build/static/css/main.013f296b.css.map,sha256=XQBL1ac57PSMgV-USyLc7nq-jjTqQnwlVkac_CiTrhk,9953
|
|
629
|
+
xinference/web/ui/build/static/js/main.8a9e3ba0.js,sha256=RFPsXBsLZrtW0hlcd_8mdaJw3I8U9yz9fGBp056bQq4,1273058
|
|
630
|
+
xinference/web/ui/build/static/js/main.8a9e3ba0.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
|
|
631
|
+
xinference/web/ui/build/static/js/main.8a9e3ba0.js.map,sha256=OYzkOWJuKvOR63DOlWm-8GexuDMiSzguFcQ1m5rIolQ,5238609
|
|
625
632
|
xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
|
|
626
633
|
xinference/web/ui/node_modules/.package-lock.json,sha256=2kL1sQ4ZuDQilki9DnRFFM8CxT13fyGl3chLK6i3DQY,760261
|
|
627
634
|
xinference/web/ui/node_modules/.cache/babel-loader/00012b59e7dc64a18400bdddb660faa295258241c0b9cd15c78cdba63b858ed8.json,sha256=FhiSQ9MQv6bT7TkLBlXXskoaG2HCKhsuTXXlkDV-pM4,668
|
|
@@ -1539,9 +1546,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/12d34efbef62d08525e0b1a6521c7
|
|
|
1539
1546
|
xinference/web/ui/node_modules/.cache/babel-loader/12d3d3e61079713c82322e436d0d188274ec2e160489007b04facedfb18ca8ea.json,sha256=F7cO372aa6UfXXBG6QuddrY6WUkFhhNoINh4BDjgyFc,1344
|
|
1540
1547
|
xinference/web/ui/node_modules/.cache/babel-loader/12d9910498e04dc27f4dab7f101f23e9f78ab3ec0d52d9c9c5adbf0b0d56712b.json,sha256=CoiTG49zJlKULV2hoUgYoNDNx1GJn_EmKplC4fKsmHM,1696
|
|
1541
1548
|
xinference/web/ui/node_modules/.cache/babel-loader/12da966f84472c881ea980bec44b2e1e7f8b3609a98dafe32e1155143e27389e.json,sha256=jE273ShkPRoV1X5DlreHnbXzHV78nbUwyYL_6RyqDD0,1140
|
|
1542
|
-
xinference/web/ui/node_modules/.cache/babel-loader/12e02ee790dbf57ead09a241a93bb5f893393aa36628ca741d44390e836a103f.json,sha256=4r0SOuZcNrN4YOatbgAKUKEsJQoXtvv25gNKU1S-Pvo,80373
|
|
1543
1549
|
xinference/web/ui/node_modules/.cache/babel-loader/12e2171ec6f8c0ba2e6af95bf09fbdc6fb8d80bd4661ef95a555176c3bbb4c3a.json,sha256=wfkhMvhvaFkYfFDsimUk--86GdR2u_BbegRNcX4EzAo,1085
|
|
1544
|
-
xinference/web/ui/node_modules/.cache/babel-loader/12e637ed5fa9ca6491b03892b6949c03afd4960fe36ac25744488e7e1982aa19.json,sha256=hgWJy4BX7gYYLxbu3I_XreRXQktetHuj1zCwjbeymPY,39981
|
|
1545
1550
|
xinference/web/ui/node_modules/.cache/babel-loader/12ecd49fd7bb3daf76f2827e7a5e83e95de15031a6b619b855d4955b7a8c59ad.json,sha256=cfHM4rcbpjtUUjoRaDJmajfYPvn0MskDxsE8t-1_PJA,1902
|
|
1546
1551
|
xinference/web/ui/node_modules/.cache/babel-loader/12efca6ed9ec73bf07c46375e62cbc63c302cb4c4ff10a06b1d0f99314f7b3aa.json,sha256=DJDWAbnYdNF_eJ4CORn7K2UAtrpOzcdq_RxxxSIBZUo,1193
|
|
1547
1552
|
xinference/web/ui/node_modules/.cache/babel-loader/12fd6ed6006d6b8b1390b68853450bcf7c7515550f5d7b3fa298f1004f5abb86.json,sha256=Z1WATGF-Kb3c7rbujoVbB9GlO0rSLgiQJmiXX5ICJDA,2332
|
|
@@ -3148,6 +3153,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/34c0e34259ffc5df01814b52daf28
|
|
|
3148
3153
|
xinference/web/ui/node_modules/.cache/babel-loader/34c1cd759988f01f2fdf45642bdad0720c5d60dbfa0e793634032fccfc5d2698.json,sha256=0_dDJmE9y6CqqronBLkAWpi1B3afQaAW7xcyZCSQkf0,1577
|
|
3149
3154
|
xinference/web/ui/node_modules/.cache/babel-loader/34c48e7a0b92885bdc0f2d2113e0a54ca3aec284cf637ea4bffe5846776d1e88.json,sha256=UdqW_Udg3miFg42iw4ua5cHmSkwhpYE2rkuTxL7roc4,1610
|
|
3150
3155
|
xinference/web/ui/node_modules/.cache/babel-loader/34c7d7fc1231ba66768f56c96b93920ab870e94d3365928a11108f9ca318c108.json,sha256=FvCq-tdrQ5r_7Z7c10J6oLszJk4EIgUgwdnoYbgzCgM,1780
|
|
3156
|
+
xinference/web/ui/node_modules/.cache/babel-loader/34cfbfb7836e136ba3261cfd411cc554bf99ba24b35dcceebeaa4f008cb3c9dc.json,sha256=_juiPNeuC5OxFV9SmCSrzgbkb5z8YVEnTMP5RoOSeOI,250956
|
|
3151
3157
|
xinference/web/ui/node_modules/.cache/babel-loader/34e65a7bd1d0f722ad0a2d6996100f4489f5d174bffb0793f2d4f361e09429df.json,sha256=l91h2KzvlPyMd9Pae21W0ZgYpDoc7oYO6-EFrxKaXK0,1311
|
|
3152
3158
|
xinference/web/ui/node_modules/.cache/babel-loader/34f1ccc161cb97d551419cf9d24ccaa37c4bdf612f2409bf43d7425c9f7faa04.json,sha256=m7mqtLcCzq-f7MK6spOwrP4tv2zt0eJNbCwljAf_J24,1065
|
|
3153
3159
|
xinference/web/ui/node_modules/.cache/babel-loader/34fb8aee5a64caf0087efa5a45f92f47d4eaabacd8efbb30c3aeebe392d17256.json,sha256=wFcZ_LQ8A5ART_2yO-ifvQ1WV0IbNrGW3x45_HzWZO4,2006
|
|
@@ -4682,6 +4688,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/559d27dabfbcdc55a7ebe61b09491
|
|
|
4682
4688
|
xinference/web/ui/node_modules/.cache/babel-loader/55a9c2277a0102891ae07913a82e851fc24af716434e29072bc76c118692ccf5.json,sha256=-CpcKqJaCBMu9IVtxCsexlrbt7GHFQpRH13Pn4tzTjY,1579
|
|
4683
4689
|
xinference/web/ui/node_modules/.cache/babel-loader/55acb00d485161d48790aa89de340bd030be95063fd147f9bd8d6221c0dfaa6c.json,sha256=cjxCY6DJrN9teANN6aCo3L-x2c6RlLr_0-vX_qmhUiU,1318
|
|
4684
4690
|
xinference/web/ui/node_modules/.cache/babel-loader/55af14ca855ca33394ee6311eee2c0879452ec3b3a3954d7319861fdadf57a07.json,sha256=C-WmB8WIBxWMSE6zqeL-qpllGIHxx3OkF0kv2ugiSCg,1616
|
|
4691
|
+
xinference/web/ui/node_modules/.cache/babel-loader/55b9fb40b57fa926e8f05f31c2f96467e76e5ad62f033dca97c03f9e8c4eb4fe.json,sha256=N7iTRMWWL3FHJD2DKU7EJst1ZAbj1XCyACq-V-_0EO0,7069
|
|
4685
4692
|
xinference/web/ui/node_modules/.cache/babel-loader/55bbae6525181d3c6704b2fe14514864cda9d348a4d51987124e4e8ce9831f82.json,sha256=UE5wF5zv4w2s8jokXtz60ZRCtRYUDcyjH6i5uatTtg0,1771
|
|
4686
4693
|
xinference/web/ui/node_modules/.cache/babel-loader/55c44376372eaf65fb31320b448d905b46302e1b452049a0f6e762361ffd3dc0.json,sha256=KM1ZYenb6D_ZyD97JUuBU-w7dp7BAOcFP3rYycF5www,3305
|
|
4687
4694
|
xinference/web/ui/node_modules/.cache/babel-loader/55ca0374b801a23d3ea1693207825dbac90ca5bf2aea586e9de290c384eafb2f.json,sha256=V2YfDbz4L8EjcZb9GVFh8zrt-UM24cw1C-etQi8Pcgc,1035
|
|
@@ -5446,6 +5453,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/6566dfc5a33fad44ed9dd78a2c383
|
|
|
5446
5453
|
xinference/web/ui/node_modules/.cache/babel-loader/656f489bf964d24157110011dcc6294480091948e8cf004c823511591d29e663.json,sha256=nl7Mz7hYPq4uJQPB4eGP_lYpTFkt5u0FJlJL8e1DJ-g,4260
|
|
5447
5454
|
xinference/web/ui/node_modules/.cache/babel-loader/658403f52e180d22b86380ed08c212412d3d219c8d42580378c7d98b117d0d70.json,sha256=__i7Y5ba1S4yAu3Vl7pUgepytITOYp-dJk-tSd5iXiA,1601
|
|
5448
5455
|
xinference/web/ui/node_modules/.cache/babel-loader/6591191dae1972294393a52502081f81308f7be12a3cfff3dc22390831d4b00b.json,sha256=0bECpitb_-Nc9vOTepU0jEopCPP6-LmAnMc_zfQiD4A,1916
|
|
5456
|
+
xinference/web/ui/node_modules/.cache/babel-loader/6595880facebca7ceace6f17cf21c3a5a9219a2f52fb0ba9f3cf1131eddbcf6b.json,sha256=Yvsk_2SLWyUvNIWSP9-JLCAYtdKeyzUFYgCCjApW9yg,80184
|
|
5449
5457
|
xinference/web/ui/node_modules/.cache/babel-loader/659a74bb4a9675dcad2273c5012e0d0b1a6333f01d8b2599af8891added03842.json,sha256=aD_LQrX3VFvajW8G2_uw0_KlWF5oqMjaML2bm0V3MoA,1439
|
|
5450
5458
|
xinference/web/ui/node_modules/.cache/babel-loader/65a47b23d61ef5940317995b85ea22c270d7b7db1b09c3960f141770f71e64fe.json,sha256=oAxTHuxe-V7mDg1fu60BE57WiuJ_R9DePoYb3dfO6hg,1462
|
|
5451
5459
|
xinference/web/ui/node_modules/.cache/babel-loader/65a74af16639a8a5847c5cba8d90484c338f92c2f77ffccf28dbd4dfdfb9136e.json,sha256=SWpnQGS35mE46duGDVHztaFrutNm9T3exW8XvYoQu9A,2685
|
|
@@ -6291,7 +6299,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/7791a7694e2c1396f7737c7253507
|
|
|
6291
6299
|
xinference/web/ui/node_modules/.cache/babel-loader/7794f7cefee8fc6af99d1cd5b89bd75f02b6e3ca1c9bab57e9e68382ab51d85a.json,sha256=gGs3be8jIl_j4wf1BoxqNLi9xFwrloImFtfrQhSIFdI,991
|
|
6292
6300
|
xinference/web/ui/node_modules/.cache/babel-loader/77992d1ebf5aa51abc4fb18b21ad653dd04688b3bebe809f2c24b10762bb102b.json,sha256=FKwKmPIHhJIenn_hD4GKbXBH_7Oc0JWNvMp_go7os6E,1377
|
|
6293
6301
|
xinference/web/ui/node_modules/.cache/babel-loader/77a3f24262c9b2499b7c21b78707e17a2abf55879bac2347839afbb05d78f0f6.json,sha256=3X-aj7UYjFzdkCCEBev11QjnjEUwwpVGa3_3u6-g5jQ,955
|
|
6294
|
-
xinference/web/ui/node_modules/.cache/babel-loader/77ac2665a784e99501ae95d32ef5937837a0439a47e965d291b38e99cb619f5b.json,sha256=zcPqr05eENrYA7OA-BsPQ6q_JD4f9T63zrOzmhU_h9o,6836
|
|
6295
6302
|
xinference/web/ui/node_modules/.cache/babel-loader/77ade097d6cf2a9d102d93853c65b3777c5a79e7f74b7674b2f0b6a94ae6460c.json,sha256=pX5nwRWcxhcMQagCcEN3Gc0URXL8LLodEsD7se9dSt0,1695
|
|
6296
6303
|
xinference/web/ui/node_modules/.cache/babel-loader/77af8572e3869ee486c6691a109d8a5f1ba4819f7c5a54b49eaa732bcc1c1684.json,sha256=7Kqesspl57R_ZS7nXB_s41_paAQA2URx9X4OppRYo44,1258
|
|
6297
6304
|
xinference/web/ui/node_modules/.cache/babel-loader/77b106bfdc081b40e6dc5dacd76b29a6168a5872adec93a26ebfc8ecb2495e33.json,sha256=7eI_VQMOFpwE71rDsiKsEP5887VHcfvxbjXr4ONRGT8,1095
|
|
@@ -8775,6 +8782,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/aa8a96bf1acf4c48ff048ddeb6912
|
|
|
8775
8782
|
xinference/web/ui/node_modules/.cache/babel-loader/aa90a28d1322ce7ce67acd12bab888e87e6d447aa3e79260f21f4f8e38275319.json,sha256=fIlWxSE8NdYW9sYZDXcXJMaZJKlIdKTjOjgQR5bC19Y,11657
|
|
8776
8783
|
xinference/web/ui/node_modules/.cache/babel-loader/aa92e669133de9a5c8be7fafd5955b0100728d2c9dc9b08903a560318c5a4eb6.json,sha256=lBgEU0OOYy9vBZKh70yyt99OKfsyQcpGaImI1pN_fcs,1374
|
|
8777
8784
|
xinference/web/ui/node_modules/.cache/babel-loader/aa9495add75aada7b897e8d05dc4ab66dac5d6c1b3cf6b72433b6475353fc373.json,sha256=vPn4yJyZD_Mzqo8l7uZaK7RfpCqqd2qS1T4kNjyhBW4,2917
|
|
8785
|
+
xinference/web/ui/node_modules/.cache/babel-loader/aa998bc2d9c11853add6b8a2e08f50327f56d8824ccaaec92d6dde1b305f0d85.json,sha256=J8SokuKqIK_Zsk8WGUogX4v24-lkYOp0PkLah49p88g,7378
|
|
8778
8786
|
xinference/web/ui/node_modules/.cache/babel-loader/aa9fdbd2981e6aa98a209d25362b1e04b90bec8805a40660121100bd1f28e8af.json,sha256=LludNYX9GawnnxYJPfnCKnWKzvYiUdEXbqYCwixuTsE,1740
|
|
8779
8787
|
xinference/web/ui/node_modules/.cache/babel-loader/aaacaa5dcc7edf4cac1f4120c09adcb63b554b7ccf725f3fded33d173d5e44cf.json,sha256=taiWnDXECfE6L8BNTQZCAiby11DOvvuSGfLOmwvrRJQ,1922
|
|
8780
8788
|
xinference/web/ui/node_modules/.cache/babel-loader/aaae4a2b2d497794db20af70803833af0e98392568cbb401f42c49c919a2ba3b.json,sha256=Jx3v6SyBx8ge6WUDIkWoS4wBkavRS4_DvemXzDIvfGk,2152
|
|
@@ -10103,6 +10111,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/c738e051684be15d22fbd3d9000b9
|
|
|
10103
10111
|
xinference/web/ui/node_modules/.cache/babel-loader/c73d6372db844c2187095314384331d484eadd504311b74f5fd49d87bc0459e4.json,sha256=95C3ZLj-U5Sgiqvr1G2msKC9dKLMF25VH-Fw9isQ0BY,1044
|
|
10104
10112
|
xinference/web/ui/node_modules/.cache/babel-loader/c74135edf0d6b094f002fa503d78376b5f1bffcb4795bd0072ba99ceb8506204.json,sha256=JZG3GwJwN2WISEzBaE-mSDRyczd4CJqAXyIxYqL5B8g,1767
|
|
10105
10113
|
xinference/web/ui/node_modules/.cache/babel-loader/c745b07e778e91dd4be990e746f2d92487b7f703e866a87550b5d17d23878b47.json,sha256=Fd1gVpx0Tf9ixvGze73zOXP7PJB6GVJVSAgnkdWdllw,1209
|
|
10114
|
+
xinference/web/ui/node_modules/.cache/babel-loader/c748246b1d7bcebc16153be69f37e955bb2145526c47dd425aeeff70d3004dbc.json,sha256=KVumA8-63Cu0LeejQ-MRmsg_MeP6YNHSa2zALOjQXQk,38812
|
|
10106
10115
|
xinference/web/ui/node_modules/.cache/babel-loader/c74cba0dafe1c86efb82c3e611089436a7f6355758468db0d1066e0d38c1dbf8.json,sha256=rCiPL-Dx1BdRRbZTRH63aboE1I-9Dwrb6zOCarfgLvI,1577
|
|
10107
10116
|
xinference/web/ui/node_modules/.cache/babel-loader/c751bdd8d984490b5aa3292958d58f22c9824dd45988bc3d75e23d872022b303.json,sha256=woQWvkYLgwzAItmvcWAInmi12srEZsE5mCu1CAvhhhw,1927
|
|
10108
10117
|
xinference/web/ui/node_modules/.cache/babel-loader/c758962fd9ff084cfe8d1f0188c14e3fed2cda0472125daa22a1a2a62673be6d.json,sha256=iiU5sKhqgov-0WYUAKFgaiYOKNFA6CPeH1CmtX3HvH8,1557
|
|
@@ -10784,7 +10793,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/d4c349478b310cdd73d6266ff80c3
|
|
|
10784
10793
|
xinference/web/ui/node_modules/.cache/babel-loader/d4c98f0bbda372ae967f09be6f47d3a4026d97ade4f22c6cbb98b4f4f7e40590.json,sha256=Bjy57VDT1cx4EkORCyEqLbrn3fd5aEqfzOa6JafKR8c,2250
|
|
10785
10794
|
xinference/web/ui/node_modules/.cache/babel-loader/d4cc27c8dac7a6374f85a187e3a2378a81840edb433a87dfa5cda2725dbf04c0.json,sha256=8GxLQINBQL-YumutGe21PoFk_xTnGJdB5WPlHgs3yVo,1036
|
|
10786
10795
|
xinference/web/ui/node_modules/.cache/babel-loader/d4d61a537c45c4506a6b7e3478206b71dc96e0c6c6410cef9b5d2f47018bc578.json,sha256=T-dHLL1EpIt82sRujiv5OInlCDt6h71VXYmsbk45PHM,411
|
|
10787
|
-
xinference/web/ui/node_modules/.cache/babel-loader/d4ed4e82bfe69915999ec83f5feaa4301c75ecc6bdf1c78f2d03e4671ecbefc8.json,sha256=E8mdqDC6SJpMxgs0r_1XmgPFCaMrhqxMqeNdqL-BWMc,247134
|
|
10788
10796
|
xinference/web/ui/node_modules/.cache/babel-loader/d4f81b94b15ddb008997a41b136ca6e2d5b3d753863a8d52d22de4a5d25cf8aa.json,sha256=JIu5gZOXaZtfLCpqYeHB4-jLtWOixTKaHSpmjD7-H00,1397
|
|
10789
10797
|
xinference/web/ui/node_modules/.cache/babel-loader/d4f8f9cc5b049595da9a6aa31c46e20e4699f48f100f84ceae14d4311fb34328.json,sha256=eBHBNNKPuRwIt4Kx8L2FM51vMkKkzeB3B1MuwL70CAs,1368
|
|
10790
10798
|
xinference/web/ui/node_modules/.cache/babel-loader/d4fd09806da5a09cd61f54d6e74efc984af4f8a86ca8cd1cbcf558bbbbcb4238.json,sha256=xb1bMCpMKmfDB5OziPAbpWmb8ek2Bg3qlMRIOf5bFOI,1171
|
|
@@ -11144,7 +11152,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/dc106fd5eca2e1e1d9ff521802adc
|
|
|
11144
11152
|
xinference/web/ui/node_modules/.cache/babel-loader/dc123ef902ae1bb7586b4b70c4201089358e6ff622f42b410fa82a13cc38b315.json,sha256=EYShIG-XnH_fu-xIvyhMrpSfsDmI9lkHhwE_-ECLtD8,1298
|
|
11145
11153
|
xinference/web/ui/node_modules/.cache/babel-loader/dc16895830c47107867d8e75948385c255e20e8fb03a764655a25006f6bb3423.json,sha256=3Yi6y0LQHAgP_FXZhI3fIB4XuC0r2UO_XJjO7VoNLpI,1295
|
|
11146
11154
|
xinference/web/ui/node_modules/.cache/babel-loader/dc197e00c2829779b4d2c7a719246313c3e5c4a94970acd26ed0e52ec144d8b1.json,sha256=6_bRqrA1hqhb96xl-KNl0OsjhRSD2PB6Uco2v1ooZtQ,1468
|
|
11147
|
-
xinference/web/ui/node_modules/.cache/babel-loader/dc249829767b8abcbc3677e0b07b6d3ecbfdfe6d08cfe23a665eb33373a9aa9d.json,sha256=l01XQAykRnJByqiQzw_2XWwPhTbIUvWYWvyRjs9B4Qc,5082
|
|
11148
11155
|
xinference/web/ui/node_modules/.cache/babel-loader/dc320ecc40a5d7a5c27f1ad6b549f2c1c27dd0d2020ec006d8299acb5a28034b.json,sha256=2bufTSrhZekl4aWqPKp-UcRWO0XwjvSQCkmilf6kiC0,528
|
|
11149
11156
|
xinference/web/ui/node_modules/.cache/babel-loader/dc345700ee479411b8cb72fe5383eb1a548496737cdcd763f19b400ec8b74341.json,sha256=NT8J2U0aMmh7oOtPoQ6GNt3RcWYCtkikp1DGJotDSyg,1149
|
|
11150
11157
|
xinference/web/ui/node_modules/.cache/babel-loader/dc354a282ba6605953d9b1bdb12ea78f905ca709cdc4773b276d28d9ae940b79.json,sha256=ckcCdORBgbXu1M2ytktW66az1wN3exW_XmOZGe0ZD6c,1403
|
|
@@ -11495,6 +11502,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/e2f19bedaa1397ca8c31e8b7e90f9
|
|
|
11495
11502
|
xinference/web/ui/node_modules/.cache/babel-loader/e2f4486ff5e66f541b30b2f3e70500dc52298fdc52d42e088c146f9f5ba8e983.json,sha256=G07bTL1I6eA-ZZP4Bz3XxaerpvX5e9xzwsZK_XWqNCA,1130
|
|
11496
11503
|
xinference/web/ui/node_modules/.cache/babel-loader/e2f7de88b619a3250db7fc9ec3d66d19031d5c9ca27637e84efd0b4a5d743337.json,sha256=ZU3AWHua-rdquERt4jOPetYOJhtM4VmJhGP8n41eeKg,1369
|
|
11497
11504
|
xinference/web/ui/node_modules/.cache/babel-loader/e30edf3ec56413d10ae09f7cddec169aad4a93f4a29c20216ab885727c1c1e0d.json,sha256=tK8iXMPgYXD64SXqEs6soz3xCoVdlesfDwetu2O1uXA,2149
|
|
11505
|
+
xinference/web/ui/node_modules/.cache/babel-loader/e31234e95d60a5a7883fbcd70de2475dc1c88c90705df1a530abb68f86f80a51.json,sha256=STItZHq9nkCel44udCaoE5Bg1eTp0YLK0lkMRje-LRA,2370
|
|
11498
11506
|
xinference/web/ui/node_modules/.cache/babel-loader/e3172ea950a5e0cf552f5c35d01bc5d5599fe5bcb6484843cdf0b82d8c02bd34.json,sha256=jALlzMUIUMlyB-DRRqksHGFeC-vygHGSvZh7tleWC0g,1867
|
|
11499
11507
|
xinference/web/ui/node_modules/.cache/babel-loader/e319f32dabe3fe92129b311658327427920680d6dcc3389d1bde62c010821294.json,sha256=HyKcGeN7tIMew-oxC4P9L0lQuRBAK8KAOPkZHkyHnOk,1625
|
|
11500
11508
|
xinference/web/ui/node_modules/.cache/babel-loader/e326a59a6026d0ee4e18ea60af36bed080e6afa5ee8f24d69310393c73bffeab.json,sha256=n7wpwl0J5ZzgyOf5ZXPlXtczyzofJilY4mnMcpbLsKU,1315
|
|
@@ -12559,7 +12567,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/f90a06d01c6f49f96be6d8dacfc05
|
|
|
12559
12567
|
xinference/web/ui/node_modules/.cache/babel-loader/f91151b4dcbd0d780192d755f7ee7c0280b0dd9aa444b571fb8ce88ef727de79.json,sha256=xmTm3VW2LlE2lwVhSjb0iyZ1ReRvsfPZh0v2-5rs47Y,1206
|
|
12560
12568
|
xinference/web/ui/node_modules/.cache/babel-loader/f913b95f47b5f73b60d3225502f1fa19d867d96b178233c25be3eac617751d58.json,sha256=eGrTDp2tjukVtFqTpX_qlCcuRQT5WNqX0CLFnKJp3rU,1286
|
|
12561
12569
|
xinference/web/ui/node_modules/.cache/babel-loader/f915d6d3c96981f18174e40ad3b5f6bbbbceb35946c3ab3241a610a3226e041d.json,sha256=0Bx8VqX1eEtyk52RbgfnaiGKx3xAmpxxudQ513Fb6Ss,1950
|
|
12562
|
-
xinference/web/ui/node_modules/.cache/babel-loader/f91af913d7f91c410719ab13136aaed3aaf0f8dda06652f25c42cb5231587398.json,sha256=cTEPhC7FyLDe94nRu6iQdtn_ugc2gvUxLJWQEIZDXe0,1963
|
|
12563
12570
|
xinference/web/ui/node_modules/.cache/babel-loader/f91e3dda1729ea500805fa915a019aada9ce8ea66b7402ca3002c36b7028d50f.json,sha256=dj7lf4L5Q_yXb7Rj3Za9KPdeGWTSwAhMZFh5dKXrRmY,1184
|
|
12564
12571
|
xinference/web/ui/node_modules/.cache/babel-loader/f9232fc4d716e454755ff231179f4454f48b695cc8c14c56d37c762a070ff795.json,sha256=kQe9d4Ecmeh0THYN-QHOYV1KLo6g-yGMiJowmuLRUqU,1508
|
|
12565
12572
|
xinference/web/ui/node_modules/.cache/babel-loader/f927a20c8492729544398c53966284f24919cab7a18547fd6eacaab85262d54b.json,sha256=87NbVzZ8TS_wfXQ2Zi575BvghSCzPPkP3YmOE5b4-Uk,1277
|
|
@@ -15767,11 +15774,13 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15767
15774
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15768
15775
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15769
15776
|
xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
|
|
15770
|
-
xinference/web/ui/src/locales/en.json,sha256=
|
|
15771
|
-
xinference/web/ui/src/locales/
|
|
15772
|
-
xinference
|
|
15773
|
-
xinference
|
|
15774
|
-
xinference-1.
|
|
15775
|
-
xinference-1.
|
|
15776
|
-
xinference-1.
|
|
15777
|
-
xinference-1.
|
|
15777
|
+
xinference/web/ui/src/locales/en.json,sha256=R7JpAE_lXcF4j1ryOghE0_B8Y2Q0zIrax_vNjElUm48,9769
|
|
15778
|
+
xinference/web/ui/src/locales/ja.json,sha256=nh-gFRtTpZAmTJNBa00cYfv6ftpR2FcI4ZmQZ0Y-ezc,11454
|
|
15779
|
+
xinference/web/ui/src/locales/ko.json,sha256=MJOPJFagJdjgLDb5g3kaSBEWmH5zF03QeLWhayGo_iQ,10333
|
|
15780
|
+
xinference/web/ui/src/locales/zh.json,sha256=7NRqta9ipMdoe19Zdp0-MGqbiiTxDoRopM1o2EOWb54,9424
|
|
15781
|
+
xinference-1.7.0.post1.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
15782
|
+
xinference-1.7.0.post1.dist-info/METADATA,sha256=DAz2hgr8ToiguCmFIiTH13uFar15QjhyyQ7LCj9FFxo,26056
|
|
15783
|
+
xinference-1.7.0.post1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
15784
|
+
xinference-1.7.0.post1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
15785
|
+
xinference-1.7.0.post1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
15786
|
+
xinference-1.7.0.post1.dist-info/RECORD,,
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
.container{cursor:pointer;display:block}.container,.descriptionCard{border-radius:20px;height:300px;position:relative;width:300px}.descriptionCard{left:-1px;padding:20px;top:-1px}.cardTitle{display:flex;justify-content:space-between}.iconButtonBox{align-items:center;display:flex}.drawerCard{min-height:100%;padding:20px 80px 0;position:relative;width:60vw}.p{-webkit-line-clamp:4;-webkit-box-orient:vertical;display:-webkit-box;font-size:14px;overflow:hidden;padding:0 10px;text-overflow:ellipsis;word-break:break-word}.pasteText{color:#1976d2;cursor:pointer;font-size:18px!important;margin-inline:10px}.pasteText:hover{color:#1976d2b3}.copyToCommandLine{color:#1976d2;cursor:pointer;font-size:16px!important}.copyToCommandLine:hover{color:#1976d2b3}.formContainer{height:80%;overflow:scroll;padding:0 10px 160px}.buttonsContainer{bottom:50px;left:100px;position:absolute;right:100px}.buttons{align-items:center;display:flex;gap:20px;justify-content:space-between}.css-1be5mm1-MuiLinearProgress-root-MuiMobileStepper-progress,.css-r5rjnf-MuiLinearProgress-root-MuiMobileStepper-progress{width:100%!important}.instructionText{color:#666;font-size:12px;font-style:italic;margin:30px 0;text-align:center}.iconRow{bottom:20px;justify-content:space-between;left:20px;position:absolute;right:20px}.iconItem,.iconRow{align-items:center;display:flex}.iconItem{flex-direction:column;margin:20px}.boldIconText{font-size:1.2em;font-weight:700}.muiIcon{font-size:1.5em}.smallText{font-size:.8em}.dialogBox{height:607px;margin:32px;overflow-x:scroll;width:1241px}.dialogTitle{display:flex;justify-content:space-between;padding:20px 20px 7px}.dialogTitle-model_name{font-size:18px;font-weight:700}.pathBox{cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:160px}.pathBox2{width:300px}.empty{color:#555;font-size:20px;left:50%;position:absolute;top:30%;-webkit-transform:translate(-50%);transform:translate(-50%)}.deleteDialog{align-items:center;display:flex}.warningIcon{color:#ed6c02;margin-right:10px}.jsonDialog{border-radius:8px;color:#000;display:flex;flex-direction:column;padding:10px 30px}.jsonDialog-title{align-items:center;display:flex;justify-content:space-between;margin:10px 0 20px}.title-name{font-size:16px;font-weight:700}.main-box{height:500px;width:700px}.but-box{display:flex;justify-content:end;margin-top:20px}.drawer{bottom:0;left:0;opacity:0;position:fixed;right:0;top:0;transition:visibility .3s ease,opacity .3s ease;visibility:hidden;z-index:1000}.drawer.open{opacity:1;visibility:visible}.drawer-overlay{background-color:rgba(0,0,0,.5);left:0;z-index:999}.drawer-content,.drawer-overlay{bottom:0;position:absolute;right:0;top:0}.drawer-content{background-color:#fff;box-shadow:-2px 0 10px rgba(0,0,0,.1);overflow-y:auto;-webkit-transform:translateX(100%);transform:translateX(100%);transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;z-index:1000}.drawer.open .drawer-content{-webkit-transform:translateX(0);transform:translateX(0)}.textHighlight .MuiInputBase-input,.textHighlight .MuiSelect-select{color:#1976d2}.copyText{color:#666;cursor:pointer;font-size:14px!important}.copyText:hover{color:#1976d2}.formBox{max-height:80vh;max-width:50vw;min-width:50vw;overflow:auto;padding:40px 20px 0 0;position:relative;transition:all .4s ease-in-out}.broaden{max-width:100%;min-width:100%;padding-right:0}.show-json{align-items:center;display:flex;right:60px;top:90px}.icon,.show-json{position:absolute}.icon{cursor:pointer;margin-left:20px;right:-40px}.icon:hover{color:#1976d2}.arrow{font-size:24px!important}.jsonBox{min-height:80vh;position:relative;transition:all .4s ease-in-out;width:100%}.hide{overflow:hidden;-webkit-transform:translate(30vw);transform:translate(30vw);width:0}.checkboxWrapper{align-items:center;display:flex;flex-wrap:wrap;width:100%}.jsonBox-header{align-items:center;display:flex;justify-content:space-between}.jsonBox-title{font-weight:700;line-height:40px}.textarea{background-color:initial;border:1px solid #ddd;border-radius:5px;color:#666;height:calc(100% - 40px);padding:5px 10px;resize:none;width:100%}.addBtn{margin-left:20px!important}.item{border:1px solid #ddd;border-radius:10px;margin:10px 50px 0;overflow:hidden;padding:20px;position:relative}.item:hover .deleteBtn{-webkit-transform:translateX(-50px);transform:translateX(-50px)}.deleteBtn{background-color:#1976d2;border-radius:25px;height:50px;line-height:70px;position:absolute;right:20px;text-align:center;top:calc(50% - 25px);-webkit-transform:translateX(80px);transform:translateX(80px);transition:all .3s ease-in-out;width:50px}.deleteBtn:hover{box-shadow:0 0 10px #aaa;cursor:pointer}.deleteIcon{color:#fff;font-size:28px!important}.chat_template_box{align-items:start;display:flex;gap:10px}.chat_template_test{width:30%}.chat_template_test_mainBox{border:1px solid #ccc;border-radius:4px;height:137px;overflow:scroll;padding:10px}.chat_template_test_tip{color:rgba(0,0,0,.6);font-size:10px;margin:4px 14px 0}.test_res_box{border:1px solid #ddd;border-radius:4px;margin-top:5px;min-height:55px;padding:10px}.css-19qh8xo-MuiInputBase-input-MuiOutlinedInput-input.Mui-disabled{-webkit-text-fill-color:#000!important}
|
|
2
|
-
/*# sourceMappingURL=main.337afe76.css.map*/
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"static/css/main.337afe76.css","mappings":"AAAA,WAKE,cAAe,CAJf,aAMF,CACA,4BAFE,kBAAmB,CAFnB,YAAa,CAFb,iBAAkB,CAClB,WAaF,CARA,iBAGE,SAAU,CAGV,YAAa,CAJb,QAMF,CACA,WACE,YAAa,CACb,6BACF,CACA,eAEE,kBAAmB,CADnB,YAEF,CACA,YAGE,eAAgB,CADhB,mBAAoB,CADpB,iBAAkB,CAGlB,UACF,CACA,GAEE,oBAAqB,CACrB,2BAA4B,CAF5B,mBAAoB,CAMpB,cAAe,CAHf,eAAgB,CAIhB,cAAiB,CAHjB,sBAAuB,CACvB,qBAGF,CACA,WAEE,aAAc,CACd,cAAe,CAFf,wBAA0B,CAG1B,kBACF,CACA,iBACE,eACF,CACA,mBAEE,aAAc,CACd,cAAe,CAFf,wBAGF,CACA,yBACE,eACF,CACA,eACE,UAAW,CACX,eAAgB,CAEhB,oBACF,CACA,kBAEE,WAAY,CACZ,UAAW,CAFX,iBAAkB,CAGlB,WACF,CACA,SAGE,kBAAmB,CAFnB,YAAa,CAGb,QAAS,CAFT,6BAGF,CAIA,2HACE,oBACF,CACA,iBAEE,UAAc,CADd,cAAe,CAEf,iBAAkB,CAClB,aAAc,CACd,iBACF,CACA,SAEE,WAAY,CAIZ,6BAA8B,CAH9B,SAAU,CAFV,iBAAkB,CAGlB,UAIF,CACA,mBAFE,kBAAmB,CAFnB,YASF,CALA,UAEE,qBAAsB,CAEtB,WACF,CACA,cAEE,eAAgB,CADhB,eAEF,CACA,SACE,eACF,CACA,WACE,cACF,CACA,WAEE,YAAa,CACb,WAAY,CACZ,iBAAkB,CAHlB,YAIF,CACA,aACE,YAAa,CACb,6BAA8B,CAC9B,qBACF,CACA,wBACE,cAAe,CACf,eACF,CACA,SAEE,cAAe,CACf,eAAgB,CAEhB,sBAAuB,CADvB,kBAAmB,CAHnB,WAKF,CACA,UACE,WACF,CACA,OAKE,UAAW,CADX,cAAe,CAFf,QAAS,CADT,iBAAkB,CAElB,OAAQ,CAGR,iCAA6B,CAA7B,yBACF,CACA,cAEE,kBAAmB,CADnB,YAEF,CACA,aAEE,aAAuB,CADvB,iBAEF,CACA,YAKE,iBAAkB,CADlB,UAAW,CAHX,YAAa,CACb,qBAAsB,CACtB,iBAGF,CACA,kBAGE,kBAAmB,CAFnB,YAAa,CACb,6BAA8B,CAE9B,kBACF,CACA,YACE,cAAe,CACf,eACF,CACA,UAEE,YAAa,CADb,WAEF,CACA,SACE,YAAa,CACb,mBAAoB,CACpB,eACF,CACA,QAKE,QAAS,CACT,MAAO,CAEP,SAAU,CANV,cAAe,CAEf,OAAQ,CADR,KAAM,CAMN,+CAAmD,CAFnD,iBAAkB,CANlB,YASF,CACA,aAEE,SAAU,CADV,kBAEF,CACA,gBAME,+BAAoC,CADpC,MAAO,CAEP,WACF,CACA,gCALE,QAAS,CAHT,iBAAkB,CAElB,OAAQ,CADR,KAkBF,CAXA,gBAKE,qBAAuB,CAEvB,qCAA0C,CAG1C,eAAgB,CADhB,kCAA2B,CAA3B,0BAA2B,CAD3B,qCAA+B,CAA/B,6BAA+B,CAA/B,wDAA+B,CAF/B,YAKF,CACA,6BACE,+BAAwB,CAAxB,uBACF,CAIA,oEACE,aACF,CCjOA,UAEE,UAAW,CACX,cAAe,CAFf,wBAGF,CAEA,gBACE,aACF,CCRA,SAIE,eAAgB,CAFhB,cAAe,CACf,cAAe,CAEf,aAAc,CACd,qBAAsB,CALtB,iBAAkB,CAMlB,8BACF,CAEA,SACE,cAAe,CACf,cAAe,CACf,eACF,CAEA,WAEE,kBAAmB,CADnB,YAAa,CAIb,UAAW,CADX,QAEF,CAEA,iBALE,iBAUF,CALA,MAGE,cAAe,CACf,gBAAiB,CAFjB,WAGF,CAEA,YACE,aACF,CAEA,OACE,wBACF,CAEA,SAEE,eAAgB,CADhB,iBAAkB,CAGlB,8BAAgC,CADhC,UAEF,CAEA,MAGE,eAAgB,CADhB,iCAA6B,CAA7B,yBAA6B,CAD7B,OAGF,CAEA,iBAGE,kBAAmB,CAFnB,YAAa,CACb,cAAe,CAEf,UACF,CAEA,gBAGE,kBAAmB,CAFnB,YAAa,CACb,6BAEF,CAEA,eAEE,eAAgB,CADhB,gBAEF,CAEA,UAQE,wBAA6B,CAJ7B,qBAAsB,CACtB,iBAAkB,CAElB,UAAW,CALX,wBAAyB,CACzB,gBAAiB,CAGjB,WAAY,CALZ,UAQF,CAEA,QACE,0BACF,CAEA,MAEE,qBAAsB,CAGtB,kBAAmB,CAFnB,kBAAmB,CAGnB,eAAgB,CAFhB,YAAa,CAHb,iBAMF,CAEA,uBACE,mCAA4B,CAA5B,2BACF,CAEA,WAUE,wBAAyB,CADzB,kBAAmB,CAJnB,WAAY,CAGZ,gBAAiB,CAPjB,iBAAkB,CAClB,UAAW,CAKX,iBAAkB,CAJlB,oBAAqB,CAGrB,kCAA2B,CAA3B,0BAA2B,CAK3B,8BAAgC,CAPhC,UAQF,CAEA,iBAEE,wBAAyB,CADzB,cAEF,CAEA,YAEE,UAAW,CADX,wBAEF,CAEA,mBAEE,iBAAkB,CADlB,YAAa,CAEb,QACF,CAEA,oBACE,SACF,CAEA,4BAGE,qBAAsB,CACtB,iBAAkB,CAHlB,YAAa,CAIb,eAAgB,CAHhB,YAIF,CAEA,wBAGE,oBAAyB,CAFzB,cAAe,CACf,iBAEF,CAEA,cACE,qBAAsB,CAItB,iBAAkB,CADlB,cAAe,CAFf,eAAgB,CAChB,YAGF,CAEA,oEACE,sCACF","sources":["scenes/launch_model/styles/modelCardStyle.css","components/copyComponent/style.css","scenes/register_model/styles/registerModelStyle.css"],"sourcesContent":[".container {\n display: block;\n position: relative;\n width: 300px;\n height: 300px;\n cursor: pointer;\n border-radius: 20px;\n}\n.descriptionCard {\n position: relative;\n top: -1px;\n left: -1px;\n width: 300px;\n height: 300px;\n padding: 20px;\n border-radius: 20px;\n}\n.cardTitle {\n display: flex;\n justify-content: space-between;\n}\n.iconButtonBox {\n display: flex;\n align-items: center;\n}\n.drawerCard {\n position: relative;\n padding: 20px 80px 0;\n min-height: 100%;\n width: 60vw;\n}\n.p {\n display: -webkit-box;\n -webkit-line-clamp: 4;\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n word-break: break-word;\n font-size: 14px;\n padding: 0px 10px;\n}\n.pasteText {\n font-size: 18px !important;\n color: #1976d2;\n cursor: pointer;\n margin-inline: 10px;\n}\n.pasteText:hover {\n color: #1976d2b3;\n}\n.copyToCommandLine {\n font-size: 16px !important;\n color: #1976d2;\n cursor: pointer;\n}\n.copyToCommandLine:hover {\n color: #1976d2b3;\n}\n.formContainer {\n height: 80%;\n overflow: scroll;\n padding: 0 10px;\n padding-bottom: 160px;\n}\n.buttonsContainer {\n position: absolute;\n bottom: 50px;\n left: 100px;\n right: 100px;\n}\n.buttons {\n display: flex;\n justify-content: space-between;\n align-items: center;\n gap: 20px;\n}\n.css-1be5mm1-MuiLinearProgress-root-MuiMobileStepper-progress {\n width: 100% !important;\n}\n.css-r5rjnf-MuiLinearProgress-root-MuiMobileStepper-progress {\n width: 100% !important;\n}\n.instructionText {\n font-size: 12px;\n color: #666666;\n font-style: italic;\n margin: 30px 0;\n text-align: center;\n}\n.iconRow {\n position: absolute;\n bottom: 20px;\n left: 20px;\n right: 20px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n.iconItem {\n display: flex;\n flex-direction: column;\n align-items: center;\n margin: 20px;\n}\n.boldIconText {\n font-weight: bold;\n font-size: 1.2em;\n}\n.muiIcon {\n font-size: 1.5em;\n}\n.smallText {\n font-size: 0.8em;\n}\n.dialogBox {\n width: 1241px;\n height: 607px;\n margin: 32px;\n overflow-x: scroll;\n}\n.dialogTitle {\n display: flex;\n justify-content: space-between;\n padding: 20px 20px 7px;\n}\n.dialogTitle-model_name {\n font-size: 18px;\n font-weight: 700;\n}\n.pathBox {\n width: 160px;\n cursor: pointer;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.pathBox2 {\n width: 300px;\n}\n.empty {\n position: absolute;\n left: 50%;\n top: 30%;\n font-size: 20px;\n color: #555;\n transform: translate(-50%, 0);\n}\n.deleteDialog {\n display: flex;\n align-items: center;\n}\n.warningIcon {\n margin-right: 10px;\n color: rgb(237, 108, 2);\n}\n.jsonDialog {\n display: flex;\n flex-direction: column;\n padding: 10px 30px;\n color: #000;\n border-radius: 8px;\n}\n.jsonDialog-title {\n display: flex;\n justify-content: space-between;\n align-items: center;\n margin: 10px 0 20px 0;\n}\n.title-name {\n font-size: 16px;\n font-weight: 700;\n}\n.main-box {\n width: 700px;\n height: 500px;\n}\n.but-box {\n display: flex;\n justify-content: end;\n margin-top: 20px;\n}\n.drawer {\n z-index: 1000;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n visibility: hidden;\n opacity: 0;\n transition: visibility 0.3s ease, opacity 0.3s ease;\n}\n.drawer.open {\n visibility: visible;\n opacity: 1;\n}\n.drawer-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n background-color: rgba(0, 0, 0, 0.5);\n z-index: 999;\n}\n.drawer-content {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n background-color: white;\n z-index: 1000;\n box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);\n transition: transform 0.3s ease;\n transform: translateX(100%);\n overflow-y: auto;\n}\n.drawer.open .drawer-content {\n transform: translateX(0);\n}\n.textHighlight .MuiSelect-select {\n color: #1976d2;\n}\n.textHighlight .MuiInputBase-input {\n color: #1976d2;\n}\n",".copyText {\n font-size: 14px !important;\n color: #666;\n cursor: pointer;\n}\n\n.copyText:hover {\n color: #1976d2;\n}\n",".formBox {\n position: relative;\n max-width: 50vw;\n min-width: 50vw;\n max-height: 80vh;\n overflow: auto;\n padding: 40px 20px 0 0;\n transition: all 0.4s ease-in-out;\n}\n\n.broaden {\n max-width: 100%;\n min-width: 100%;\n padding-right: 0;\n}\n\n.show-json {\n display: flex;\n align-items: center;\n position: absolute;\n top: 90px;\n right: 60px;\n}\n\n.icon {\n position: absolute;\n right: -40px;\n cursor: pointer;\n margin-left: 20px;\n}\n\n.icon:hover {\n color: #1976d2;\n}\n\n.arrow {\n font-size: 24px !important;\n}\n\n.jsonBox {\n position: relative;\n min-height: 80vh;\n width: 100%;\n transition: all 0.4s ease-in-out;\n}\n\n.hide {\n width: 0;\n transform: translate(30vw, 0);\n overflow: hidden;\n}\n\n.checkboxWrapper {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n width: 100%;\n}\n\n.jsonBox-header {\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.jsonBox-title {\n line-height: 40px;\n font-weight: 700;\n}\n\n.textarea {\n width: 100%;\n height: calc(100% - 40px);\n padding: 5px 10px;\n border: 1px solid #ddd;\n border-radius: 5px;\n resize: none;\n color: #666;\n background-color: transparent;\n}\n\n.addBtn {\n margin-left: 20px !important;\n}\n\n.item {\n position: relative;\n border: 1px solid #ddd;\n margin: 10px 50px 0;\n padding: 20px;\n border-radius: 10px;\n overflow: hidden;\n}\n\n.item:hover .deleteBtn {\n transform: translateX(-50px);\n}\n\n.deleteBtn {\n position: absolute;\n right: 20px;\n top: calc(50% - 25px);\n width: 50px;\n height: 50px;\n transform: translateX(80px);\n text-align: center;\n line-height: 70px;\n border-radius: 25px;\n background-color: #1976d2;\n transition: all 0.3s ease-in-out;\n}\n\n.deleteBtn:hover {\n cursor: pointer;\n box-shadow: 0 0 10px #aaa;\n}\n\n.deleteIcon {\n font-size: 28px !important;\n color: #fff;\n}\n\n.chat_template_box {\n display: flex;\n align-items: start;\n gap: 10px;\n}\n\n.chat_template_test {\n width: 30%;\n}\n\n.chat_template_test_mainBox {\n height: 137px;\n padding: 10px;\n border: 1px solid #ccc;\n border-radius: 4px;\n overflow: scroll;\n}\n\n.chat_template_test_tip {\n font-size: 10px;\n margin: 4px 14px 0;\n color: rgba(0, 0, 0, 0.6);\n}\n\n.test_res_box {\n border: 1px solid #ddd;\n min-height: 55px;\n padding: 10px;\n margin-top: 5px;\n border-radius: 4px;\n}\n\n.css-19qh8xo-MuiInputBase-input-MuiOutlinedInput-input.Mui-disabled {\n -webkit-text-fill-color: #000 !important;\n}\n"],"names":[],"sourceRoot":""}
|