xinference 1.2.1__py3-none-any.whl → 1.3.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.

Files changed (80) hide show
  1. xinference/_version.py +3 -3
  2. xinference/api/restful_api.py +4 -7
  3. xinference/client/handlers.py +3 -0
  4. xinference/client/restful/restful_client.py +9 -1
  5. xinference/core/model.py +19 -0
  6. xinference/core/resource.py +7 -1
  7. xinference/core/scheduler.py +4 -7
  8. xinference/core/status_guard.py +1 -0
  9. xinference/core/supervisor.py +228 -19
  10. xinference/core/utils.py +1 -29
  11. xinference/core/worker.py +28 -2
  12. xinference/deploy/cmdline.py +33 -3
  13. xinference/deploy/local.py +2 -1
  14. xinference/deploy/test/test_cmdline.py +32 -0
  15. xinference/device_utils.py +43 -1
  16. xinference/model/audio/core.py +5 -0
  17. xinference/model/audio/kokoro.py +122 -0
  18. xinference/model/audio/model_spec.json +8 -0
  19. xinference/model/audio/model_spec_modelscope.json +9 -0
  20. xinference/model/image/stable_diffusion/core.py +15 -6
  21. xinference/model/llm/llama_cpp/core.py +21 -14
  22. xinference/model/llm/llm_family.json +866 -46
  23. xinference/model/llm/llm_family.py +7 -2
  24. xinference/model/llm/llm_family_modelscope.json +873 -16
  25. xinference/model/llm/mlx/core.py +11 -3
  26. xinference/model/llm/reasoning_parsers/__init__.py +13 -0
  27. xinference/model/llm/reasoning_parsers/abs_reasoning_parsers.py +98 -0
  28. xinference/model/llm/reasoning_parsers/deepseek_r1_reasoning_parser.py +140 -0
  29. xinference/model/llm/sglang/core.py +99 -11
  30. xinference/model/llm/transformers/core.py +9 -1
  31. xinference/model/llm/transformers/intern_vl.py +23 -14
  32. xinference/model/llm/transformers/qwen2_audio.py +3 -1
  33. xinference/model/llm/transformers/qwen2_vl.py +20 -3
  34. xinference/model/llm/transformers/utils.py +22 -11
  35. xinference/model/llm/utils.py +164 -20
  36. xinference/model/llm/vllm/core.py +36 -4
  37. xinference/model/llm/vllm/xavier/executor.py +2 -2
  38. xinference/model/llm/vllm/xavier/scheduler.py +3 -3
  39. xinference/thirdparty/internvl/conversation.py +26 -17
  40. xinference/types.py +2 -0
  41. xinference/web/ui/build/asset-manifest.json +6 -6
  42. xinference/web/ui/build/index.html +1 -1
  43. xinference/web/ui/build/static/css/main.f8177338.css +2 -0
  44. xinference/web/ui/build/static/css/main.f8177338.css.map +1 -0
  45. xinference/web/ui/build/static/js/main.ad42919c.js +3 -0
  46. xinference/web/ui/build/static/js/main.ad42919c.js.map +1 -0
  47. xinference/web/ui/node_modules/.cache/babel-loader/074a42304bbbaa79e1bfc3b28502457a390df55708de9006f4cc8e35c60aea87.json +1 -0
  48. xinference/web/ui/node_modules/.cache/babel-loader/0acb065326560592b10888234242f94f67efe28458b90f273d4d4fba9daa0cd2.json +1 -0
  49. xinference/web/ui/node_modules/.cache/babel-loader/279ace390216236a82b3d8995c78eca4d637ac9a523e9f521a2d9c76607a43d7.json +1 -0
  50. xinference/web/ui/node_modules/.cache/babel-loader/630a7bd592596cc6e291fc32238ce7c08238038a64ed8ccee0eb0c13c9902910.json +1 -0
  51. xinference/web/ui/node_modules/.cache/babel-loader/6cb9f6c62ab4042f0b11c5d75e51187188e9d6f5f08b1d63e796e051bafdb457.json +1 -0
  52. xinference/web/ui/node_modules/.cache/babel-loader/8f9af2979e45d4648f0cfae108363e58ee421c29a9d4e7329b6f06d9adfd4133.json +1 -0
  53. xinference/web/ui/node_modules/.cache/babel-loader/914c33e91c1012e3bcd3e96f3a25884cbef148290632d0266dab972b8cc1e95f.json +1 -0
  54. xinference/web/ui/node_modules/.cache/babel-loader/9c8b1a86e7c65b2b2599a205e30920652d6c2105f926508ef5bcf29a3ef4ce76.json +1 -0
  55. xinference/web/ui/node_modules/.cache/babel-loader/b7939cd3a48adf12fccfdd0803019b5cc235ff7de3a297dae70ce635e0eea13e.json +1 -0
  56. xinference/web/ui/node_modules/.cache/babel-loader/efe7cd132c27a8f9fd5352a394c491fd5fb0da0348cf9fcbd923164a32365eab.json +1 -0
  57. xinference/web/ui/node_modules/.cache/babel-loader/f04f666b77b44d7be3e16034d6b0074de2ba9c254f1fae15222b3148608fa8b3.json +1 -0
  58. xinference/web/ui/node_modules/.cache/babel-loader/fecf076bcd198a458c2a6ab0e85e40dc1c99994c353164e79c469be162cb74c9.json +1 -0
  59. xinference/web/ui/src/locales/en.json +14 -1
  60. xinference/web/ui/src/locales/zh.json +14 -1
  61. {xinference-1.2.1.dist-info → xinference-1.3.0.dist-info}/METADATA +18 -17
  62. {xinference-1.2.1.dist-info → xinference-1.3.0.dist-info}/RECORD +67 -60
  63. xinference/web/ui/build/static/css/main.51a587ff.css +0 -2
  64. xinference/web/ui/build/static/css/main.51a587ff.css.map +0 -1
  65. xinference/web/ui/build/static/js/main.b0936c54.js +0 -3
  66. xinference/web/ui/build/static/js/main.b0936c54.js.map +0 -1
  67. xinference/web/ui/node_modules/.cache/babel-loader/0c2fb5375667931c4a331c99e0d87dc145e8f327cea3f44d6e56f54c7c1d4020.json +0 -1
  68. xinference/web/ui/node_modules/.cache/babel-loader/185ceb8872d562e032b47e79df6a45670e06345b8ed70aad1a131e0476783c5c.json +0 -1
  69. xinference/web/ui/node_modules/.cache/babel-loader/3eefb411b24c2b3ce053570ef50daccf154022f0e168be5ed0fec21394baf9f4.json +0 -1
  70. xinference/web/ui/node_modules/.cache/babel-loader/63c8e07687ea53a4f8a910ee5e42e0eb26cd1acbfbe820f3e3248a786ee51401.json +0 -1
  71. xinference/web/ui/node_modules/.cache/babel-loader/a3ff866acddf34917a7ee399e0e571a4dfd8ba66d5057db885f243e16a6eb17d.json +0 -1
  72. xinference/web/ui/node_modules/.cache/babel-loader/a7f1a71f6580dfe810c685a9c1d68e318f71e1fa258fbe50b87a6ac37cc0a598.json +0 -1
  73. xinference/web/ui/node_modules/.cache/babel-loader/bdee44abeadc4abc17d41c52eb49c6e19a4b1a267b6e16876ce91bdeeebfc52d.json +0 -1
  74. xinference/web/ui/node_modules/.cache/babel-loader/d7664d18c4ddbad9c3a6a31b91f7c00fb0dde804608674a9860ee50f33e54708.json +0 -1
  75. xinference/web/ui/node_modules/.cache/babel-loader/ed57202cb79649bb716400436590245547df241988fc7c8e1d85d132299542d2.json +0 -1
  76. /xinference/web/ui/build/static/js/{main.b0936c54.js.LICENSE.txt → main.ad42919c.js.LICENSE.txt} +0 -0
  77. {xinference-1.2.1.dist-info → xinference-1.3.0.dist-info}/LICENSE +0 -0
  78. {xinference-1.2.1.dist-info → xinference-1.3.0.dist-info}/WHEEL +0 -0
  79. {xinference-1.2.1.dist-info → xinference-1.3.0.dist-info}/entry_points.txt +0 -0
  80. {xinference-1.2.1.dist-info → xinference-1.3.0.dist-info}/top_level.txt +0 -0
@@ -1,61 +1,62 @@
1
1
  xinference/__init__.py,sha256=nmTTrYbIpj964ZF6ojtgOM7E85JBOj1EyQbmYjbj1jw,915
2
2
  xinference/_compat.py,sha256=URSJQLXrcsTO9B_4x0wVDPijYQDhuVJmZ95npID560w,4197
3
- xinference/_version.py,sha256=cRjgwmUs9T7LZabp8_lbu3KxEJZrH641zBpN4hZkBEY,497
3
+ xinference/_version.py,sha256=WWhsA6HLqEmACoxpxfySEDjEnZMcVGekSJb9gJu4UIk,497
4
4
  xinference/conftest.py,sha256=vETDpRBVIlWbWi7OTwf7og89U25KyYGyI7yPIB3O8N8,9564
5
5
  xinference/constants.py,sha256=mEW4HDzjXtDXN61Mt6TtJrJ4ljbB6VUkh97e3oDbNx4,3905
6
- xinference/device_utils.py,sha256=zswJiws3VyTIaNO8z-MOcsJH_UiPoePPiKK5zoNrjTA,3285
6
+ xinference/device_utils.py,sha256=ELsqvnjvz9wYthTyQFzKSV4mZsaASz6hj_IsfMmfMWc,4447
7
7
  xinference/fields.py,sha256=0UtBFaDNzn1n9MRjyTkNrolsIML-TpZfudWOejqjni8,5245
8
8
  xinference/isolation.py,sha256=gTU1em5fxg1m-7hxieWBMZvVkXZX4GZYmeT7XxXsYrU,2699
9
- xinference/types.py,sha256=p9IV2vmbtFfpo9P66IynkEgU2N6310uVMKBuq0rbtNc,13102
9
+ xinference/types.py,sha256=LAfX2vyztb9TYFpOTgqBExLg9I8XwQH4urVtuVFIvl8,13182
10
10
  xinference/utils.py,sha256=zYgf9bCvfbybRt3gEog6r5WJCpj0czZCf0qgRdYjkN8,720
11
11
  xinference/api/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
12
- xinference/api/restful_api.py,sha256=NlWmA1pDu8oPybI9daU4pplQXkRD-NExTO2L_E4Y2zM,92876
12
+ xinference/api/restful_api.py,sha256=XENr9892-WHZ1XKaCwijdTAAd1uX2D0oMKUF6Pw99GQ,92730
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
16
  xinference/api/oauth2/utils.py,sha256=SIiiUj6VuTEsj3bZ2TYUyhx3cGlLSX3ZNWDOgUwRtXc,1410
17
17
  xinference/client/__init__.py,sha256=Gc4HOzAy_1cic5kXlso7hahYgw89CKvZSJDicEU461k,669
18
18
  xinference/client/common.py,sha256=iciZRs5YjM2gYsXnwACPMaiBZp4_XpawWwfym0Iyu40,1617
19
- xinference/client/handlers.py,sha256=OKl_i5FA341wsQf_0onSOPbbW6V861WJrSP7ghtDc8c,527
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=JwzP7etUZBR0mmU7y3dUOEWN_D7ol_2hXN9KMAzKZaw,53601
21
+ xinference/client/restful/restful_client.py,sha256=DofFF0ZaOmBpCVp9qtAeYDGbvd-KS5u4_GMGp8AbbM4,53994
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=5fUr9-OLrFTZ5TvFGE8gX4N_-N4EmYRp74b5fD6cyAU,21048
25
25
  xinference/core/event.py,sha256=42F38H2WOl6aPxp2oxX6WNxHRRxbnvYRmbt4Ar7NP4U,1640
26
26
  xinference/core/image_interface.py,sha256=5Iuoiw3g2TvgOYi3gRIAGApve2nNzfMPduRrBHvd1NY,13755
27
27
  xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
28
- xinference/core/model.py,sha256=8FaEJK4tTL7wvYivLEqWKkZOrAMODBSoxg9A4fYzUH0,43365
28
+ xinference/core/model.py,sha256=EcC0Mxnsrb77FcMZ-MdwMVUQ7evKjAIzNj9tCY-nRVE,44130
29
29
  xinference/core/progress_tracker.py,sha256=LIF6CLIlnEoSBkuDCraJktDOzZ31mQ4HOo6EVr3KpQM,6453
30
- xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
31
- xinference/core/scheduler.py,sha256=gdj3SyP_jelJ86vTRrgnFynhxz5JSwLRsQgx8PTtBi8,15671
32
- xinference/core/status_guard.py,sha256=4an1KjUOhCStgRQUw1VSzXcycXUtvhxwiMREKKcl1UI,2828
33
- xinference/core/supervisor.py,sha256=4beE9EZx5xWpSLZtZwT3CPYWT25zPFl9gRj2oK8Za3w,60208
34
- xinference/core/utils.py,sha256=RR3XDioh52Wy8vmAqhCZ6EQskr-HPDfUp0vCCAPIAvs,11302
35
- xinference/core/worker.py,sha256=FVy_zXOHovYLPQQr6DSpjSGWaLyH425gTUUH_vwKVfk,50666
30
+ xinference/core/resource.py,sha256=aTV89dmuKxw5JnwQglRkA2Wxu1EBLM5WjmLxITSXYgs,1808
31
+ xinference/core/scheduler.py,sha256=WHWOlbzAPoURXNzjFNdfvhkgBYO8ufZtIu3JXfq7fmY,15576
32
+ xinference/core/status_guard.py,sha256=VLhyqpobdclfyzcROqf4bmGDiKpuHllto316X3Z6Hrc,2860
33
+ xinference/core/supervisor.py,sha256=JgfEY7LkP9m48abukMXKBumEqeV9Q-IImSAJjk6YslE,69304
34
+ xinference/core/utils.py,sha256=TpUHNFcA4pEXq084Quz-ilIccuDMUAsdLrEJxj0Zn6I,10414
35
+ xinference/core/worker.py,sha256=VpX9Mwa27FyNcgoXdFRe414iL4KySZNpMfPIOhrcVPE,51737
36
36
  xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
37
- xinference/deploy/cmdline.py,sha256=gPwp9IngaXCypUEnPDS_22U8GntsKr7qHDST7duyAoI,48478
38
- xinference/deploy/local.py,sha256=gcH6WfTxfhjvNkxxKZH3tcGtXV48BEPoaLWYztZHaeo,3954
37
+ xinference/deploy/cmdline.py,sha256=-RKCZaM2SlL8ZXfp_LQJ7tndn7ip9c9F-BKq0qINGkg,49565
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=jdL7i2WV6u_BZ8IiE1d3YktvCARcB3ntzMQ5rHGD5DM,6756
41
41
  xinference/deploy/worker.py,sha256=VQ71ClWpeGsyFgDmcOes2ub1cil10cBjhFLHYeuVwC4,2974
42
42
  xinference/deploy/test/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
43
- xinference/deploy/test/test_cmdline.py,sha256=UecwELfMA03i-AL8uxluhW8A12kzhbHc6gsMg1R_c24,9015
43
+ xinference/deploy/test/test_cmdline.py,sha256=ozgVyvaa_AxRDbApu4o3qzOfVfF1wflMNtsJbudUwb8,9801
44
44
  xinference/model/__init__.py,sha256=bCEwvKjoazBW8QZ5C5Hpfd5v_VTbWpXvo8IB9d4Qs70,1127
45
45
  xinference/model/core.py,sha256=_NEH4wkjjJgRDdLHNVY_hL3V0kT67CvTay89uIzx1Ns,4736
46
46
  xinference/model/utils.py,sha256=_yJ5h4RUzt7Kjs2WdjSzbVM3FTWEkX0ycOnXANZ9KVg,11394
47
47
  xinference/model/audio/__init__.py,sha256=KasWsaNPeij6sGpHKqXaUc_bxUw1yYbD7-fwxkcoAVE,3731
48
48
  xinference/model/audio/chattts.py,sha256=ny3DZTCTt2MzdkLw994_QHZ_4qIEUZcNexNJkCejCyo,4998
49
- xinference/model/audio/core.py,sha256=jboohBIr8GmXH4ASoKJvU0lWJzsCqUszTsJdn-pByaI,7517
49
+ xinference/model/audio/core.py,sha256=AAuss7fGwGktcB_aGRwuR4TJIM6-Rrm0YCU752QoxfQ,7710
50
50
  xinference/model/audio/cosyvoice.py,sha256=vw7OR2t7zNimQn3Q74iiL1-2en5o6gvdcZsDgkmYpy4,7796
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
55
  xinference/model/audio/funasr.py,sha256=65z7U7_F14CCP-jg6BpeY3_49FK7Y5OCRSzrhhsklCg,4075
56
+ xinference/model/audio/kokoro.py,sha256=7gqMqsW9NW3xm9zOXbqB4y_1UmMnI5JCub14K3iyLL4,3729
56
57
  xinference/model/audio/melotts.py,sha256=lJdOsce2mMOTQIslv6xq1JTEO7vC6Q9ga2xjY-_E7uw,3493
57
- xinference/model/audio/model_spec.json,sha256=rGe6_DBmit4CUCFv1y8r9qHFgiFXJePzeaIWhEyyYaE,10239
58
- xinference/model/audio/model_spec_modelscope.json,sha256=q4LKNjZ1ZG0hI-eWhLj9FWNcAVqiaLtsc6_SCrLkIVk,2788
58
+ xinference/model/audio/model_spec.json,sha256=beNfOVUFDKoZcviekvqVmESeRdZHMCVUB7lwmt3r-Q0,10477
59
+ xinference/model/audio/model_spec_modelscope.json,sha256=aFCqDC74wlisqhWzt42k0vE42b8eshfz2YXhJf95nNQ,3029
59
60
  xinference/model/audio/utils.py,sha256=fnnQfZlhH6DRw6beXPUIO28u6qu2GgCONrWDIsTCNkw,1591
60
61
  xinference/model/audio/whisper.py,sha256=NePQOYy2CnVqi7g6uY9hq5tlUIxZ995FOIOPsPZCfJ8,9058
61
62
  xinference/model/audio/whisper_mlx.py,sha256=zBuCd7GUlsN9FC_-J11gqIkOCicihfbqxoabiXTvH2Q,7237
@@ -83,50 +84,53 @@ xinference/model/image/ocr/got_ocr2.py,sha256=N5Ux1dCtDMA25BBEmqiYNVKrk_HA-IPWch
83
84
  xinference/model/image/scheduler/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
84
85
  xinference/model/image/scheduler/flux.py,sha256=GHlpPfU5UxsiQWNyvNe9SaVZceNg_2CiF1oJUdCao5o,18830
85
86
  xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
86
- xinference/model/image/stable_diffusion/core.py,sha256=SaeBYNdRdqarEwoyjHDz_SfRIr9EEK4IzgydYuRf7pI,24286
87
+ xinference/model/image/stable_diffusion/core.py,sha256=V3BaASwx8q1YERb4jhhaYEDFiwh3BuPAz8pVZTuktAQ,24717
87
88
  xinference/model/image/stable_diffusion/mlx.py,sha256=GZsozzGB04NfHAdU9MI6gwWE1t_A-s_Ddn_ic8DlkKQ,7476
88
89
  xinference/model/llm/__init__.py,sha256=zKmkoNsUoQk1_jnLHNpno4UPKGl5O_vJK5R5R-TYF9w,14140
89
90
  xinference/model/llm/core.py,sha256=g-luuAjZizrPunhyFE9IRjn57l0g6FY_1xUwtlRegbs,8151
90
- xinference/model/llm/llm_family.json,sha256=Q67g29KCIgnRQVS92ortD_RY1RhYU_47WnwFMM8GDbY,328868
91
- xinference/model/llm/llm_family.py,sha256=HiWobT1SInGXWT78g673K5-FoDkDi1dSUU4pmfFAPPI,39050
91
+ xinference/model/llm/llm_family.json,sha256=GpHyi6OqCe8EmHUrWR4stSeRE3D9u2cRJYtGnRAVBI8,358968
92
+ xinference/model/llm/llm_family.py,sha256=SrgTmEKspAELhVqmMs7Rz6xUk7rmc9V61urvbWAZOVE,39214
92
93
  xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
93
- xinference/model/llm/llm_family_modelscope.json,sha256=jEp2-wzMsJYTR4xXqt5eETghsxgYgEGLiDSzc12pUzY,258710
94
+ xinference/model/llm/llm_family_modelscope.json,sha256=8RsMiGrbVdLQohnmdbVWIZgk4yYcFpnYZpkcqz-P8yE,289997
94
95
  xinference/model/llm/llm_family_openmind_hub.json,sha256=jl9pfbe5DztoxgEwKBxDk1Wd7TziTiJ48_Ie_lJdYjA,67872
95
96
  xinference/model/llm/memory.py,sha256=GLNmXBI-AtMbuaJfEf50fnhN4rdbOZjLyT6L_Vjqa5g,10206
96
- xinference/model/llm/utils.py,sha256=nSI5vtOp3qfAB-RgYXNrMZH9f-X1JbNOyCBVFz21eMw,25407
97
+ xinference/model/llm/utils.py,sha256=PMhIVa_KI6SBqPG1Usd3iMSUoIEMnN9U9lnW_iA82m0,29995
97
98
  xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
98
- xinference/model/llm/llama_cpp/core.py,sha256=vjuTapwbn-ZjUX-8WA0nFyicE4UGUSehU_csSetvcZw,10928
99
+ xinference/model/llm/llama_cpp/core.py,sha256=3GSGk42c8Oy_jTqRv4nLC482V2tUis3V0LlohQy_I1U,11312
99
100
  xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
101
  xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc3ua8yPTI,19835
101
102
  xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
102
- xinference/model/llm/mlx/core.py,sha256=rpgwZ7R2WDd-ayhi28UDglGxIutBuIXLyX7n7fHIEYw,22936
103
+ xinference/model/llm/mlx/core.py,sha256=WQN2iURiWSL_MY5hR0GkCYa08qr5wtOFx522_c2vW30,23130
104
+ xinference/model/llm/reasoning_parsers/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
105
+ xinference/model/llm/reasoning_parsers/abs_reasoning_parsers.py,sha256=7jISylZEQDCw2-5kR4MsXkZH5xhkOlrBrJBAIAsnSZI,3040
106
+ xinference/model/llm/reasoning_parsers/deepseek_r1_reasoning_parser.py,sha256=IpeXAJSApXAdcUj8lYC7jkBRkJbURCt9pBVa7fZHNKM,6359
103
107
  xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
104
- xinference/model/llm/sglang/core.py,sha256=Ab0i6Q3M-DqQi5bHMyfa9klPElGSk1ThEke4mdsBHXU,16747
108
+ xinference/model/llm/sglang/core.py,sha256=tR8PtdC_RBG00sBQp8lF-ow5xq9QkPlRbFPoHzzCDZk,20321
105
109
  xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
106
110
  xinference/model/llm/transformers/chatglm.py,sha256=vHBPIn5nEkrjBmonYkCHAIxDwvNeZHXK8EQz3B2vObE,22418
107
111
  xinference/model/llm/transformers/cogagent.py,sha256=JbIiqVW-S9MA3d4CN2DlI7-WDB_nuCbX8JSypR5TmVU,10080
108
112
  xinference/model/llm/transformers/cogvlm2.py,sha256=I5Ftm0VYjbTAv5ZARZCo32Ggpw58PJfHs5B_nX_BIlU,15972
109
113
  xinference/model/llm/transformers/cogvlm2_video.py,sha256=ZGkpC4x2uEtjwoMrLSODmAUYTjOeSNYxZi9VpQrpnhU,11857
110
114
  xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
111
- xinference/model/llm/transformers/core.py,sha256=t1tujy8-IfD83CjKkvxZ-jqZISDQVFJpSiDkeIL4LGM,28286
115
+ xinference/model/llm/transformers/core.py,sha256=7VkOA04mpiuyA8-P62NSC74_WkKLFb_O51hIEtUHPBw,28493
112
116
  xinference/model/llm/transformers/deepseek_v2.py,sha256=-RKlI3mhja730md4evQ2vfIxBnZD5vWyrgmg_3eovms,4096
113
117
  xinference/model/llm/transformers/deepseek_vl.py,sha256=pB6i6DW5oyfHdqTgKpi2DkIKVGlPLGIDR_Op0sB1uKA,10445
114
118
  xinference/model/llm/transformers/glm4v.py,sha256=goph2HhpV8gUm2t8-T1P-jTF2r_kPeH6QNe64lmlm0g,13871
115
119
  xinference/model/llm/transformers/glm_edge_v.py,sha256=sedHB4iRd37UC__1MeXs33NLMQQKFYBIFf3A71rMEZU,8159
116
- xinference/model/llm/transformers/intern_vl.py,sha256=0pbze1eo3HvNQ0nW-mVJcJuJ4GrEyBBqQAYIdXnAn6c,18270
120
+ xinference/model/llm/transformers/intern_vl.py,sha256=TTVhTCCiW7_uXFkdHEJB25UBkpGGDwg2yFHQNZ1HDkY,18740
117
121
  xinference/model/llm/transformers/internlm2.py,sha256=3mjRgqU0RgCFF0F46ieVH0NO2JCKGsQkmkoVlWJrh8E,3221
118
122
  xinference/model/llm/transformers/minicpmv25.py,sha256=mr80-OlSlK_opSuAO3cz_QlkqujLr6V-OsTP0ebwpE8,6814
119
123
  xinference/model/llm/transformers/minicpmv26.py,sha256=_e2C4vmyKIzKt7S7AvKgiqhDOhGiBXa6Xoiix4UaYtI,13440
120
124
  xinference/model/llm/transformers/omnilmm.py,sha256=2ZLW979ETqDDKo9CaTNwi9uLBZ2d6itHAYqjUA4jdro,5172
121
125
  xinference/model/llm/transformers/opt.py,sha256=dkZFNwtw_sUuVaz9He6LWfEojRGfOQFQ5atvC5OYPuY,2429
122
- xinference/model/llm/transformers/qwen2_audio.py,sha256=1XmlawVF-Xh2pgGoLDX7kOYIiF_bDUR3doSOnM59QbQ,6107
123
- xinference/model/llm/transformers/qwen2_vl.py,sha256=TKn7p0-bNzzv7ZVZ18mOD9NYgJ9q_y_CJMA3OWWvv2c,7768
126
+ xinference/model/llm/transformers/qwen2_audio.py,sha256=RkKSUFTgyolVSuFoLj2GdzsFfU8goOIYtDFLoRLiZ2s,6259
127
+ xinference/model/llm/transformers/qwen2_vl.py,sha256=HEtxPJyhfsvcULu8guLwasB0DaXRgOGxP1WrhgDUWec,8437
124
128
  xinference/model/llm/transformers/qwen_vl.py,sha256=LG19qJW30bFiZOS-t9OM3JP6K1KCLj_Sv3nKSCLvyts,14058
125
129
  xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
126
- xinference/model/llm/transformers/utils.py,sha256=a4-X5P9_L--rgSx5jI8haYA6GSpKhMdOYE97VNh54yM,19389
130
+ xinference/model/llm/transformers/utils.py,sha256=GHJsjBjEXpzZAFbcfKiMxMjFnOBYeZt-eXF5S4HQ8I8,19582
127
131
  xinference/model/llm/transformers/yi_vl.py,sha256=iCdRLw-wizbU-qXXc8CT4DhC0Pt-uYg0vFwXEhAZjQg,8961
128
132
  xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
129
- xinference/model/llm/vllm/core.py,sha256=hrHFC3Q3J-MLJnyqX9HcdiIGBfxfrn_27UPsjldLSHc,37233
133
+ xinference/model/llm/vllm/core.py,sha256=9xEbfH8_Go0j0yaaOMFWC5Uge9dJEaRBYNvCqyZHjTo,38886
130
134
  xinference/model/llm/vllm/utils.py,sha256=LKOmwfFRrlSecawxT-uE39tC2RQbf1UIiSH9Uz90X6w,1313
131
135
  xinference/model/llm/vllm/xavier/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
132
136
  xinference/model/llm/vllm/xavier/allocator.py,sha256=SJ2eCOxF6CWTBZIP39FRxeK6fxIE8pRshOPnSRc72d4,2691
@@ -136,8 +140,8 @@ xinference/model/llm/vllm/xavier/block_tracker.py,sha256=h4kqWhnLVol2hPykN7yxMbp
136
140
  xinference/model/llm/vllm/xavier/collective.py,sha256=_yENFr-SJ38TywSYW2MgnEsagkTxarQOjLTacrdriYs,2563
137
141
  xinference/model/llm/vllm/xavier/collective_manager.py,sha256=oyenv3OziB1sUZylVpdi7piGbOIEgxtVWwuHa-y0vuc,5584
138
142
  xinference/model/llm/vllm/xavier/engine.py,sha256=WlKoxnE8HTUMVHr-PC9x-5emwZAjsMMxUBxUgcn0fQg,10443
139
- xinference/model/llm/vllm/xavier/executor.py,sha256=XUSKLDxejMccSMh9qC_IjWLktStf7gHIWdxpUd2AYPk,5645
140
- xinference/model/llm/vllm/xavier/scheduler.py,sha256=3_tim9DRia-fOEkuvtlQxbcroNszsQtnizVXXkGOQq4,20264
143
+ xinference/model/llm/vllm/xavier/executor.py,sha256=Dy_H3etFMoCCtqYYlJUUylxLZaSDrMsPUxnD-u7kRXc,5692
144
+ xinference/model/llm/vllm/xavier/scheduler.py,sha256=yoD15TaqRprEg_4weuU0HECMTTi__wNCXplL_ytNjoc,20328
141
145
  xinference/model/llm/vllm/xavier/transfer.py,sha256=2IbaiAhRnJMwa9qsMa5bowngqfjxDeht0JS1BMbRmyA,11319
142
146
  xinference/model/llm/vllm/xavier/test/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
143
147
  xinference/model/llm/vllm/xavier/test/test_xavier.py,sha256=E7MDGTeGJMaULoIKez6lt2Vhz0w6FJlPyAELUjE0Chw,4890
@@ -394,7 +398,7 @@ xinference/thirdparty/fish_speech/tools/webui/__init__.py,sha256=lqYBevPJ1c9fXRu
394
398
  xinference/thirdparty/fish_speech/tools/webui/inference.py,sha256=Rh-6T0fKKOZCo_hn7mQwLiUYK8KrpeeVU8xg4Eqd1no,2155
395
399
  xinference/thirdparty/fish_speech/tools/webui/variables.py,sha256=9XiZPmdSeOa6BQfjPTuGWfwhPt1HbN9OEP8-8aldihY,601
396
400
  xinference/thirdparty/internvl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
397
- xinference/thirdparty/internvl/conversation.py,sha256=2wLSnfxyLItQaLd-N5xoybBPKyZadXkVntPuMV5iyGo,15040
401
+ xinference/thirdparty/internvl/conversation.py,sha256=YHLQpHBSPfPmiP29q06__w0LAREgfMVmqyCaO484Xf4,15486
398
402
  xinference/thirdparty/llava/__init__.py,sha256=UlCNtyBVX645CB6S6LfyYkTfQVO18_a8e9SmR7cHExA,41
399
403
  xinference/thirdparty/llava/conversation.py,sha256=_OKwx8mkikwfsuTVR3BtvolqNcwY1X3DP7X9TlmR31g,7758
400
404
  xinference/thirdparty/llava/mm_utils.py,sha256=f0JFOhbdFyLjA8W6VRDsGn5Xwnz4fWjY4Gyt3Apzk7k,3883
@@ -570,14 +574,14 @@ xinference/thirdparty/whisper/normalizers/english.json,sha256=Zgf5SL6YJNLhsvoiI8
570
574
  xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc3yhvWzWuMhQzRnp2dM6IQdA,20868
571
575
  xinference/web/ui/package-lock.json,sha256=Q3gwsjjCFtDjVg5Yk7s4jfMAZ1wiyFfS_TJCw3ECB64,762407
572
576
  xinference/web/ui/package.json,sha256=iitsROb4-TLzxbOftXJqUGpp38TuPhzfLKy5n9THQYg,2081
573
- xinference/web/ui/build/asset-manifest.json,sha256=wE7KyJFtvvGjDGfDwZ8LVzyqUq5StxvnIxsXtCPBnvQ,453
577
+ xinference/web/ui/build/asset-manifest.json,sha256=Srqd0ekVTAVzesxvyT6RdFZ2YQbbOvuEvRdMKekdoy0,453
574
578
  xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
575
- xinference/web/ui/build/index.html,sha256=ud056vePJIPtod4V2ve46pMh5X8lQUlGYpFHUkG2vRM,650
576
- xinference/web/ui/build/static/css/main.51a587ff.css,sha256=44-dxrjYALv45A8qiUuz2y24UwPdHgzR1gAe9TlRnRE,4459
577
- xinference/web/ui/build/static/css/main.51a587ff.css.map,sha256=BY6rKb6-YaOHB4FkRjnYIUM8X4EsrhU87R1BMfdHuf8,8770
578
- xinference/web/ui/build/static/js/main.b0936c54.js,sha256=143qaIeUlopMZEJBwbofLRYLeVvbjmaOCNO42axcsbQ,1210619
579
- xinference/web/ui/build/static/js/main.b0936c54.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
580
- xinference/web/ui/build/static/js/main.b0936c54.js.map,sha256=7osXfAyBqHN5nT5FOa9RBrILCVpS5F2Sh3lsCQX3KjY,5142136
579
+ xinference/web/ui/build/index.html,sha256=cD4LgyU7chZrjyRqj1MGpKnhuAh6qbEBoG7G8bAhK_s,650
580
+ xinference/web/ui/build/static/css/main.f8177338.css,sha256=0Q2_Jsa0kGCmFf24Zzc_An-sQoKjjkCxCQGXtkiSNRA,5397
581
+ xinference/web/ui/build/static/css/main.f8177338.css.map,sha256=Lf6p9GU0WwTIdaGDlWSRuppm2L8g5sxh9tfZvLImcBE,10318
582
+ xinference/web/ui/build/static/js/main.ad42919c.js,sha256=vJ9COtdw-YpMXf7LASJVLFRFtUIL3-9feuu_FhTlQz4,1223559
583
+ xinference/web/ui/build/static/js/main.ad42919c.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
584
+ xinference/web/ui/build/static/js/main.ad42919c.js.map,sha256=6E74kjrp29uyJnie6nBaI0wTsdYf3q6UoX-XKIEvwfM,5180200
581
585
  xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
582
586
  xinference/web/ui/node_modules/.package-lock.json,sha256=2kL1sQ4ZuDQilki9DnRFFM8CxT13fyGl3chLK6i3DQY,760261
583
587
  xinference/web/ui/node_modules/.cache/babel-loader/00012b59e7dc64a18400bdddb660faa295258241c0b9cd15c78cdba63b858ed8.json,sha256=FhiSQ9MQv6bT7TkLBlXXskoaG2HCKhsuTXXlkDV-pM4,668
@@ -935,6 +939,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/073509dec461c060e7fccc1da4ddb
935
939
  xinference/web/ui/node_modules/.cache/babel-loader/07391101ec58160d69c23b74459b329060ea668a1592eaad42670ad901245847.json,sha256=gfmMrKd2mgFJW5WX2eUYZNwyXctdpEpu5cy5b68h2xo,1205
936
940
  xinference/web/ui/node_modules/.cache/babel-loader/073d9e72651168b125a3872e9554f8ebaf3c94caea063a65b9fad2a333a1e440.json,sha256=dROYK3lch9-A0vMtZ3dcbn__RxE4_SG_PicqqTq2FTA,1961
937
941
  xinference/web/ui/node_modules/.cache/babel-loader/074006c85bf3dd5a6c90e656635f2e86fc49b91643f857e6cf82779341f27bd2.json,sha256=nGCuVKLSOImjTiZhC3wU7C5e7MebvNNSmNNrRMLjKP0,301
942
+ xinference/web/ui/node_modules/.cache/babel-loader/074a42304bbbaa79e1bfc3b28502457a390df55708de9006f4cc8e35c60aea87.json,sha256=k6UNwzuUckr4cfS9d4Ew_jQQuPqGRrLbOWj8zEvAo3U,34959
938
943
  xinference/web/ui/node_modules/.cache/babel-loader/0758c8d99b1430446a78c8a38526eb67e00b91e6b08a487ee932dade38e29097.json,sha256=miNSp5hzdCjTTIKOOwFNrdaqS1Jg5yBTx_4VHYqYwA8,1624
939
944
  xinference/web/ui/node_modules/.cache/babel-loader/075b92a4a433fb285c9bca6c4d26cde84136c8ecf0e8ac6c834c17f90f691052.json,sha256=MB_EDmQK5EMxTEgCmOVHmwJuHIuo_TybosvzHQZIKW8,1498
940
945
  xinference/web/ui/node_modules/.cache/babel-loader/075c065693ebe7fa9651aed7a413eed69be4b4a41b6d5564af1a5090ea817d6a.json,sha256=8-nrhv-_QaoITiwCbNWNTuDRE7QRtqQwAXSJlIQwNgA,5628
@@ -1099,6 +1104,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/0ab90fd1e053691d69b6ab99b386c
1099
1104
  xinference/web/ui/node_modules/.cache/babel-loader/0ac1ae755767a2e0e551a75bbea6fa185ebfe505d45160605269d82656f65f5f.json,sha256=BpS6NaL1aMwI761a5cpRAU8_oUvyMT3Yjj9w7whf2gs,1699
1100
1105
  xinference/web/ui/node_modules/.cache/babel-loader/0ac4d99210443a75997dbf2769afbbed7841378e24a3d93379ea4b17ae78c889.json,sha256=AoPdWd-2jmM3Ij118vUwmqHHBPOLcFv-wlxnfI4wba0,2409
1101
1106
  xinference/web/ui/node_modules/.cache/babel-loader/0ac530b8d244ba828e8711d831e698a9430e20b9a6a31ff176bfe699ba31580e.json,sha256=1-qCp1wjv8_UnBrcXKDR3RqYFnlk7O6XdfzsH1W14oE,2304
1107
+ xinference/web/ui/node_modules/.cache/babel-loader/0acb065326560592b10888234242f94f67efe28458b90f273d4d4fba9daa0cd2.json,sha256=Sr29jDvD2faiOEurx-186rSiUCCGJ0RLq56oL_CLMy4,5061
1102
1108
  xinference/web/ui/node_modules/.cache/babel-loader/0acf8fcca53d26f8e731c26b9ffa15102513888d883f09f3a6181b88972b826e.json,sha256=AzCIublatSXqV6ES7L4UbFhD53lMgJtxE5EQ8lwY3x4,1739
1103
1109
  xinference/web/ui/node_modules/.cache/babel-loader/0adb1e0d7dc73d36054480a1bf21b7c3291edae0c29f346fea738d44a42d3212.json,sha256=SeVxOj45eYIBuJRwkTQmQrjGBaCG76G60uem1zQvTzo,1587
1104
1110
  xinference/web/ui/node_modules/.cache/babel-loader/0addff6f2d57d7e912c15f7a2f742aa5cb2aa7c40a390fb715a238952719a3e1.json,sha256=tJOBr3xVMcr5EORndDnxMeQAye-kPyBoZ3YPRNAK5EY,4836
@@ -1149,7 +1155,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/0c1abe8865efaf308ba7f8d12e896
1149
1155
  xinference/web/ui/node_modules/.cache/babel-loader/0c1d29f4bb01e34a73ca92c64007aa1b85e728e637bd1ff5ab165113447556c2.json,sha256=y-erTZUgoDervZ2AqY1BkGIAH2P-kmlV4v53D3gr5uI,1391
1150
1156
  xinference/web/ui/node_modules/.cache/babel-loader/0c2897e2f6e8248e04810baba5ab943c2d070deb5a2b988fcf6f5857603f941d.json,sha256=qrAKsVThYS9Rrm0VxPciWkh-A1weqW9p_vF6203moMY,1580
1151
1157
  xinference/web/ui/node_modules/.cache/babel-loader/0c2a4521d950a13726e9bb7ebc8d7f1a638d5f2d809585985f8738d061c09526.json,sha256=FuhN0QzZC-MQrLx0t8QqCTG7t_z6PlCbsbObq4yV2NE,1855
1152
- xinference/web/ui/node_modules/.cache/babel-loader/0c2fb5375667931c4a331c99e0d87dc145e8f327cea3f44d6e56f54c7c1d4020.json,sha256=2Thxp1c5sug45Imgl4VjOdkX-W2G_Avk05g6eJefxK8,4711
1153
1158
  xinference/web/ui/node_modules/.cache/babel-loader/0c3a88e12fa4c25b6b036a253f2911a647587aadae3c541fc7f48619c9938824.json,sha256=9Bx_ox9BXzixrPGmnUdOLAxw6hNniBGvC7G3oknfej0,1628
1154
1159
  xinference/web/ui/node_modules/.cache/babel-loader/0c3ad08c2acca6ec2ab227c12da4e6c05e33f961afe9c627591dcf72532b48b9.json,sha256=Oy_zie19U4PpUmB6HRaUf5I2CE2z0KiYe2HfC7Ybpyc,1092
1155
1160
  xinference/web/ui/node_modules/.cache/babel-loader/0c3dab9d5d8c46473e72a47302311b78549619e0bec98ce83cf5a5931e0d3ee0.json,sha256=PYby-HaYw6sKGnaurVdWoJsvQCFT0XYfEmkOcmPZdW0,2845
@@ -1760,7 +1765,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/184f05dd485735635373312d62ec4
1760
1765
  xinference/web/ui/node_modules/.cache/babel-loader/185516f39fa16b5b99044cd7c180a01b0ed81d08b68c0788e24d9cda88d0e562.json,sha256=lg0R3sQ2Ktk0sC35YXmubGqktG6XpCFmJtstBVQqCXA,61809
1761
1766
  xinference/web/ui/node_modules/.cache/babel-loader/185ad3c6b393b8cacb29ae482cacf09bd2c8f06ecf36ab3734a3e318e0c486b1.json,sha256=vBkZMEqfTe-e8sSM32UzCtlydCA-veA5hmtdlH8fdko,3849
1762
1767
  xinference/web/ui/node_modules/.cache/babel-loader/185c00602b71a4543f22396585e3a8d5a1207ae917347fbaba10d36ef89dc2a2.json,sha256=ctozJeM3VP2yuVIQRzcphsLh1ZI-h8eeJVf1Iyo1yes,1854
1763
- xinference/web/ui/node_modules/.cache/babel-loader/185ceb8872d562e032b47e79df6a45670e06345b8ed70aad1a131e0476783c5c.json,sha256=8HgGowo2_0_BWzgeDri10IUp6AZ1TZ1dPtIfXV7gUbg,28373
1764
1768
  xinference/web/ui/node_modules/.cache/babel-loader/185dd894710a91115025f69ef2813bff214a416a905d4a780aa07048c0f850cd.json,sha256=iImRFWV8ZDHprttSoZu9fkH6UiVd5xO_WUfnXmOxPTM,514
1765
1769
  xinference/web/ui/node_modules/.cache/babel-loader/186b515e5d45fac7c5c2ec43bbe5d538f837a44e6204570c6db15359cb6e505f.json,sha256=gQu9-YDSwdmCVAX6vMyWfOpXi92jc17YZpBCKzM9ChY,394
1766
1770
  xinference/web/ui/node_modules/.cache/babel-loader/186e94139e4db3ced8869e597c8738730c0d9f53ba2e66de9659bd3a6b833813.json,sha256=LBr4cG2AwJjx6zX1zCG1Gb0puVhVw9DP7-seFc42Cj8,18759
@@ -2485,6 +2489,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/27844331bf476647e959bb04689ee
2485
2489
  xinference/web/ui/node_modules/.cache/babel-loader/278aad2a3954ca509149a40e7ab7332bfb33cf678223c5c60956c195670fd6a3.json,sha256=-S2HW2HWfJZ6UM8YcV5W1iqFbogeTwaD6oh3SVzvAbE,2170
2486
2490
  xinference/web/ui/node_modules/.cache/babel-loader/2790fe0d4ef3c03fe2c9850140055cd80a6b77e47afe0a6524a963710d4804e8.json,sha256=Dic4-v1wsUjsKoj8b0EZPelhDf4NNyD6UY98yRT_KkM,1024
2487
2491
  xinference/web/ui/node_modules/.cache/babel-loader/2797222f2ebe027082f37f8563dc9bfe09e6dd96c346d669a0c00ba02bc455a0.json,sha256=b1pI7tXJ2IL3if8bDL7mbf1c2jy63DPBaWDG9qyNq_c,1605
2492
+ xinference/web/ui/node_modules/.cache/babel-loader/279ace390216236a82b3d8995c78eca4d637ac9a523e9f521a2d9c76607a43d7.json,sha256=SH3F1Zw5CocADLBe2zRktQwKEpGiJdAr0cm_GhGQGOI,70432
2488
2493
  xinference/web/ui/node_modules/.cache/babel-loader/279cff67aebcbff7bf1aadd8dee83a462d3bfa123a077291b738dca32c59134e.json,sha256=Q_-i853wPZHIhFWgXllPR-fFp2k1bzEfurB-JgoNR_k,1360
2489
2494
  xinference/web/ui/node_modules/.cache/babel-loader/27a83888ea03e1435c5fcf2a839d16a835987999345e9ec3481dc7fe7088ce2d.json,sha256=lAAJDy7jT71RUA2-tHYBpDE6ey983EbfhzUOyuGktmA,1043
2490
2495
  xinference/web/ui/node_modules/.cache/babel-loader/27aa20fa4b391d94993781fc2db2bd02bc2c52d4339c896071c7f3700275ee3f.json,sha256=8NhJ04Czzpcn2MvpH0J6WEd1Qgpr-AMZ770UaVubGHA,3051
@@ -3552,7 +3557,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/3ed79fa3b286cb1b86acce91f4cbe
3552
3557
  xinference/web/ui/node_modules/.cache/babel-loader/3edb30e208f0f63f1726ea21ca7668e133ded37fc219dd255bc8e9bfced13923.json,sha256=i6MRsqbDmp69LVez4wRjd-g-v4qP3PkBNs7Lyp2NQgg,1575
3553
3558
  xinference/web/ui/node_modules/.cache/babel-loader/3ee8ce569a63d9bfc054971bcbe0deaa562d54c7b5098d0712b454919ecc3fd5.json,sha256=9dimZbvrmHVWNX7O6hFJGbORgajYLG3jnVpUG_lOZjI,2045
3554
3559
  xinference/web/ui/node_modules/.cache/babel-loader/3eea68a16058db7a9428f560b431ccb7e2f5acc5aa6bfbfc379526ef13f41fe1.json,sha256=pEMr4TpJ60YnHtm-54uA5LJyWrF3qjXD1be15hpFFgc,3224
3555
- xinference/web/ui/node_modules/.cache/babel-loader/3eefb411b24c2b3ce053570ef50daccf154022f0e168be5ed0fec21394baf9f4.json,sha256=8FaJ3AS4nB4a9I1x6snlORXgbkAQsxkDXVhgX4aMDHU,70354
3556
3560
  xinference/web/ui/node_modules/.cache/babel-loader/3f01b1c8dd98608a9ede9a1981f0134555085b9461d16f0fdf9f5673e5813856.json,sha256=b9h8pI2FZkCo0SNVDvny2f_AO_V76JocF3B9WDPX2vI,2555
3557
3561
  xinference/web/ui/node_modules/.cache/babel-loader/3f0dc7c0c9b260f35fa510750802de1692c9e697400609dd2ec9a00e40a41b6b.json,sha256=qocMEopb4MNVKzWvAX5EBT06oLio_NuLnlCHbJZzbFU,1193
3558
3562
  xinference/web/ui/node_modules/.cache/babel-loader/3f0dd767b7093feeb41b25ec5df21bacf93e83dc5a4464ab0c8fd3d5d0e5b6e1.json,sha256=0IqkTPPQbVeLEaLSTy1qU9-aFIgo_M6wJ-Y0zmjqLEM,1137
@@ -5271,6 +5275,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/62fd0405f42322167b7d3f61714e1
5271
5275
  xinference/web/ui/node_modules/.cache/babel-loader/62ffb235faf753381f052c61e0b299ae942de87ef8400263a387c266c1c7ad0b.json,sha256=-m64diXCwVVFjKhumQkTUV6uPCA63Bdlm_tDShIK32I,1213
5272
5276
  xinference/web/ui/node_modules/.cache/babel-loader/6300e4873a2d9b49c679981a2c2bb23ddf152dc584663052916d0362f8aadb7b.json,sha256=uFEYse_F0XRD_kAj5crbKveU5JVhWZWppxSTb7vtCK4,2010
5273
5277
  xinference/web/ui/node_modules/.cache/babel-loader/6307a1e93c5211c740e8402062e1302e4856e87d2e72a53d5303ee0240f5258b.json,sha256=VPDHuA7vJMJn8XT8cAQfLS5vfVfndXvJrfexgREYknk,1220
5278
+ xinference/web/ui/node_modules/.cache/babel-loader/630a7bd592596cc6e291fc32238ce7c08238038a64ed8ccee0eb0c13c9902910.json,sha256=LDQtIKpt148QQZ8bd6Ky_xHzLM-G8Pib2d8dg8KLc6o,215326
5274
5279
  xinference/web/ui/node_modules/.cache/babel-loader/630e365967ea25b414058cd7f4c48480c6170f7b4930fd6c9c5e7638eb7c112e.json,sha256=MnM2DeEcoubzic2nb9IBOAEoYtFI2CHxe5zhtlBnlaI,1894
5275
5280
  xinference/web/ui/node_modules/.cache/babel-loader/630fca8bd2b961b5d3d95692ce9ca3bbde9b4a0051bf6aa90499d41575800a9b.json,sha256=OMYGvJnRTvAh54ZnkbJyTB4Cn8wkjiHJzBBEzd7HjOA,1733
5276
5281
  xinference/web/ui/node_modules/.cache/babel-loader/6313823a271e1424e581d1b128d2802f6938b4913e4638b0aecf7439e2fe5633.json,sha256=JADY3JDkONZeMUF2tXw_rJ4yo2p2Vy4yBpbhGOZDL3E,1178
@@ -5310,7 +5315,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/63afb2a3263a8162320073b9ee04c
5310
5315
  xinference/web/ui/node_modules/.cache/babel-loader/63ba77ec04a4ae279cfb6aeea9e9f950291636efa7d485d3155574bb91511533.json,sha256=hW1drFyUhnz1uIbvFg8NofW9-7S7lfsftG8TCog6yxE,1641
5311
5316
  xinference/web/ui/node_modules/.cache/babel-loader/63c6d396ff59c6b1dcd89fa30c3fb6204bcb96f59a1627543709787c296ec53b.json,sha256=oqH-hwmFihiDBWFC_pIN_-aVL-35wEXJ1gHx6nDEGU0,2591
5312
5317
  xinference/web/ui/node_modules/.cache/babel-loader/63c73f739150151c1a5ff66e19abcc44ea6c42499ea785c37d1a7ae20996f0dc.json,sha256=Qu06k69NZPNaSUi1S-9TyMZaYN8dA9D1cqf6ig4AnVU,1912
5313
- xinference/web/ui/node_modules/.cache/babel-loader/63c8e07687ea53a4f8a910ee5e42e0eb26cd1acbfbe820f3e3248a786ee51401.json,sha256=Xh9mslvMmWxqnQoT-hNuN1QelhUoLTwEEmvKHfJRCWg,32800
5314
5318
  xinference/web/ui/node_modules/.cache/babel-loader/63cda52729688fbb21b6fb861ea4b9466135805a95d48afd04f8473a614f133e.json,sha256=fq29sm9itvQfWd3mppozxr5X-forqDCU_exUnQDnW3g,1691
5315
5319
  xinference/web/ui/node_modules/.cache/babel-loader/63d01d83ad440803dee6c4f74479517b079fa57a9ab2fc93deecf28124176ada.json,sha256=WQC8zTcefN_z0QnQtsU1kuN-71qqNRVcBFGeKm-WLP8,1676
5316
5320
  xinference/web/ui/node_modules/.cache/babel-loader/63d657f6a0d163d3b2144695818eca9655e65d83ea3959020a42574d46154128.json,sha256=6OwiZ3MoTW3ayGjli9KAcnO4v53FapMLUjR-SxgCoXo,2078
@@ -5723,6 +5727,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/6cac7b7498b6eecdaebba4df6b770
5723
5727
  xinference/web/ui/node_modules/.cache/babel-loader/6caf0bee32ad52a7d842d6b4c4227272a03ab9d0a7a7d1fdb26a5ec04804d2bf.json,sha256=hqyT5_uInKT7LhVcXl0skUfrAA07rD040dWIFnrxVpY,1131
5724
5728
  xinference/web/ui/node_modules/.cache/babel-loader/6cafa6bc1b5586d3da5f1adbb6ee091b2c8249a979eec562190b345d63a993d6.json,sha256=SLLRXw6wn69s4P1RG2ljdCwx3b7jYy_nqxTcDLxdo9Q,1093
5725
5729
  xinference/web/ui/node_modules/.cache/babel-loader/6cb38d96074f7f5c61b0f4b5a7d520ce40445f5642069e7a91a2d31f31cb8a20.json,sha256=FnNLPXD-CbKPrepc3Yb1xlpuQQKpHzPR7aKysqO-8mw,1616
5730
+ xinference/web/ui/node_modules/.cache/babel-loader/6cb9f6c62ab4042f0b11c5d75e51187188e9d6f5f08b1d63e796e051bafdb457.json,sha256=esTRLkUMhtV9tiui_W96sJ5Ws-v3nZh7jbzC69lF51M,32768
5726
5731
  xinference/web/ui/node_modules/.cache/babel-loader/6cc67a556971658fac62bbb707d6c1aa03e1582c59887e66b9265ea2ce89951c.json,sha256=VVXcx4HMPISBOcYo8UkfJIG3MUlK3G78kCpTjvhq3D8,1289
5727
5732
  xinference/web/ui/node_modules/.cache/babel-loader/6cc70318534e4d270723e76a775c134f0b34fbdb500389653a8ca204152b6889.json,sha256=DDS1KOXNEWD6qi_ZAKGC94w0rs06FxQwfGilUSiAGZo,2601
5728
5733
  xinference/web/ui/node_modules/.cache/babel-loader/6cd1c91726b4eb4b170bd17821ed9420f3639b0b6df172850f066a91be3b1fa4.json,sha256=_W5cfYbiprZwzBR1e0W2qFXLdc9RHUjKM2M0gFlLAS0,1306
@@ -7447,6 +7452,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/8f80825f6d64872d4a6b4320382b2
7447
7452
  xinference/web/ui/node_modules/.cache/babel-loader/8f817b65d67e4f8d4cf30d844b3147404d4780db7371bb1e89dfc7024873f0ed.json,sha256=ogNW2JiKejpBA4BZU02aHnM9YA9zk1Ujd65yDX_EXRU,1346
7448
7453
  xinference/web/ui/node_modules/.cache/babel-loader/8f879bccfa2c4d94fe80a2288e5f7823acb528219b894b44bb7f1790a985c163.json,sha256=atljFEbGzWsVWmqAfa_uSbkJYu9Y2BEN_mpUeIBayeM,1579
7449
7454
  xinference/web/ui/node_modules/.cache/babel-loader/8f8ff3e98dadc8dc532c189d0cae42422a459a4ad8e972de4abd619245a935ac.json,sha256=e0eSlO910iCv67ceA5XP8w8eccMP6WXoCBzGMJA4DOQ,2892
7455
+ xinference/web/ui/node_modules/.cache/babel-loader/8f9af2979e45d4648f0cfae108363e58ee421c29a9d4e7329b6f06d9adfd4133.json,sha256=sBL0OIXnlU6Bzouz5VwIXfH0mg4pGGY8AnMG6nDNY1k,16796
7450
7456
  xinference/web/ui/node_modules/.cache/babel-loader/8fac6f9bd697c0b9c51da075c398deb20d5ba4060b1c9b4736696d954cf6e45f.json,sha256=ZVuAck-As0dWy9M78N_Rk3RtlgUZ8qC3PmC9YrPcYfw,1053
7451
7457
  xinference/web/ui/node_modules/.cache/babel-loader/8fad51f2c920895c5dc8b0203ba3dde9450b1faa042f07031fa7cccdc93cbd93.json,sha256=W6xQUO_mswqeTdl9T67tMBVOP4dpG94I7RGJvvic3DA,1755
7452
7458
  xinference/web/ui/node_modules/.cache/babel-loader/8fb87438d22de01015a58bad547a760319d06002faaf2295a412f888cf59fb72.json,sha256=hVoJ4oajxHwEAWw0Fn9Og5CPGuIOCqe9Jtr22F--qOg,9169
@@ -7529,6 +7535,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/91239521b89ea6f503bfe9254cab7
7529
7535
  xinference/web/ui/node_modules/.cache/babel-loader/912e4e19ed930a2b76621c006e0c5384d36fcf8749d971fdcd9d4b9cd4f48020.json,sha256=2uJt49vgUrW1XDqSIiMx2rmt35Yn5AQXMLdaEqwN5uU,1105
7530
7536
  xinference/web/ui/node_modules/.cache/babel-loader/9138f9e56868ed8ebaf502cbe9a7862ab7eff3abbb8a78f398d69b7490561d54.json,sha256=xxnrjQ0KSYRPcldu1Qz5wN3J-fAOW5capY3OjIxdYro,1636
7531
7537
  xinference/web/ui/node_modules/.cache/babel-loader/91494cda2aa4fd0ae42970ed6b6c8691a940c0c6d252f762f63de4c001ab5c73.json,sha256=YbrQM9vJBcBrvdn-mFSo8OFamRNPCGRSG-8xhtcUuQc,1366
7538
+ xinference/web/ui/node_modules/.cache/babel-loader/914c33e91c1012e3bcd3e96f3a25884cbef148290632d0266dab972b8cc1e95f.json,sha256=uCEC3_aOokD385ohAPcjWoNL9aiFYU5NQJdPx7tcIoc,18819
7532
7539
  xinference/web/ui/node_modules/.cache/babel-loader/914d838a27c12875ff6ca68f172d07430f003ab028b4e85c8dd98f8b231d6ba7.json,sha256=x6ymL0OHtrFhG1A_KNJqJYatbG_IBRstFS0CDn3m8DY,1735
7533
7540
  xinference/web/ui/node_modules/.cache/babel-loader/9154e88c5bce4a863af15c500f4b71db27b4f9d5b883e58893f2b451f388c16f.json,sha256=_KZhMIEW48NMLaAwEk_gSz-MvekcqY2zDvOnlcJvftk,1309
7534
7541
  xinference/web/ui/node_modules/.cache/babel-loader/915df9b85b47ed5d41ec1bcef48b5c1700a18041b492191ee2c5171cd8af1353.json,sha256=zXm-QZkUHulIYH427BuCzp622OFiPFBGrazpUY3I1JQ,1399
@@ -8073,6 +8080,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/9c66b74bcfcaca60e466026eceb80
8073
8080
  xinference/web/ui/node_modules/.cache/babel-loader/9c68165e2826626b57788d35ff06107d190740e8f0ebb27cf6e57742d59b5f46.json,sha256=hcwDwARoPxenfxs2M5vrLAiyXiLz-Lsq4YzXj6WoHyU,5768
8074
8081
  xinference/web/ui/node_modules/.cache/babel-loader/9c69a44e61ed7ea858874f26fbb64d780717a2633c79346fd13bda07cb712ddd.json,sha256=iaB9NmmLtX4N2VcJaA957YpDYumODD2Las4fpB91NpE,1890
8075
8082
  xinference/web/ui/node_modules/.cache/babel-loader/9c73a86f025daf9473460d4416c486c39e0c3a47cf9fb055d67e0f1951d89927.json,sha256=W6Tz1V3I5Ji6sArulO5vi423xyvFqTWb6P0zBxxvOio,1502
8083
+ xinference/web/ui/node_modules/.cache/babel-loader/9c8b1a86e7c65b2b2599a205e30920652d6c2105f926508ef5bcf29a3ef4ce76.json,sha256=fFDj0kPoxIYoBBkdtioGNfvnuXYx3LI3xxXULEGQ9SM,12641
8076
8084
  xinference/web/ui/node_modules/.cache/babel-loader/9c8b3603004b778bdfc748ac451bd8177638aee95c314cbc2b1e7b10b1840a43.json,sha256=CchK7zHKncxgoeEgQZ4GgAi1EEDhenZ7JCn31FAK9Kk,1789
8077
8085
  xinference/web/ui/node_modules/.cache/babel-loader/9c8d93447911be11b24f7d14b2aff6c636a75ac4eb5e5c777a95626b4b649b00.json,sha256=cuvdh-fbUz6SUWzc05IJML3Dx18KtRrvNHWW7NUZTz0,3586
8078
8086
  xinference/web/ui/node_modules/.cache/babel-loader/9c8e5139b576cb0ed721c8e58f99e612d8312ce2d66fde7b82dd3ea0b08ae02a.json,sha256=PEEXkDgIN4bMF7_dVzX1XIO17ihaefl74Ak2TnFZAwI,1546
@@ -8424,7 +8432,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/a3ef0ae53a0b4f21d85bbb4fb5a82
8424
8432
  xinference/web/ui/node_modules/.cache/babel-loader/a3f03cbec4df500cce421fd1efdbd64a09173bcf57b05feb9bcbeda965d4d22b.json,sha256=lQ_YeeXrjiIZ8AjpLYAb4cPseEmYd6mY8hBwSVuUv9g,1274
8425
8433
  xinference/web/ui/node_modules/.cache/babel-loader/a3f0fd5b99583db00436a6495f05cdd028a382de4c03a62925aeaf5af8a26af2.json,sha256=Xuf0azpq-b2PiR1d-JhSUwIXUtvBJQWmCxG6oldAJ6s,1812
8426
8434
  xinference/web/ui/node_modules/.cache/babel-loader/a3fd339d82e8c1c17f1ffaff55c9e724a7549ac2c5a8ab75b6d67898c16a67f8.json,sha256=VSL7y_QTFuxxgtzTbPrlaMQQzZB38mb13kI5zDBT7G8,2177
8427
- xinference/web/ui/node_modules/.cache/babel-loader/a3ff866acddf34917a7ee399e0e571a4dfd8ba66d5057db885f243e16a6eb17d.json,sha256=tKiB9Pweo7P8IQHo0zkfiRslIvhOcXPm1RdXE-YOLmw,208053
8428
8435
  xinference/web/ui/node_modules/.cache/babel-loader/a400ae3500d8e2480ef56b672afcb3828cf2c620b7daa9793fbc3a9f62f9b8b1.json,sha256=Ge0HJ9BgWGRizmVVGtI6dNcfilL1p09kHkywryhrHh4,1866
8429
8436
  xinference/web/ui/node_modules/.cache/babel-loader/a403ca07d8be675101f9d4bba17a4268c0b16e88c3bdc347ecde94af2957679c.json,sha256=sQw_AHZ4NGV7OGQAZbx36pBA6I3YD_EPzU4A7cq1-Es,1137
8430
8437
  xinference/web/ui/node_modules/.cache/babel-loader/a4045b0f07b6077cb028d95a9b91c70ea074012362104bb480bcc509c3171605.json,sha256=qNjnWGkFt0aew4zPpIUshTQd_SMcqoi1m2dZJlEnVnk,2078
@@ -8596,7 +8603,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/a7d20b5a5636ed1e5553952a8f5f1
8596
8603
  xinference/web/ui/node_modules/.cache/babel-loader/a7db31d0cc7f82ec758be9d3d21113ccd0e3a6cd2e0141a9b39014b0fb30aab5.json,sha256=J5fe6pZY1BWoYwNwRrdIRCVhsSfrAazhmtGeKbReLQo,1781
8597
8604
  xinference/web/ui/node_modules/.cache/babel-loader/a7e1a4cc2f43acf5b3a2a19d6da493cdaa5dd221e144fd13cc8f62830da77b0a.json,sha256=2bys9_dgl3d3MvgvAGaigz5JysMMyDwMSiDEG38q4Xo,1924
8598
8605
  xinference/web/ui/node_modules/.cache/babel-loader/a7eaec75bbf7261c81433c8784321ae0259901b6bb31eec41b99b19cb76cf1c5.json,sha256=RfWEDF8eFTx48dpvy0S-PSZ_xrAGJ-0bhwJkiwVWmN0,1557
8599
- xinference/web/ui/node_modules/.cache/babel-loader/a7f1a71f6580dfe810c685a9c1d68e318f71e1fa258fbe50b87a6ac37cc0a598.json,sha256=x8SI08cBKI4DT-7o9y-blbdnDymU8_BoE36CmarXMe0,14798
8600
8606
  xinference/web/ui/node_modules/.cache/babel-loader/a7f3c903b756893fcd5c4e207c8a7e92439a5720acd961ce32f336185fe4ef16.json,sha256=i12n8ePKqeywE6CzIKkruMsON7UT2wHGqNVO45F9lzU,1166
8601
8607
  xinference/web/ui/node_modules/.cache/babel-loader/a7f691a4be2dea0ad4c19b1f52ea12f002b3348955958934692531dd46225c74.json,sha256=wfIN_7_nCpxt_v-ONPmmz2cNdwSsBLWsElZrGCbdyrE,2520
8602
8608
  xinference/web/ui/node_modules/.cache/babel-loader/a7f75915c01e179c9bb1107e858c41e0f7bf0fb8095579d436e8ef70354ec368.json,sha256=Q20sGL8BagDbHKlBxtot447xMliCYL-W_l4gvx9Wo74,32319
@@ -9339,6 +9345,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/b781bc2289075bbc307ba2bf90701
9339
9345
  xinference/web/ui/node_modules/.cache/babel-loader/b78534d8ba97e5ffc162f18dbe65d870ac081e7be05bfecffad0216e0fc49a69.json,sha256=e3B_3ec7UBGJ6MhLORIaqHjClfjGJnwcoUmjD2H5s8Q,2166
9340
9346
  xinference/web/ui/node_modules/.cache/babel-loader/b788f9c8d08127df3482216af800df5c211cf494d3071f178791257164dfcfb7.json,sha256=CvwDvLEK8PrdYs_JBMCnxeEy8ZVb2TX53rn5XGu_HkM,1643
9341
9347
  xinference/web/ui/node_modules/.cache/babel-loader/b78d54c0f2858f3b5c1870637e6cb5cf78ff9bc473b90c143749a9995993e127.json,sha256=EIYhrt8wUC8DRmKYaWTZ2TdCPh9Xpjo8aZUF_VefJb4,2005
9348
+ xinference/web/ui/node_modules/.cache/babel-loader/b7939cd3a48adf12fccfdd0803019b5cc235ff7de3a297dae70ce635e0eea13e.json,sha256=8GRNmmD3r7RRrlZ7ByFVv6S58kcokxup9VBo_WazQEE,12792
9342
9349
  xinference/web/ui/node_modules/.cache/babel-loader/b7967ae7e086791191dd19b7b59924c40b3e660043d730c9bd490ba884a796f0.json,sha256=Zzwz7D8_scNh_mznfUhfY0mBX9l0iT0czpZFyR5znR0,1352
9343
9350
  xinference/web/ui/node_modules/.cache/babel-loader/b7a1f207d333da771f85d59bbeaf15128cbd7500e548aca052a5a1685c025df3.json,sha256=AX1qpuwQackpyoJk2MQX4n7wSVkl1fhLa8NY8Fe5ghA,1208
9344
9351
  xinference/web/ui/node_modules/.cache/babel-loader/b7a9ac932e3623af3602e39327ef70b9f20b2d168d87935192853eef3455752a.json,sha256=pMmKzQ0ZL_Fg8dDcRdjc-Gdo5pBokGLKeVG6vv_cugM,1300
@@ -9617,7 +9624,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/bddca250ae18a2696bbae53d390e9
9617
9624
  xinference/web/ui/node_modules/.cache/babel-loader/bddcf875e7612f82fb68763864baa7e53c50ca47fb4290d22d5b0323bccf5e43.json,sha256=Zm2AWMJq5ilNwPUwia8LyMptmv86K23wBCAb78ifqlE,1733
9618
9625
  xinference/web/ui/node_modules/.cache/babel-loader/bdde6847c5379a134b5252a5f7d26a378ad9d3ea2093eaecfaa004a4bf89abf2.json,sha256=wOFW5dtHekchvy75h9ucpl0ZsyykrdbkKwFk_QYX4yk,1429
9619
9626
  xinference/web/ui/node_modules/.cache/babel-loader/bde9859bea957ff39d263ed67deba7deeae75f8845c1f8003fea3246f8b57600.json,sha256=xvBOjbLMtdtwYJJvw75pzttx-2ru1nsaROIVBkJvOxs,1457
9620
- xinference/web/ui/node_modules/.cache/babel-loader/bdee44abeadc4abc17d41c52eb49c6e19a4b1a267b6e16876ce91bdeeebfc52d.json,sha256=8eQm6DyfNyZdU73Jws0b_m9ff-GMPgSdyKve5GBqRdk,19092
9621
9627
  xinference/web/ui/node_modules/.cache/babel-loader/bdf3d4cfa020bfb455525c27c7a9661b7854c75ed7ac4c36ce4afcb6b981e2ff.json,sha256=YrKnAxiyR1jpG03GLKbLa_vS5SPPpmyggMUbuuVIsjA,1699
9622
9628
  xinference/web/ui/node_modules/.cache/babel-loader/bdf756f0d0bbf8d2ae6cb9538393af1118d7c44691c1f94eec29fa84913e8b08.json,sha256=xF0y-_ruI66csnjfPLRTmhWasN3FqNSW5uEbDCqHJUQ,1487
9623
9629
  xinference/web/ui/node_modules/.cache/babel-loader/bdfb6076ee258bd3cde6a565faa4d4324d3624daaa4d2eac9dc803af3822da02.json,sha256=_dVJY1TqVGb72DTZZP0sKNVaDveZ6OaQHelivCCE1as,494
@@ -10855,7 +10861,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/d75613f88a88197e115fad4878d13
10855
10861
  xinference/web/ui/node_modules/.cache/babel-loader/d759b2241df679e1059e984966fbe1b81f30a651a6a8aa26ab73eb3756e66287.json,sha256=GusgrgttYr7VtkNgvUmB0Zc2d-GuQ107LThf6QdEgCk,1615
10856
10862
  xinference/web/ui/node_modules/.cache/babel-loader/d75bd2b9f3cd24f7e0865a953dd4f8774d5e9f3c85fd51f6279105b2fdf245d5.json,sha256=sMbShos_gGR5VX3g83SqVHYuYF_UWviYuSgiEtkpCIY,1541
10857
10863
  xinference/web/ui/node_modules/.cache/babel-loader/d760e46bd29bac1e8ccb58ec2f980ec7604c51c01bbff339d276b391fde84589.json,sha256=EDAxqswNYSv0iW8aVetIYgYsNm0WlrVxTIXRi1u8-p4,1292
10858
- xinference/web/ui/node_modules/.cache/babel-loader/d7664d18c4ddbad9c3a6a31b91f7c00fb0dde804608674a9860ee50f33e54708.json,sha256=rOoDsHX9tvydOmOgiWdBXWGiVyC5qeeRjHRu_JmOoSk,14446
10859
10864
  xinference/web/ui/node_modules/.cache/babel-loader/d7680380a675a9632f0861b67901d9dfc62977c71409126711644b510bf17e2f.json,sha256=SVKIMqJLsgScB4B_jLpVFVD60-Z-ffxQ2SnAscNdkHo,1298
10860
10865
  xinference/web/ui/node_modules/.cache/babel-loader/d777212982ce7c44eec08a43ac0f5f92e31bc01431455dc16503287af91557dc.json,sha256=jjjIi1oIslJhj6qoBW5O1DmAlRPpGTTUgyh-_J044aw,1732
10861
10866
  xinference/web/ui/node_modules/.cache/babel-loader/d79d0270028cdc880a77c99ef91be97ddf98199fd14e7c5ef097df499e031657.json,sha256=AeIpEQtHn_qkZlgZNZzlLyNeFC065saJFWy92d-M9Sk,1183
@@ -11939,7 +11944,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/ed332503f7f9ee0b665b5e8183892
11939
11944
  xinference/web/ui/node_modules/.cache/babel-loader/ed37a4506676fe2b0ab1fcfe07c6a2279585f8121af90f2be5b6180a7b36a20f.json,sha256=FJeewi3aXSVj-5Jcuouz3w9lJppqlswz85Cwvia7jI8,3049
11940
11945
  xinference/web/ui/node_modules/.cache/babel-loader/ed48b21d0c244a7297e552bee452d2d440ee92561dfea73ca1d946fbcd9bb86e.json,sha256=s4s4mEQsgNVB_ptq1TBJIedbj2UpFEZ8jZxdVgb86C0,1404
11941
11946
  xinference/web/ui/node_modules/.cache/babel-loader/ed528b169ff6c5941b8b1fc8ada2e10d250d21867e76a09fb3f2b6c719f0a57b.json,sha256=ic1Qn1FhWevpzktCyCZscp4qtGA3p43zg16MzAUZPuk,1363
11942
- xinference/web/ui/node_modules/.cache/babel-loader/ed57202cb79649bb716400436590245547df241988fc7c8e1d85d132299542d2.json,sha256=02rj8-yoiMC4-1ttT-O_RctuBq6658prnxskUDHlg6M,21135
11943
11947
  xinference/web/ui/node_modules/.cache/babel-loader/ed57c2762de9d32b9e6cfcb19b3213d4ab63d6cf0ba04d1ecaddd5f81cf71927.json,sha256=wZfwM8MpcVhdFfZWd2XL7Uw-Jg26cNisP0AFvxcGp64,1050
11944
11948
  xinference/web/ui/node_modules/.cache/babel-loader/ed580bd00e2356af6688efd3e478c030cfa0dad33e679128213b1245451afbca.json,sha256=bx7h-9YTZQVSBeIbTBs9W2Y4r4wfHUs0goH37W6D8CE,1483
11945
11949
  xinference/web/ui/node_modules/.cache/babel-loader/ed5b124e59321bdf3229bdfada580243b9d91db1af4330b6f7d930a76b946156.json,sha256=qIY_6ZbPTgwkkDiBmiUYJnLgq5KmLROKg0UaYUgtzig,1218
@@ -12067,6 +12071,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/efd06c9b72302b6b58b3563d82d45
12067
12071
  xinference/web/ui/node_modules/.cache/babel-loader/efd90630b30899f1f75400c2fae3b571c18ed6294840859b8a39595df6e6978f.json,sha256=uZgR_vvec1oaq8GfnvZzJKJIQ9vAm6MANBq-7I34ZXo,737
12068
12072
  xinference/web/ui/node_modules/.cache/babel-loader/efda6a63c1848c0ce167e1b973dc4f7f9592eca1162c90645b03bd98d321ba70.json,sha256=KMi7VGHfajydwYL8yBUhnOaXdP30Jbk1Pcx6z93PY5A,1762
12069
12073
  xinference/web/ui/node_modules/.cache/babel-loader/efe4b1c80ad6358eb47fa8b6d2caf49f9b2296348bc4cdd712ca1758f8f55b0d.json,sha256=fSBSIWmn-d3WczyNVUnrgkKyUzrdTONmyTbGpZha314,1324
12074
+ xinference/web/ui/node_modules/.cache/babel-loader/efe7cd132c27a8f9fd5352a394c491fd5fb0da0348cf9fcbd923164a32365eab.json,sha256=Myq5ZxeTVXrcDy1WBR4HMcUy35mzzYaqFyqh-t6lC2A,2302
12070
12075
  xinference/web/ui/node_modules/.cache/babel-loader/efea6594182cee0d93c801f2910632919e3552042fef51d3ebea79aa51b76e25.json,sha256=gQosRxYmYBCwuCrRIF1SBgPezsHeroXmcPMA4sLzCoM,2086
12071
12076
  xinference/web/ui/node_modules/.cache/babel-loader/efeaaadb07d6dcf8a039b42072d72840a568c63cfad8953b191af9b20701dc6b.json,sha256=BJAxjH9znwnXoJCf70zdZNKtKVNvNuqYmYUqtYb3DeU,1987
12072
12077
  xinference/web/ui/node_modules/.cache/babel-loader/eff683273a9fddddb4d220a0ee3ddd832687dadef5cdd63a2a5d5a0d80d55ce3.json,sha256=7_r-lLmKca1p7WkubkeBLI01cBJpTonI0WK_7yb1ckQ,1775
@@ -12085,6 +12090,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/f04b85fd2567c088561ff54219724
12085
12090
  xinference/web/ui/node_modules/.cache/babel-loader/f04b8659a5d4c759ae1dc03c99d3aa47069d926cf6c69ed1079e8cfae675150d.json,sha256=6EeLM-IONJG6WeOoO0_4eohmamysvPTlfE7R_IBE2Pw,1387
12086
12091
  xinference/web/ui/node_modules/.cache/babel-loader/f04cc8160028d390f6226ea385e51117728b6ff5af12bb6045b49f7f24a1c441.json,sha256=cyXug2k7F10Dtfn_nOfPW2QyqwvfIDna6g1VcCq6M_w,1297
12087
12092
  xinference/web/ui/node_modules/.cache/babel-loader/f04da9ca845f9ae70b9502dc59ed3aa4f1f84b9658ff04f18ff001e8564bfe77.json,sha256=oD3gRBgnnvv7rTEr_EkK72aQl8_5LkiWOkInifnI66c,1165
12093
+ xinference/web/ui/node_modules/.cache/babel-loader/f04f666b77b44d7be3e16034d6b0074de2ba9c254f1fae15222b3148608fa8b3.json,sha256=tNVK4_jku_R-DX7M76M-6bhS8P2ZEIQFzZ4Jdwp60os,19199
12088
12094
  xinference/web/ui/node_modules/.cache/babel-loader/f05218f3e78ea53f8e484c7ea465dd1a6a59bce502a134a7e454d68030b112ea.json,sha256=pr708OjlFqQzlV4xbJp8bDY1Q9BvcoVPefXp8tLdt00,2205
12089
12095
  xinference/web/ui/node_modules/.cache/babel-loader/f05db010582e06034fa213ddc74b25a00e6c33b14cfc02fbe9d024148644558b.json,sha256=1DjTYgaFYfSpExHYu9M4SB9SCaQima386qVichzRu6M,1232
12090
12096
  xinference/web/ui/node_modules/.cache/babel-loader/f05ff460602f9056c79216d1e567478c5de3604822e0fe2f0093004cc1e00dea.json,sha256=IAEZ900XB4aOvSzHyvzTeWibNgRQhHDPCS1boS0YMds,53011
@@ -12792,6 +12798,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/febc804f13cb1501290144cecb92b
12792
12798
  xinference/web/ui/node_modules/.cache/babel-loader/febdc02fadc2ae34a00be570e4e7f5b7d29ca8fef1cdca0cef51fd244e7a2d20.json,sha256=WFcG4YB68wZlZr9Ice4BUF3KkFyKshzGOPti3Kx2s-k,1395
12793
12799
  xinference/web/ui/node_modules/.cache/babel-loader/fec0b70888177c0c8379d82348f2aae43ff4c643b8b7371fb53938ff50f5b703.json,sha256=Ym8FSq1J-TcbsBpZqODN-I7Twe0CIzNPshwZ-u9Kg9Q,1826
12794
12800
  xinference/web/ui/node_modules/.cache/babel-loader/fec98fb082a38451a92031a9f50442461f42ae96e43aaed01ad8b15aec070994.json,sha256=RzaAVO0T7q4ISvipZZzplI3UriHRGwvDe14PJDhxoeU,1852
12801
+ xinference/web/ui/node_modules/.cache/babel-loader/fecf076bcd198a458c2a6ab0e85e40dc1c99994c353164e79c469be162cb74c9.json,sha256=965flNTvROIBsid1a8iMWUZ63C8kSBzSJZ0oKdL4WEw,3139
12795
12802
  xinference/web/ui/node_modules/.cache/babel-loader/fed6adf1cc3c472a4a32368a96353568aa27ae0406c3ad83f8cf316c5904247c.json,sha256=jWY-IxnGix528saAGkqYkLQu6wLTUNdGm4i0l1WTjd0,18801
12796
12803
  xinference/web/ui/node_modules/.cache/babel-loader/fedcfa64f03dc5600dbe76861d8c6d00fc39b81dd354a297771193596365e53e.json,sha256=F3XWftc4UW24re1Yo_enczG8wY70XQl3YBCpzd_mSQY,1587
12797
12804
  xinference/web/ui/node_modules/.cache/babel-loader/fee116a3659971a5130a563d92900eebd9c28c6ebe6acbf7af12dc1924ad136b.json,sha256=unF9yh6QmL9UmJCVyj6cPUd0sVXp5GNypFt9oMuGeww,1234
@@ -15716,11 +15723,11 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
15716
15723
  xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
15717
15724
  xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
15718
15725
  xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
15719
- xinference/web/ui/src/locales/en.json,sha256=MahpAAKmZPqtK5-M_kwdI9IUbBP-GcNqI0jSTVXHEE8,8169
15720
- xinference/web/ui/src/locales/zh.json,sha256=9-Hu72a9FSB1ZCUMkKDzopBTh7Aer6b-3PB62cYxsOg,7933
15721
- xinference-1.2.1.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15722
- xinference-1.2.1.dist-info/METADATA,sha256=NUwKoNtMeFa3TkRJMqGYa7E-HLCZqOxBysi6gNHY-c4,23919
15723
- xinference-1.2.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
15724
- xinference-1.2.1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15725
- xinference-1.2.1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15726
- xinference-1.2.1.dist-info/RECORD,,
15726
+ xinference/web/ui/src/locales/en.json,sha256=OS25toIZHXcGYPtl5rZRQfJEDuAyrwBIYM6GGxOVe4Y,8641
15727
+ xinference/web/ui/src/locales/zh.json,sha256=mBhTne0sIYLe_xh5qyH45W_D50Hjp-DKdwcifYEHFnw,8386
15728
+ xinference-1.3.0.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15729
+ xinference-1.3.0.dist-info/METADATA,sha256=9Ad2j0ziQ8Xm7bxxRjr7URv5kS4k3m6xH2IcJSN345U,24121
15730
+ xinference-1.3.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
15731
+ xinference-1.3.0.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15732
+ xinference-1.3.0.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15733
+ xinference-1.3.0.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}.formContainer{height:80%;overflow:scroll;padding:0 10px}.buttonsContainer{align-items:center;bottom:50px;display:flex;justify-content:space-between;left:100px;position:absolute;right:100px}.buttonContainer{background-color:initial;border-width:0;width:45%}.buttonItem{border:1px solid #e5e7eb;border-radius:4px;cursor:pointer;padding:5px;width:100%}.buttonItem:hover{border-color:#888}.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{background-color:#fff;height:607px;margin:32px;overflow-x:scroll;width:1241px}.dialogTitle{color:#000;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{background-color:#fff;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}.textarea-box{border:1px solid #ddd;border-radius:5px;color:#444;height:100%;padding:5px 10px;resize:none;width:100%}.but-box{display:flex;justify-content:end;margin-top:20px}.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:#444;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.51a587ff.css.map*/
@@ -1 +0,0 @@
1
- {"version":3,"file":"static/css/main.51a587ff.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,eACE,UAAW,CACX,eAAgB,CAChB,cACF,CACA,kBAOE,kBAAmB,CALnB,WAAY,CAGZ,YAAa,CACb,6BAA8B,CAH9B,UAAW,CAFX,iBAAkB,CAGlB,WAIF,CACA,iBAGE,wBAA6B,CAD7B,cAAiB,CADjB,SAGF,CACA,YAOE,wBAAqB,CAHrB,iBAAkB,CAHlB,cAAe,CAEf,WAAY,CADZ,UAMF,CACA,kBACE,iBACF,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,WAGE,qBAAsB,CADtB,YAAa,CAEb,WAAY,CACZ,iBAAkB,CAJlB,YAKF,CACA,aAIE,UAAW,CAHX,YAAa,CACb,6BAA8B,CAC9B,qBAEF,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,YAIE,qBAAsB,CAEtB,iBAAkB,CADlB,UAAW,CAJX,YAAa,CACb,qBAAsB,CACtB,iBAIF,CACA,kBAGE,kBAAmB,CAFnB,YAAa,CACb,6BAA8B,CAE9B,kBACF,CACA,YACE,cAAe,CACf,eACF,CACA,UAEE,YAAa,CADb,WAEF,CACA,cAIE,qBAAsB,CACtB,iBAAkB,CAElB,UAAW,CALX,WAAY,CACZ,gBAAiB,CAGjB,WAAY,CALZ,UAOF,CACA,SACE,YAAa,CACb,mBAAoB,CACpB,eACF,CCtLA,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.formContainer {\n height: 80%;\n overflow: scroll;\n padding: 0 10px;\n}\n.buttonsContainer {\n position: absolute;\n bottom: 50px;\n left: 100px;\n right: 100px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n.buttonContainer {\n width: 45%;\n border-width: 0px;\n background-color: transparent;\n}\n.buttonItem {\n cursor: pointer;\n width: 100%;\n padding: 5px;\n border-radius: 4px;\n border: 1px solid #e5e7eb;\n border-width: 1px;\n border-color: #e5e7eb;\n}\n.buttonItem:hover {\n border-color: #888;\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 background-color: #fff;\n margin: 32px;\n overflow-x: scroll;\n}\n.dialogTitle {\n display: flex;\n justify-content: space-between;\n padding: 20px 20px 7px;\n color: #000;\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 background-color: #fff;\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.textarea-box {\n width: 100%;\n height: 100%;\n padding: 5px 10px;\n border: 1px solid #ddd;\n border-radius: 5px;\n resize: none;\n color: #444;\n}\n.but-box {\n display: flex;\n justify-content: end;\n margin-top: 20px;\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: #444;\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":""}