xinference 1.4.0__py3-none-any.whl → 1.5.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 (132) hide show
  1. xinference/_compat.py +1 -0
  2. xinference/_version.py +3 -3
  3. xinference/api/restful_api.py +54 -1
  4. xinference/client/restful/restful_client.py +82 -2
  5. xinference/constants.py +3 -0
  6. xinference/core/chat_interface.py +297 -83
  7. xinference/core/model.py +24 -3
  8. xinference/core/progress_tracker.py +16 -8
  9. xinference/core/supervisor.py +51 -1
  10. xinference/core/worker.py +315 -47
  11. xinference/deploy/cmdline.py +33 -1
  12. xinference/model/audio/core.py +11 -1
  13. xinference/model/audio/megatts.py +105 -0
  14. xinference/model/audio/model_spec.json +24 -1
  15. xinference/model/audio/model_spec_modelscope.json +26 -1
  16. xinference/model/core.py +14 -0
  17. xinference/model/embedding/core.py +6 -1
  18. xinference/model/flexible/core.py +6 -1
  19. xinference/model/image/core.py +6 -1
  20. xinference/model/image/model_spec.json +17 -1
  21. xinference/model/image/model_spec_modelscope.json +17 -1
  22. xinference/model/llm/__init__.py +4 -6
  23. xinference/model/llm/core.py +5 -0
  24. xinference/model/llm/llama_cpp/core.py +46 -17
  25. xinference/model/llm/llm_family.json +530 -85
  26. xinference/model/llm/llm_family.py +24 -1
  27. xinference/model/llm/llm_family_modelscope.json +572 -1
  28. xinference/model/llm/mlx/core.py +16 -2
  29. xinference/model/llm/reasoning_parser.py +3 -3
  30. xinference/model/llm/sglang/core.py +111 -13
  31. xinference/model/llm/transformers/__init__.py +14 -0
  32. xinference/model/llm/transformers/core.py +31 -6
  33. xinference/model/llm/transformers/deepseek_vl.py +1 -1
  34. xinference/model/llm/transformers/deepseek_vl2.py +287 -0
  35. xinference/model/llm/transformers/gemma3.py +17 -2
  36. xinference/model/llm/transformers/intern_vl.py +28 -18
  37. xinference/model/llm/transformers/minicpmv26.py +21 -2
  38. xinference/model/llm/transformers/qwen-omni.py +308 -0
  39. xinference/model/llm/transformers/qwen2_audio.py +1 -1
  40. xinference/model/llm/transformers/qwen2_vl.py +20 -4
  41. xinference/model/llm/utils.py +37 -15
  42. xinference/model/llm/vllm/core.py +184 -8
  43. xinference/model/llm/vllm/distributed_executor.py +320 -0
  44. xinference/model/rerank/core.py +22 -12
  45. xinference/model/utils.py +118 -1
  46. xinference/model/video/core.py +6 -1
  47. xinference/thirdparty/deepseek_vl2/__init__.py +31 -0
  48. xinference/thirdparty/deepseek_vl2/models/__init__.py +26 -0
  49. xinference/thirdparty/deepseek_vl2/models/configuration_deepseek.py +210 -0
  50. xinference/thirdparty/deepseek_vl2/models/conversation.py +310 -0
  51. xinference/thirdparty/deepseek_vl2/models/modeling_deepseek.py +1975 -0
  52. xinference/thirdparty/deepseek_vl2/models/modeling_deepseek_vl_v2.py +697 -0
  53. xinference/thirdparty/deepseek_vl2/models/processing_deepseek_vl_v2.py +675 -0
  54. xinference/thirdparty/deepseek_vl2/models/siglip_vit.py +661 -0
  55. xinference/thirdparty/deepseek_vl2/serve/__init__.py +0 -0
  56. xinference/thirdparty/deepseek_vl2/serve/app_modules/__init__.py +0 -0
  57. xinference/thirdparty/deepseek_vl2/serve/app_modules/gradio_utils.py +83 -0
  58. xinference/thirdparty/deepseek_vl2/serve/app_modules/overwrites.py +81 -0
  59. xinference/thirdparty/deepseek_vl2/serve/app_modules/presets.py +115 -0
  60. xinference/thirdparty/deepseek_vl2/serve/app_modules/utils.py +333 -0
  61. xinference/thirdparty/deepseek_vl2/serve/assets/Kelpy-Codos.js +100 -0
  62. xinference/thirdparty/deepseek_vl2/serve/assets/avatar.png +0 -0
  63. xinference/thirdparty/deepseek_vl2/serve/assets/custom.css +355 -0
  64. xinference/thirdparty/deepseek_vl2/serve/assets/custom.js +22 -0
  65. xinference/thirdparty/deepseek_vl2/serve/assets/favicon.ico +0 -0
  66. xinference/thirdparty/deepseek_vl2/serve/assets/simsun.ttc +0 -0
  67. xinference/thirdparty/deepseek_vl2/serve/inference.py +197 -0
  68. xinference/thirdparty/deepseek_vl2/utils/__init__.py +18 -0
  69. xinference/thirdparty/deepseek_vl2/utils/io.py +80 -0
  70. xinference/thirdparty/megatts3/__init__.py +0 -0
  71. xinference/thirdparty/megatts3/tts/frontend_function.py +175 -0
  72. xinference/thirdparty/megatts3/tts/gradio_api.py +93 -0
  73. xinference/thirdparty/megatts3/tts/infer_cli.py +277 -0
  74. xinference/thirdparty/megatts3/tts/modules/aligner/whisper_small.py +318 -0
  75. xinference/thirdparty/megatts3/tts/modules/ar_dur/ar_dur_predictor.py +362 -0
  76. xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/layers.py +64 -0
  77. xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/nar_tts_modules.py +73 -0
  78. xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/rel_transformer.py +403 -0
  79. xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/rot_transformer.py +649 -0
  80. xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/seq_utils.py +342 -0
  81. xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/transformer.py +767 -0
  82. xinference/thirdparty/megatts3/tts/modules/llm_dit/cfm.py +309 -0
  83. xinference/thirdparty/megatts3/tts/modules/llm_dit/dit.py +180 -0
  84. xinference/thirdparty/megatts3/tts/modules/llm_dit/time_embedding.py +44 -0
  85. xinference/thirdparty/megatts3/tts/modules/llm_dit/transformer.py +230 -0
  86. xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/diag_gaussian.py +67 -0
  87. xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/hifigan_modules.py +283 -0
  88. xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/seanet_encoder.py +38 -0
  89. xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/wavvae_v3.py +60 -0
  90. xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/conv.py +154 -0
  91. xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/lstm.py +51 -0
  92. xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/seanet.py +126 -0
  93. xinference/thirdparty/megatts3/tts/utils/audio_utils/align.py +36 -0
  94. xinference/thirdparty/megatts3/tts/utils/audio_utils/io.py +95 -0
  95. xinference/thirdparty/megatts3/tts/utils/audio_utils/plot.py +90 -0
  96. xinference/thirdparty/megatts3/tts/utils/commons/ckpt_utils.py +171 -0
  97. xinference/thirdparty/megatts3/tts/utils/commons/hparams.py +215 -0
  98. xinference/thirdparty/megatts3/tts/utils/text_utils/dict.json +1 -0
  99. xinference/thirdparty/megatts3/tts/utils/text_utils/ph_tone_convert.py +94 -0
  100. xinference/thirdparty/megatts3/tts/utils/text_utils/split_text.py +90 -0
  101. xinference/thirdparty/megatts3/tts/utils/text_utils/text_encoder.py +280 -0
  102. xinference/types.py +10 -0
  103. xinference/utils.py +54 -0
  104. xinference/web/ui/build/asset-manifest.json +6 -6
  105. xinference/web/ui/build/index.html +1 -1
  106. xinference/web/ui/build/static/css/main.0f6523be.css +2 -0
  107. xinference/web/ui/build/static/css/main.0f6523be.css.map +1 -0
  108. xinference/web/ui/build/static/js/main.58bd483c.js +3 -0
  109. xinference/web/ui/build/static/js/main.58bd483c.js.map +1 -0
  110. xinference/web/ui/node_modules/.cache/babel-loader/3bff8cbe9141f937f4d98879a9771b0f48e0e4e0dbee8e647adbfe23859e7048.json +1 -0
  111. xinference/web/ui/node_modules/.cache/babel-loader/4500b1a622a031011f0a291701e306b87e08cbc749c50e285103536b85b6a914.json +1 -0
  112. xinference/web/ui/node_modules/.cache/babel-loader/51709f5d3e53bcf19e613662ef9b91fb9174942c5518987a248348dd4e1e0e02.json +1 -0
  113. xinference/web/ui/node_modules/.cache/babel-loader/69081049f0c7447544b7cfd73dd13d8846c02fe5febe4d81587e95c89a412d5b.json +1 -0
  114. xinference/web/ui/node_modules/.cache/babel-loader/b8551e9775a01b28ae674125c688febe763732ea969ae344512e64ea01bf632e.json +1 -0
  115. xinference/web/ui/node_modules/.cache/babel-loader/bf2b211b0d1b6465eff512d64c869d748f803c5651a7c24e48de6ea3484a7bfe.json +1 -0
  116. xinference/web/ui/src/locales/en.json +2 -1
  117. xinference/web/ui/src/locales/zh.json +2 -1
  118. {xinference-1.4.0.dist-info → xinference-1.5.0.dist-info}/METADATA +128 -115
  119. {xinference-1.4.0.dist-info → xinference-1.5.0.dist-info}/RECORD +124 -63
  120. {xinference-1.4.0.dist-info → xinference-1.5.0.dist-info}/WHEEL +1 -1
  121. xinference/web/ui/build/static/css/main.b494ae7e.css +0 -2
  122. xinference/web/ui/build/static/css/main.b494ae7e.css.map +0 -1
  123. xinference/web/ui/build/static/js/main.3cea968e.js +0 -3
  124. xinference/web/ui/build/static/js/main.3cea968e.js.map +0 -1
  125. xinference/web/ui/node_modules/.cache/babel-loader/27bcada3ee8f89d21184b359f022fc965f350ffaca52c9814c29f1fc37121173.json +0 -1
  126. xinference/web/ui/node_modules/.cache/babel-loader/7f59e45e3f268ab8a4788b6fb024cf8dab088736dff22f5a3a39c122a83ab930.json +0 -1
  127. xinference/web/ui/node_modules/.cache/babel-loader/dcd60488509450bfff37bfff56de2c096d51de17dd00ec60d4db49c8b483ada1.json +0 -1
  128. xinference/web/ui/node_modules/.cache/babel-loader/e547bbb18abb4a474b675a8d5782d25617566bea0af8caa9b836ce5649e2250a.json +0 -1
  129. /xinference/web/ui/build/static/js/{main.3cea968e.js.LICENSE.txt → main.58bd483c.js.LICENSE.txt} +0 -0
  130. {xinference-1.4.0.dist-info → xinference-1.5.0.dist-info}/entry_points.txt +0 -0
  131. {xinference-1.4.0.dist-info → xinference-1.5.0.dist-info/licenses}/LICENSE +0 -0
  132. {xinference-1.4.0.dist-info → xinference-1.5.0.dist-info}/top_level.txt +0 -0
@@ -1,15 +1,15 @@
1
1
  xinference/__init__.py,sha256=nmTTrYbIpj964ZF6ojtgOM7E85JBOj1EyQbmYjbj1jw,915
2
- xinference/_compat.py,sha256=URSJQLXrcsTO9B_4x0wVDPijYQDhuVJmZ95npID560w,4197
3
- xinference/_version.py,sha256=WSAoAhUZgTTouL5wbCTJZXIahCw1mzxA10HNJ5X7BJY,497
2
+ xinference/_compat.py,sha256=YF-lS6tX06zkFi2oFS0yq_LBn4hX_8u0Ft0vKxGALwA,4238
3
+ xinference/_version.py,sha256=1Z0L0WmYM12E-CH2cIT6DQh8Oz7vaYuHhpfjAWcD340,497
4
4
  xinference/conftest.py,sha256=ZB7li77s4_H4ZEQpDo2PX-b4zrs8-bIpvh59P_CaSoo,9691
5
- xinference/constants.py,sha256=mEW4HDzjXtDXN61Mt6TtJrJ4ljbB6VUkh97e3oDbNx4,3905
5
+ xinference/constants.py,sha256=tKdiCDPK1ilx-2fg-w_wf8OqTmwzfYOsg8MtqzXxT6I,4125
6
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=fhz2qO_CzOu9_w_pT0D1lPL_mkx_2HVC5f1X0yZiWr4,13317
10
- xinference/utils.py,sha256=zYgf9bCvfbybRt3gEog6r5WJCpj0czZCf0qgRdYjkN8,720
9
+ xinference/types.py,sha256=C2sWumkGaof_rDIE-_P7Jgaua-RpWV5TvgGy6OL6SPo,13533
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=GENX8AMUFxHjhImCIZYorxYonGOixzHhuQBLOsB7orI,92774
12
+ xinference/api/restful_api.py,sha256=tfplJVY9hhkN_ZP8PlEyGvPkFoOX1iNdnDGFOGWKh4c,94888
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=DofFF0ZaOmBpCVp9qtAeYDGbvd-KS5u4_GMGp8AbbM4,53994
21
+ xinference/client/restful/restful_client.py,sha256=PS-WIsE4dRzoxDtVTFd-YBYe-LRhv8PRHN_eX_fgqmg,56620
22
22
  xinference/core/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
23
23
  xinference/core/cache_tracker.py,sha256=3ubjYCU5aZToSp2GEuzedECVrg-PR4kThTefrFUkb9g,6971
24
- xinference/core/chat_interface.py,sha256=0w5CoMyCp0gWUoGmLrjlPQMwMtHD-Zbu4jhUYuHYSBs,21794
24
+ xinference/core/chat_interface.py,sha256=GbjCZgxv9t14r7-DK7G2tB5Xhuze8R4nLiB92D4mBjo,31174
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=8JMm_h-d6Zl1qHcqh9pcHHnAGuKE9DhsLzN0UV6R7rc,44225
29
- xinference/core/progress_tracker.py,sha256=LIF6CLIlnEoSBkuDCraJktDOzZ31mQ4HOo6EVr3KpQM,6453
28
+ xinference/core/model.py,sha256=Vu3JjebUFmNZjZQyGOTTZv5KF_Jj1c6c_yCRYFVIhQM,45165
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=0rbbaVYQ4g2W8P3tbbHonmFjFkllmoPB3OtkVPr5crA,15650
32
32
  xinference/core/status_guard.py,sha256=VLhyqpobdclfyzcROqf4bmGDiKpuHllto316X3Z6Hrc,2860
33
- xinference/core/supervisor.py,sha256=JgfEY7LkP9m48abukMXKBumEqeV9Q-IImSAJjk6YslE,69304
33
+ xinference/core/supervisor.py,sha256=NrJEPGZhQWBkGkUdnng4-A1A01qS7MU7qS5BaBs6gVs,71454
34
34
  xinference/core/utils.py,sha256=TpUHNFcA4pEXq084Quz-ilIccuDMUAsdLrEJxj0Zn6I,10414
35
- xinference/core/worker.py,sha256=M16ixEI0y9DzsyqpTLiYNhYbAxUFvM0GgnTpyh7iLZU,51749
35
+ xinference/core/worker.py,sha256=2SLMDDFtSST2IZl8fOlitZ1toXoyrzHJO4hOkaSDzEc,61874
36
36
  xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
37
- xinference/deploy/cmdline.py,sha256=fOuD4HixyI6VuuVO7XJ-0_C3JutDe1sv4MwVjZPluS8,49338
37
+ xinference/deploy/cmdline.py,sha256=Zn43Hl2tdQ5ac-PSO2hVodZSZOkCH2aLdlHy4B5Ptaw,50466
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=jdL7i2WV6u_BZ8IiE1d3YktvCARcB3ntzMQ5rHGD5DM,6756
@@ -42,11 +42,11 @@ 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=_NEH4wkjjJgRDdLHNVY_hL3V0kT67CvTay89uIzx1Ns,4736
46
- xinference/model/utils.py,sha256=_yJ5h4RUzt7Kjs2WdjSzbVM3FTWEkX0ycOnXANZ9KVg,11394
45
+ xinference/model/core.py,sha256=FKiT0D2-FGbxLtaf4C01Yrn8t3n6AYHXGY9WowycxZc,5057
46
+ xinference/model/utils.py,sha256=xsu1TIj2ATyA1h2okEl2rdtdjytFsFCDnwLgPdd_KjQ,14947
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=AAuss7fGwGktcB_aGRwuR4TJIM6-Rrm0YCU752QoxfQ,7710
49
+ xinference/model/audio/core.py,sha256=CSpzGdThG5Ic5qJgR9DOFD-T1QGU8HBNJITJSVPBDT0,8041
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
@@ -54,29 +54,30 @@ xinference/model/audio/f5tts_mlx.py,sha256=SbYIo1C3EfZ8L30P7OTx0Dx7KuXIIpQKf8uZq
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
56
  xinference/model/audio/kokoro.py,sha256=7gqMqsW9NW3xm9zOXbqB4y_1UmMnI5JCub14K3iyLL4,3729
57
+ xinference/model/audio/megatts.py,sha256=fA2_vbEZ1ggIh2xSGacnyp72Kn2TyQGfjxFlO_w-oGw,3369
57
58
  xinference/model/audio/melotts.py,sha256=lJdOsce2mMOTQIslv6xq1JTEO7vC6Q9ga2xjY-_E7uw,3493
58
- xinference/model/audio/model_spec.json,sha256=beNfOVUFDKoZcviekvqVmESeRdZHMCVUB7lwmt3r-Q0,10477
59
- xinference/model/audio/model_spec_modelscope.json,sha256=aFCqDC74wlisqhWzt42k0vE42b8eshfz2YXhJf95nNQ,3029
59
+ xinference/model/audio/model_spec.json,sha256=vYxBd1ZQ6eanRMEFcKn0bUXo_dyxxhXHiYKZejrk8Ao,11126
60
+ xinference/model/audio/model_spec_modelscope.json,sha256=gc5o9kMLmo5vEeP7A1DXwvMoOclS5I2M7S7QP8UyBr0,3706
60
61
  xinference/model/audio/utils.py,sha256=fnnQfZlhH6DRw6beXPUIO28u6qu2GgCONrWDIsTCNkw,1591
61
62
  xinference/model/audio/whisper.py,sha256=NePQOYy2CnVqi7g6uY9hq5tlUIxZ995FOIOPsPZCfJ8,9058
62
63
  xinference/model/audio/whisper_mlx.py,sha256=zBuCd7GUlsN9FC_-J11gqIkOCicihfbqxoabiXTvH2Q,7237
63
64
  xinference/model/embedding/__init__.py,sha256=1GmvQsbeeVUT-VRaRGetf8UT4RQgLWIzfp5kfX5jw-k,3567
64
- xinference/model/embedding/core.py,sha256=tKUtZrf8gNatFibK56H-TMtvhBTOlMe4QPVUUeupJZI,32587
65
+ xinference/model/embedding/core.py,sha256=W4xQP3zCZLnWqSc__VM6xm8pUxFON49o-JXhAIZkzVY,32719
65
66
  xinference/model/embedding/custom.py,sha256=757KncqhsOWVypHZFtuhBP_xy-UTNaFdy0BuZRfuIV8,3848
66
67
  xinference/model/embedding/model_spec.json,sha256=EqoR3mubGwCRhAiG6airmS1i881MAxRcwG0FkTyODjs,7233
67
68
  xinference/model/embedding/model_spec_modelscope.json,sha256=XGXKaB0sI-pDuboCW39AIugRuDFNvQE6hNhp67uoKsA,6414
68
69
  xinference/model/embedding/utils.py,sha256=t_y-7TrYenJKzX3p8e8KWXyC66u7Kd7lMvSzEOolnZw,790
69
70
  xinference/model/flexible/__init__.py,sha256=DUAfq9vaiXOfUJfP2WRfqDmGfMtKMqRE-wLETaJw4_w,1718
70
- xinference/model/flexible/core.py,sha256=3REGHL9uUTgwgEEr6qv5uNMq-j-7by4bAco7QNwwxx4,7231
71
+ xinference/model/flexible/core.py,sha256=gxeVvKgiSiD7NKLw4FtmyPtWtSx6puW_W0TLJa9H4GQ,7363
71
72
  xinference/model/flexible/utils.py,sha256=_GlEarRHKPAxT7o6N39VOd9sB580zKzdSktqjbdrNig,1145
72
73
  xinference/model/flexible/launchers/__init__.py,sha256=X8w_2hKuQ9H3f90XYK7H_AQU4J8lHQdEeUNBZcdqso8,704
73
74
  xinference/model/flexible/launchers/image_process_launcher.py,sha256=APbbHls0N9DpLFL6_qTexuc5o6bQAvdgJEAZWU4clyw,2510
74
75
  xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRUGhulP4PRJ4fZEJ2D9cfv7lcC2qJBoDE,2012
75
76
  xinference/model/image/__init__.py,sha256=80HBIbKh6lh-BgNaTo6k0TxxKjdG30bwHAdCiwVk6wk,3198
76
- xinference/model/image/core.py,sha256=hsYQMqQYtdyBVzMvaiXDVnwvRGggDjYO6yDyZgBDt9E,12947
77
+ xinference/model/image/core.py,sha256=SYlUS-aTI3y5LvmWXivdEV5HbjY1Mpe-_kXge8E_4RE,13079
77
78
  xinference/model/image/custom.py,sha256=5gjujQpJVTJ-pVB5LzBo4-bWKKOHzFlRaoRKJ_CuIUg,3769
78
- xinference/model/image/model_spec.json,sha256=6bj35tYYY8xjohTPCXzhcsa2QQmzs763YdJilgItYPE,9514
79
- xinference/model/image/model_spec_modelscope.json,sha256=I0U-cw4UivqpsR0BMLxXrrljRUytTg8GgcnqnA3VHBU,8395
79
+ xinference/model/image/model_spec.json,sha256=BvH1A1G8lpa_NuXi8XPJSA5E4ZOdnN7f4vJm1acgSBU,9904
80
+ xinference/model/image/model_spec_modelscope.json,sha256=MGnnOve5DXD3BryYRpkrhb8DAOdTEmaQxb_j488J6tA,8785
80
81
  xinference/model/image/sdapi.py,sha256=Xgdtnvw4Xwj1Nc0cBoDo_ogH6E2mFJqLvX0jSxxgdnA,5936
81
82
  xinference/model/image/utils.py,sha256=sJCxC8iCS7r9sVY4edKz2DYaZ-ebq_t9HjL7fZMS8z8,2344
82
83
  xinference/model/image/ocr/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
@@ -86,50 +87,53 @@ xinference/model/image/scheduler/flux.py,sha256=GHlpPfU5UxsiQWNyvNe9SaVZceNg_2Ci
86
87
  xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
87
88
  xinference/model/image/stable_diffusion/core.py,sha256=V3BaASwx8q1YERb4jhhaYEDFiwh3BuPAz8pVZTuktAQ,24717
88
89
  xinference/model/image/stable_diffusion/mlx.py,sha256=GZsozzGB04NfHAdU9MI6gwWE1t_A-s_Ddn_ic8DlkKQ,7476
89
- xinference/model/llm/__init__.py,sha256=8VgajAqcu_YzgyT2PI--fnGMaVEae0w6Fk0uByeg7qY,14320
90
- xinference/model/llm/core.py,sha256=2AYRKdiJ5L1iKU9CE_C09IbEtE2KrsIy4dqkqg2txes,8626
91
- xinference/model/llm/llm_family.json,sha256=xWsttyqRVA1gA_dHtSGojger-5V1-RLQrqA7NLcWCeE,382781
92
- xinference/model/llm/llm_family.py,sha256=SrgTmEKspAELhVqmMs7Rz6xUk7rmc9V61urvbWAZOVE,39214
90
+ xinference/model/llm/__init__.py,sha256=zcxTHIT0Fn-KJOpfTH6PXIqGBvuQInyPmxf1Su5_uL8,14281
91
+ xinference/model/llm/core.py,sha256=nQ6j-VH9hVypDbrbv84tpZUp9IRM-gGYbCbTYvznEoQ,8740
92
+ xinference/model/llm/llm_family.json,sha256=sb6-c_kll4UUmba8t2Cd6bLGFfpaJSnD2bOdHlpQNOY,402899
93
+ xinference/model/llm/llm_family.py,sha256=WXSqCY14TM38HujFU7bhPPGDZ47JRgqPvmFr_bG42Tk,39894
93
94
  xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
94
- xinference/model/llm/llm_family_modelscope.json,sha256=6VEeP5kPRAn9GKcInoHtizAyXU6PSPaVIsLoM7r85LU,312680
95
+ xinference/model/llm/llm_family_modelscope.json,sha256=4ABxZkWu4xA4-XhnzbX9tIElqy7yQChKHaymHiWgpPo,336514
95
96
  xinference/model/llm/llm_family_openmind_hub.json,sha256=jl9pfbe5DztoxgEwKBxDk1Wd7TziTiJ48_Ie_lJdYjA,67872
96
97
  xinference/model/llm/memory.py,sha256=GLNmXBI-AtMbuaJfEf50fnhN4rdbOZjLyT6L_Vjqa5g,10206
97
- xinference/model/llm/reasoning_parser.py,sha256=fqp4QO4p3VqO3jkCIocRAeaTey3jLHNBFQYLwuaGoRc,6422
98
- xinference/model/llm/utils.py,sha256=iMAD8mt2vVpLHLaADFG8cytFbxgCspILfvRwCStuzMk,32951
98
+ xinference/model/llm/reasoning_parser.py,sha256=Vms1G8I_ujakATjMxBbnWt0e-Zuky86HBqu05T1KiCU,6386
99
+ xinference/model/llm/utils.py,sha256=XCpb-HmfUScecBDMII6xe4ZCy12X9-oymc6uLXLrEqM,34132
99
100
  xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
100
- xinference/model/llm/llama_cpp/core.py,sha256=Q0AV0Tc_OsD1xpJKaD_WXFR6Pzz0SyxMFLsPsK3LLCg,22122
101
+ xinference/model/llm/llama_cpp/core.py,sha256=GiFP47xCJc2saNoTJXcIGaG3jvN5gQzuvDz77fHNo5I,23596
101
102
  xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
102
103
  xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc3ua8yPTI,19835
103
104
  xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
104
- xinference/model/llm/mlx/core.py,sha256=20jbCxsKoUqdUOU54PzmoKkplIkHSEJ9XXIwh9gh7YM,23722
105
+ xinference/model/llm/mlx/core.py,sha256=D4dvRLRbHhdGe-sQ-x25APy11y-ZxQtLLsIZKB1qpyI,24144
105
106
  xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
106
- xinference/model/llm/sglang/core.py,sha256=i0LpMWHwo5lDf1JR_5AmF8pPabwHZ8RbAiCBI88GE3A,20645
107
- xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
107
+ xinference/model/llm/sglang/core.py,sha256=NuwUIz-u3F6LRcB_DIn173jRbzJG8L-0E8ROqxEQoPM,24152
108
+ xinference/model/llm/transformers/__init__.py,sha256=RZKVW6N_S6XlFEFN0Krf_QcGkTUAj-k3-FXKC7aKDu0,1103
108
109
  xinference/model/llm/transformers/chatglm.py,sha256=pIBPhR4cpeOR6ok5dKPK1633M1RMHCzrxB2fpDRaCuY,22426
109
110
  xinference/model/llm/transformers/cogagent.py,sha256=JbIiqVW-S9MA3d4CN2DlI7-WDB_nuCbX8JSypR5TmVU,10080
110
111
  xinference/model/llm/transformers/cogvlm2.py,sha256=I5Ftm0VYjbTAv5ZARZCo32Ggpw58PJfHs5B_nX_BIlU,15972
111
112
  xinference/model/llm/transformers/cogvlm2_video.py,sha256=ZGkpC4x2uEtjwoMrLSODmAUYTjOeSNYxZi9VpQrpnhU,11857
112
113
  xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
113
- xinference/model/llm/transformers/core.py,sha256=Z-AZ-3T3UJsuHMES8ZLxy0uQ9Sokwe5RTaG7PzrflPg,29035
114
+ xinference/model/llm/transformers/core.py,sha256=YAFCKo0n8YrPmHL2Bi8JI8MB3_0sDCFGd-mXnrVjOXg,29805
114
115
  xinference/model/llm/transformers/deepseek_v2.py,sha256=-RKlI3mhja730md4evQ2vfIxBnZD5vWyrgmg_3eovms,4096
115
- xinference/model/llm/transformers/deepseek_vl.py,sha256=pB6i6DW5oyfHdqTgKpi2DkIKVGlPLGIDR_Op0sB1uKA,10445
116
- xinference/model/llm/transformers/gemma3.py,sha256=LIfVNpiFDVNswftrziDIasOJNXQy1hf2JLSoXgDjiNE,6121
116
+ xinference/model/llm/transformers/deepseek_vl.py,sha256=efbuqo5hKPZOVdiWkl2DXPd0Ml9bIAatcJNFVOeZSjQ,10453
117
+ xinference/model/llm/transformers/deepseek_vl2.py,sha256=2rgHBH9P_N0pMe17SeC7Ga_OATNYhdnZ64-VLNpRfWI,10990
118
+ xinference/model/llm/transformers/gemma3.py,sha256=qemxbr_QHNhcSfqrJbdSepbhtuBLDLsoyPPQPoD6JsA,6803
117
119
  xinference/model/llm/transformers/glm4v.py,sha256=goph2HhpV8gUm2t8-T1P-jTF2r_kPeH6QNe64lmlm0g,13871
118
120
  xinference/model/llm/transformers/glm_edge_v.py,sha256=sedHB4iRd37UC__1MeXs33NLMQQKFYBIFf3A71rMEZU,8159
119
- xinference/model/llm/transformers/intern_vl.py,sha256=taeq1WEupmpOWCBbsZhP-1cyJB4eEsyHTWNJdUzRgWk,18714
121
+ xinference/model/llm/transformers/intern_vl.py,sha256=hPykgXAP9fkogjCA3DPEVqHTCDV_357YM8OZ76sq698,19216
120
122
  xinference/model/llm/transformers/internlm2.py,sha256=3mjRgqU0RgCFF0F46ieVH0NO2JCKGsQkmkoVlWJrh8E,3221
121
123
  xinference/model/llm/transformers/minicpmv25.py,sha256=mr80-OlSlK_opSuAO3cz_QlkqujLr6V-OsTP0ebwpE8,6814
122
- xinference/model/llm/transformers/minicpmv26.py,sha256=_e2C4vmyKIzKt7S7AvKgiqhDOhGiBXa6Xoiix4UaYtI,13440
124
+ xinference/model/llm/transformers/minicpmv26.py,sha256=t9y5H83H2iu5RgVg4yAarwvyDjuvZJs80uE44ZoonTo,14130
123
125
  xinference/model/llm/transformers/omnilmm.py,sha256=2ZLW979ETqDDKo9CaTNwi9uLBZ2d6itHAYqjUA4jdro,5172
124
126
  xinference/model/llm/transformers/opt.py,sha256=dkZFNwtw_sUuVaz9He6LWfEojRGfOQFQ5atvC5OYPuY,2429
125
- xinference/model/llm/transformers/qwen2_audio.py,sha256=RkKSUFTgyolVSuFoLj2GdzsFfU8goOIYtDFLoRLiZ2s,6259
126
- xinference/model/llm/transformers/qwen2_vl.py,sha256=HEtxPJyhfsvcULu8guLwasB0DaXRgOGxP1WrhgDUWec,8437
127
+ xinference/model/llm/transformers/qwen-omni.py,sha256=y-mS1ubwHXo5v2mCs3P7D9P_vLcskzJut_o_KD0cvI4,10252
128
+ xinference/model/llm/transformers/qwen2_audio.py,sha256=e0uU5HFPesb1sszDJcG0WRd-v9GfJF7AbK7w847oYbg,6278
129
+ xinference/model/llm/transformers/qwen2_vl.py,sha256=DbSQGhay0uRFAZgEDDLwa4fBYCKl04NBAmhVezQxJmY,9269
127
130
  xinference/model/llm/transformers/qwen_vl.py,sha256=LG19qJW30bFiZOS-t9OM3JP6K1KCLj_Sv3nKSCLvyts,14058
128
131
  xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
129
132
  xinference/model/llm/transformers/utils.py,sha256=KETjuVR_RpF--fno0KxT068fD1v4REFhe-0wy_sCwRs,19584
130
133
  xinference/model/llm/transformers/yi_vl.py,sha256=iCdRLw-wizbU-qXXc8CT4DhC0Pt-uYg0vFwXEhAZjQg,8961
131
134
  xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
132
- xinference/model/llm/vllm/core.py,sha256=FZSXZldKrVDUOSFhw9NRoYcmXcUJl-cq_q_CqMWryH8,38389
135
+ xinference/model/llm/vllm/core.py,sha256=OHUxo5iqXzYg0zaUbT4iI5Xl1xl0A8CSRqsPdIjTbXs,45985
136
+ xinference/model/llm/vllm/distributed_executor.py,sha256=r_dftypuuLGYVf2Z6YmU6oCB9e3vLTi-rCegfVQRP1I,11669
133
137
  xinference/model/llm/vllm/utils.py,sha256=LKOmwfFRrlSecawxT-uE39tC2RQbf1UIiSH9Uz90X6w,1313
134
138
  xinference/model/llm/vllm/xavier/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
135
139
  xinference/model/llm/vllm/xavier/allocator.py,sha256=SJ2eCOxF6CWTBZIP39FRxeK6fxIE8pRshOPnSRc72d4,2691
@@ -145,13 +149,13 @@ xinference/model/llm/vllm/xavier/transfer.py,sha256=2IbaiAhRnJMwa9qsMa5bowngqfjx
145
149
  xinference/model/llm/vllm/xavier/test/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
146
150
  xinference/model/llm/vllm/xavier/test/test_xavier.py,sha256=E7MDGTeGJMaULoIKez6lt2Vhz0w6FJlPyAELUjE0Chw,4890
147
151
  xinference/model/rerank/__init__.py,sha256=wRpf1bOMfmAsuEKEGczMTB5fWEvuqltlJbIbRb-x8Ko,3483
148
- xinference/model/rerank/core.py,sha256=e-QoFgVk-6LOQPM5zqbEj095J-1bkuyd9c5zRI5DlF8,14560
152
+ xinference/model/rerank/core.py,sha256=tKNKx8df8l4BIu77I4YFhx9l7bkFkcXEFx6rppRmXSM,14849
149
153
  xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
150
154
  xinference/model/rerank/model_spec.json,sha256=xUuJgJ8Ad4l2v8gEHxAdF_xoaSkA8j8AX51LhrjGEA0,2005
151
155
  xinference/model/rerank/model_spec_modelscope.json,sha256=pf5hX4g0HdVjk2-ibHTl_mXHgQSSPYMTBOIwvnwMMkk,1616
152
156
  xinference/model/rerank/utils.py,sha256=MJAFL47G3r3zLVGXKoi0QLTgU3Xr4Ffv72Ipn--psew,713
153
157
  xinference/model/video/__init__.py,sha256=mRhOhzMxzcPFdA5j4niAxH_j9dXLtT9HmchuICrdET8,2160
154
- xinference/model/video/core.py,sha256=gzVo-qnyqdF6tLgsGqCkHxGkbujSf7VCGJIlqLxfouc,6073
158
+ xinference/model/video/core.py,sha256=uyWjVPEN_AUUgnjV68BQw4RhNjO1OSg-6MBaRGa1AJM,6205
155
159
  xinference/model/video/diffusers.py,sha256=P6GCKY5TFvLaMKyVBACXPUB-IVNo8-9HCRwfnqHPfoY,6982
156
160
  xinference/model/video/model_spec.json,sha256=ubTQsEfEVIzHz7O8XZOSgo-PtQRLz_qctv965ChI7gY,1218
157
161
  xinference/model/video/model_spec_modelscope.json,sha256=sjKMD-qRQMZ2NWTL7NxrclSljIVtwPFmgRKjObJmYtY,1198
@@ -236,6 +240,29 @@ xinference/thirdparty/deepseek_vl/serve/examples/rap.jpeg,sha256=AL_pk3nX1ChriPT
236
240
  xinference/thirdparty/deepseek_vl/utils/__init__.py,sha256=u8C--egJMT_DDm0JG3frXGSQNNv6cfIAumPhghzkxhk,1091
237
241
  xinference/thirdparty/deepseek_vl/utils/conversation.py,sha256=7oITA8TsIuOfumVZ8hcoDpA6dm1jz7n8-VXPe_7-4YA,11702
238
242
  xinference/thirdparty/deepseek_vl/utils/io.py,sha256=HQqLoONZF4nl1E9oMrm7_2LwU8ZSh1C9htm7vLN4YfI,2751
243
+ xinference/thirdparty/deepseek_vl2/__init__.py,sha256=N5CYTfTFEiTT7mrNrrGTSyvDOVkGVO3pE_fWm8ugcAw,1458
244
+ xinference/thirdparty/deepseek_vl2/models/__init__.py,sha256=cj7JV8Dl6cZ5uVMLPddZBQ968WlkU5f2FXc_CR1LV4c,1289
245
+ xinference/thirdparty/deepseek_vl2/models/configuration_deepseek.py,sha256=arIfKaRyLib6KMjg1Cd1kWiaWY3xfPbHEjMOj2Kz_Hw,10646
246
+ xinference/thirdparty/deepseek_vl2/models/conversation.py,sha256=tGv8wXFdTGK7ewYqLMi8hQ8tqqfC1dpLa_6NFuhRs7E,10189
247
+ xinference/thirdparty/deepseek_vl2/models/modeling_deepseek.py,sha256=nHMJubp-jCVI7J4R1vj8IyVhA-0LWJJeqUKeAUmVV48,81807
248
+ xinference/thirdparty/deepseek_vl2/models/modeling_deepseek_vl_v2.py,sha256=_7PUGe-GnndYdAKokIB-_YxMcZp3PmMLAjT-Zi4tlhA,27473
249
+ xinference/thirdparty/deepseek_vl2/models/processing_deepseek_vl_v2.py,sha256=tXXsPbyD_MmJ91NyLWMYDv1Xf-eBt7X0ktoxDVVIkns,29068
250
+ xinference/thirdparty/deepseek_vl2/models/siglip_vit.py,sha256=RRLuhLtH0GSOPO_RJtxG9dC9A4cp5HjiMxGEtd5k5Tc,25487
251
+ xinference/thirdparty/deepseek_vl2/serve/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
+ xinference/thirdparty/deepseek_vl2/serve/inference.py,sha256=Zj23wJ_F6sj4s7Ri-tyCnekABAGOMeW0SOzMc5hRp98,6296
253
+ xinference/thirdparty/deepseek_vl2/serve/app_modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
254
+ xinference/thirdparty/deepseek_vl2/serve/app_modules/gradio_utils.py,sha256=Ahtvp6FXsfF15rQPKAAtOT_iXJPuK1LJV2U5w7dER_0,2276
255
+ xinference/thirdparty/deepseek_vl2/serve/app_modules/overwrites.py,sha256=FA4Ikx2wNJNdKiKJUEVm24vqMbaDeHprso0xcSFVVMw,3276
256
+ xinference/thirdparty/deepseek_vl2/serve/app_modules/presets.py,sha256=sJ7sET1MtpEzrIJeDeF22fSqcO6Bjg2RTUnTr4UucXc,3934
257
+ xinference/thirdparty/deepseek_vl2/serve/app_modules/utils.py,sha256=j11cl44PqZh4EC-HnGvMD4fzRFvsEbUxb724D97MZG8,10835
258
+ xinference/thirdparty/deepseek_vl2/serve/assets/Kelpy-Codos.js,sha256=TSVPz9Nt8UT1Ck6NeLuc6lKY_St-VIf0rg1WhOsywrY,3760
259
+ xinference/thirdparty/deepseek_vl2/serve/assets/avatar.png,sha256=M5UhHvq3k7iaTledkL1gaw60NeJWau31S-xYXkNqjnE,62075
260
+ xinference/thirdparty/deepseek_vl2/serve/assets/custom.css,sha256=a7-gDchaBYTNRDWWBeELXMwb2Zffvrc46SakvuYfG7U,9196
261
+ xinference/thirdparty/deepseek_vl2/serve/assets/custom.js,sha256=q4eMFbj5FErECrTQR5iGM-zma8ZFMNLXPAS7CLavrEE,1144
262
+ xinference/thirdparty/deepseek_vl2/serve/assets/favicon.ico,sha256=KNq3G9QZD0HH3lEGFeka_LpSrXzmgm-_hrITIFvmK0U,15406
263
+ xinference/thirdparty/deepseek_vl2/serve/assets/simsun.ttc,sha256=_31pv6ZYjT_e292-OimsEfDFAjZyPucqnqSew-JVP10,15323200
264
+ xinference/thirdparty/deepseek_vl2/utils/__init__.py,sha256=u8C--egJMT_DDm0JG3frXGSQNNv6cfIAumPhghzkxhk,1091
265
+ xinference/thirdparty/deepseek_vl2/utils/io.py,sha256=FqnY2we1ftnZOD3th3QPyueYns5pMWDJwv5x4eAh-UY,2839
239
266
  xinference/thirdparty/f5_tts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
240
267
  xinference/thirdparty/f5_tts/api.py,sha256=yYr9SwJrgyzm8E7Z5LZYkW8p28PbVRtjr9lIcDRvJjk,5571
241
268
  xinference/thirdparty/f5_tts/socket_server.py,sha256=XwClpY1a3MtTdedMWT5fLTS1Bt2DnvydZs2jnLxSBdc,5353
@@ -455,6 +482,38 @@ xinference/thirdparty/matcha/utils/utils.py,sha256=u5u7cDnY4SPv1-Citj6A-J34lfMvc
455
482
  xinference/thirdparty/matcha/utils/monotonic_align/__init__.py,sha256=_s_INV7vL_N9mhYtZADAk11CsSGP8kykn0fEyyM73ts,646
456
483
  xinference/thirdparty/matcha/utils/monotonic_align/core.pyx,sha256=t2jJamslaDGkFZnWhdUQ0qs4T4gjntMOAXSPMtZaq0w,1236
457
484
  xinference/thirdparty/matcha/utils/monotonic_align/setup.py,sha256=bf0d0cvGRaACC22qq0sqgZEBBhz4qzDlMqBxOyTKC2g,207
485
+ xinference/thirdparty/megatts3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
486
+ xinference/thirdparty/megatts3/tts/frontend_function.py,sha256=eYKdKDrBDOOPqoQsy_4hIDhP-Ldd9xR_sFTY563W5g4,8022
487
+ xinference/thirdparty/megatts3/tts/gradio_api.py,sha256=He55bVYjIHas37L7a6dMX2a_0VDm3U-SLY9xAyVaFSE,3918
488
+ xinference/thirdparty/megatts3/tts/infer_cli.py,sha256=v60BZuPGBrGRLoLS15cVpxfo_q3ynd--IH_WKcZBolM,12755
489
+ xinference/thirdparty/megatts3/tts/modules/aligner/whisper_small.py,sha256=EmYDpROl8v_-Ti6dbFHOtVY5sYM-220Mwb2Fq27Spt8,11771
490
+ xinference/thirdparty/megatts3/tts/modules/ar_dur/ar_dur_predictor.py,sha256=dNEYfXCSceChzmLxfEfaTSHx3Cop6JUwlqilXN_EYs4,17289
491
+ xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/layers.py,sha256=0rZqEyqvp4MZ35ZM3b6__y9knRUqiFUQcseKtKpuQ8g,2000
492
+ xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/nar_tts_modules.py,sha256=WCkTwYtNZyhSVqAM16jRsu_Q3gV8ENMHAzOjmi94TwM,2766
493
+ xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/rel_transformer.py,sha256=RLFJzR7fZ1ri-a4efZSD2xRa4h0CIxW49FOPfkrSIpE,16002
494
+ xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/rot_transformer.py,sha256=2fkrUjFh_oeyGZK4Qm4CxNyvXrJnWZDskwFhP5BgQsc,27953
495
+ xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/seq_utils.py,sha256=0gBz-GB3pxHfLgpr-sOawdxfZ1H9JWvzODAk3i-q7jk,12667
496
+ xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/transformer.py,sha256=b-Jb2jvod2s9qnvZhiDtfbnmdCNdZfg0S5Kkz8BamQw,32062
497
+ xinference/thirdparty/megatts3/tts/modules/llm_dit/cfm.py,sha256=7HzxZoM7z9ZAlEopvlChTKhSek287UQnuBHITTZuhJ0,10404
498
+ xinference/thirdparty/megatts3/tts/modules/llm_dit/dit.py,sha256=Ir5OWHmVUbddd8trAM3a1PK6WQqbtKeMxG2N59MlgrU,8036
499
+ xinference/thirdparty/megatts3/tts/modules/llm_dit/time_embedding.py,sha256=umZziWxnzEJWEiUCxrJVqfIbQZjoIaZ8ICg4KP17N2Y,1616
500
+ xinference/thirdparty/megatts3/tts/modules/llm_dit/transformer.py,sha256=FFpq4acsgzgrjuWcb0xniaeg6D51gOh8JG6B7SQGQfQ,8361
501
+ xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/diag_gaussian.py,sha256=8S-Es4aAYcEwZQxP9iz7VQIDymZ0FDVBGi4fp7gBeS8,2538
502
+ xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/hifigan_modules.py,sha256=WnUKqcSJ1b6CU4ymtCM5LLn7CmYlkGYMUjo6o4mXKWM,10095
503
+ xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/seanet_encoder.py,sha256=5TnntfXcShEB8Z15f15H9c06NIQxbAcMYmkAX2IsZvI,1506
504
+ xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/wavvae_v3.py,sha256=VPWh2v81Wwv2o-nXYICsXiiXOexG84qfcDv_15JrhUc,2287
505
+ xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/conv.py,sha256=2ysyEaoVWFtEBnyiFy0PP214dgyN-yQvoSgYt3BaxhE,6498
506
+ xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/lstm.py,sha256=6ox45v6xWAiptBrzQ2FHyDIUpMjqbJZN2nrVC1epQkw,2133
507
+ xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/seanet.py,sha256=qsFEhxvjiB18roqG3M0dwxz_FldgzkdelNhiYHjiUzQ,5808
508
+ xinference/thirdparty/megatts3/tts/utils/audio_utils/align.py,sha256=zg5-xpNJK0JwaHp98kNgwfGbHxySkU-dciNZ3gq96UA,1294
509
+ xinference/thirdparty/megatts3/tts/utils/audio_utils/io.py,sha256=eG2yPhaEf9VtZRwaRUqpeNKz-IFcwclrZgpSI4zW4Y8,3277
510
+ xinference/thirdparty/megatts3/tts/utils/audio_utils/plot.py,sha256=7NOwwH4TueidcqanoT-mwSFrm5VJqAjlqfO1HHNrC-w,3334
511
+ xinference/thirdparty/megatts3/tts/utils/commons/ckpt_utils.py,sha256=lnr8904B4Q4iUJQmlzWswXaMf-rTCzqwaqm0jH3gwsU,7919
512
+ xinference/thirdparty/megatts3/tts/utils/commons/hparams.py,sha256=BQm-QhTsK309Ft4AZ8CqsSzyublOrEoLVfc_v2VY6wA,8277
513
+ xinference/thirdparty/megatts3/tts/utils/text_utils/dict.json,sha256=pkqdGJBUidMBB3c_hs2h7-cCn1bBR7WTlKRBopZG9UI,1746
514
+ xinference/thirdparty/megatts3/tts/utils/text_utils/ph_tone_convert.py,sha256=hyloxYCU7JXWi-08pEe7tjh2AhNIuj3QJM4bQYnK0Eg,3568
515
+ xinference/thirdparty/megatts3/tts/utils/text_utils/split_text.py,sha256=7YeMXh7fpxRn0mHZyKDyA58B7lu8OhQ4m9DE6Aw_dZk,4150
516
+ xinference/thirdparty/megatts3/tts/utils/text_utils/text_encoder.py,sha256=LCbZcZ5qATkRDgfL1SgxCpjqv-TGYXcQzjXQeJ9FLvM,9371
458
517
  xinference/thirdparty/melo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
459
518
  xinference/thirdparty/melo/api.py,sha256=lC93OiqQrOABEI2ZbmReSPM4xRNzPw9mZ8YHDgTfenA,5108
460
519
  xinference/thirdparty/melo/app.py,sha256=vlR_k9cmTjZ6E71qKomAxrYK8xJ4lZr-nqekX1oFiIw,3167
@@ -573,14 +632,14 @@ xinference/thirdparty/whisper/normalizers/english.json,sha256=Zgf5SL6YJNLhsvoiI8
573
632
  xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc3yhvWzWuMhQzRnp2dM6IQdA,20868
574
633
  xinference/web/ui/package-lock.json,sha256=Q3gwsjjCFtDjVg5Yk7s4jfMAZ1wiyFfS_TJCw3ECB64,762407
575
634
  xinference/web/ui/package.json,sha256=iitsROb4-TLzxbOftXJqUGpp38TuPhzfLKy5n9THQYg,2081
576
- xinference/web/ui/build/asset-manifest.json,sha256=oCtfqIGOgBDlMrAIC3xKRR-jcTsCebFXrkhf6EXS5Mc,453
635
+ xinference/web/ui/build/asset-manifest.json,sha256=DRIzL170KftMLAnHjPx0iUWwbDW7gjvqyJwST1pE1Fs,453
577
636
  xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
578
- xinference/web/ui/build/index.html,sha256=nlgkAEo4QTMfagUN1jbZwY-QIk_JVwYhLUc_3j8s9eo,650
579
- xinference/web/ui/build/static/css/main.b494ae7e.css,sha256=e-Ice658EZf6rU_LjpIp6moupZ1v2QOCyF-5bD9DGjA,5225
580
- xinference/web/ui/build/static/css/main.b494ae7e.css.map,sha256=50OJ6uMtUd2uzLFhhW2ksWuM5QDrlpmnWKIAYDM0Hk8,9970
581
- xinference/web/ui/build/static/js/main.3cea968e.js,sha256=mUA9F36YMRgRVsHbA2U1MeeBSCrqPOIUx369O-SKziA,1227895
582
- xinference/web/ui/build/static/js/main.3cea968e.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
583
- xinference/web/ui/build/static/js/main.3cea968e.js.map,sha256=s11GpDFf8udQMKWBp9my__36URgF0xQGUXXnaYsGKqw,5192678
637
+ xinference/web/ui/build/index.html,sha256=4YY7u797xddX6d0grtAwJDwEqVAGsgCJ7F38ynNEtkA,650
638
+ xinference/web/ui/build/static/css/main.0f6523be.css,sha256=vR2US4TjBZi1ltn1p5SXFaISOf7fs4Tu0UGD3GhTPY0,5191
639
+ xinference/web/ui/build/static/css/main.0f6523be.css.map,sha256=5K7_iKz10aejOxbQvgjum9MjfngiMPTvskAjZcu0FCg,9786
640
+ xinference/web/ui/build/static/js/main.58bd483c.js,sha256=EFbx8vZo4TqRXrjKkWHvW_dBDgZAslnk8DzjVQbCcWA,1238296
641
+ xinference/web/ui/build/static/js/main.58bd483c.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
642
+ xinference/web/ui/build/static/js/main.58bd483c.js.map,sha256=yUo3v2OVsuzFiCFotsP5ExsOMoyu28Gvm1sU4JeQIAg,5228013
584
643
  xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
585
644
  xinference/web/ui/node_modules/.package-lock.json,sha256=2kL1sQ4ZuDQilki9DnRFFM8CxT13fyGl3chLK6i3DQY,760261
586
645
  xinference/web/ui/node_modules/.cache/babel-loader/00012b59e7dc64a18400bdddb660faa295258241c0b9cd15c78cdba63b858ed8.json,sha256=FhiSQ9MQv6bT7TkLBlXXskoaG2HCKhsuTXXlkDV-pM4,668
@@ -2493,7 +2552,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/27a83888ea03e1435c5fcf2a839d1
2493
2552
  xinference/web/ui/node_modules/.cache/babel-loader/27aa20fa4b391d94993781fc2db2bd02bc2c52d4339c896071c7f3700275ee3f.json,sha256=8NhJ04Czzpcn2MvpH0J6WEd1Qgpr-AMZ770UaVubGHA,3051
2494
2553
  xinference/web/ui/node_modules/.cache/babel-loader/27b02f7ffda35ec0b46b600fb85774afecd7dfc35186c3d195757fa4d6a09f00.json,sha256=4n6oGFWb7IBoqg3Ii1fwLbFzTmBs-_6-iBRxq142mHQ,1003
2495
2554
  xinference/web/ui/node_modules/.cache/babel-loader/27b46a093d1036bafa386ef1b1700c5268b4ec9d482f24d068d7eff153702d92.json,sha256=l8bwFKql-A_DSzno-Puito93IrMtMtDpsygPTcBPI6Y,1621
2496
- xinference/web/ui/node_modules/.cache/babel-loader/27bcada3ee8f89d21184b359f022fc965f350ffaca52c9814c29f1fc37121173.json,sha256=3NIIN4IzdwQhblfCs0k612RAtT5W9BwU2dIyYpft1XA,3315
2497
2555
  xinference/web/ui/node_modules/.cache/babel-loader/27bdbe25deab8cf08f7fab8f05f8f26cf84a98809527a37986a4ab73a57ba96a.json,sha256=y2U21Pm0iFWG5V2JUtfJVvdr2IOWz5fQQQ9Zv5g9VtE,6290
2498
2556
  xinference/web/ui/node_modules/.cache/babel-loader/27bf4c92317b4d0010661acda0366e6a696c8718f313622643a90b48914c45c0.json,sha256=DNSdT4gcNkeUz0of5gwVy_WTfDB5jmPGtK5zKWGi_Ec,1690
2499
2557
  xinference/web/ui/node_modules/.cache/babel-loader/27c4da78437bebfe0f597bbcf66125127a64b098178f52be822935c324599019.json,sha256=2WxCeBlS8jglUQJ-GhPGxjCY_0WKwF9Cu6ofEEcYzcg,11888
@@ -3424,6 +3482,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/3bf094be9ec8ef269ba9fbbeb4156
3424
3482
  xinference/web/ui/node_modules/.cache/babel-loader/3bf6477a313934761f2d73a5cc3f620c95b5613cf84d04fd24810b9b9a619d44.json,sha256=Zk5xeD11dpo8m8Zt98kGw0-FO3W4c4u6IJ_QvCDgcWw,1109
3425
3483
  xinference/web/ui/node_modules/.cache/babel-loader/3bfce08bceb34f35cc6d51a4d45552e283bc6c807f0df481c67081e84e25c6c2.json,sha256=7XKIVpq1KekEiFYOi8pe-N4kJoIwEAqfs_1WWTKMpLQ,1284
3426
3484
  xinference/web/ui/node_modules/.cache/babel-loader/3bfce7d92ffd20c55e40fcaab31f3e97c9f5faf05b33fa853f8a6da0f0aec0e6.json,sha256=t46wgT8xnf6LlJu7wR7twMaEhqP4MAR4owUniQb4_uQ,1295
3485
+ xinference/web/ui/node_modules/.cache/babel-loader/3bff8cbe9141f937f4d98879a9771b0f48e0e4e0dbee8e647adbfe23859e7048.json,sha256=KFaFvkfsg0O260UM-gZ8avCO5BnPPkl2rOg7xwChmRc,3808
3427
3486
  xinference/web/ui/node_modules/.cache/babel-loader/3c016ef9f988abb4cd182282ab50cb1550d18de3340663acf8ede20d3e9c40ae.json,sha256=aIOjsCcX7RhKqUpLdzEwO8dOtXP_wGRn-0ptlRFQQ68,2210
3428
3487
  xinference/web/ui/node_modules/.cache/babel-loader/3c03656d62ad375df9a614748d1280dbac6f17d3a3475805ca643f271231144c.json,sha256=p4Mq1kleEM1zxdCxZjwDAuEWTjFbBZ1IdpXP1XiwCbc,3504
3429
3488
  xinference/web/ui/node_modules/.cache/babel-loader/3c038d1f6067eaf60e2506ddf0a15f7cf6264a2dbb1c04772743f035f7a587e7.json,sha256=gDczpUbvpNyEVn-81ZDgcAhqedNRuIeSOYJi8cFRx4k,1786
@@ -3841,6 +3900,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/44ed7449232ca2cabb3b1b61caa74
3841
3900
  xinference/web/ui/node_modules/.cache/babel-loader/44f11f4c25eef6b69483eb3d2d0e3af50b98063be3159f21dfe98e1487a3dcc1.json,sha256=HnyjXPHmCNckJVK8hawkBT658JfKuHqIrAH8lv4YMT8,1054
3842
3901
  xinference/web/ui/node_modules/.cache/babel-loader/44fac2260696e2e33a288988ac0f4be1e68c022b39094fea9b1d0cacbbda4516.json,sha256=n9LQa-c-s0hpDlgfeGWVhMSdlC7IIar9ySLlLfv6v0o,2620
3843
3902
  xinference/web/ui/node_modules/.cache/babel-loader/44fc785693e391a288c7d4f0aeef4f8d40569380116ff45dacc5c25c16da7856.json,sha256=NGCbLPddAUUTLzF57dbxoxOGUzRzzJrRpA2r63w71CY,2005
3903
+ xinference/web/ui/node_modules/.cache/babel-loader/4500b1a622a031011f0a291701e306b87e08cbc749c50e285103536b85b6a914.json,sha256=40lEG5Vc63Kh-7yX-exwDuw1EfDp45P7T-k1vV4am6Y,2967
3844
3904
  xinference/web/ui/node_modules/.cache/babel-loader/45072ce7067696a1e96e4a556b9c1fe2c635389cdf812af3b5df562edd08a7ef.json,sha256=mHuaYmmVjHeQZYsYGayTQ-zEQ0DwjqtBUIL6MWAHvPQ,1715
3845
3905
  xinference/web/ui/node_modules/.cache/babel-loader/45087920f61e6871ceecfac851c3464a1f6d02d6d81ac3bc6a5e5dd75b6e5295.json,sha256=OHdDR3-JXfnTP7V7QZl5zh4E3m61Qpl4voTD_7mo8hw,1677
3846
3906
  xinference/web/ui/node_modules/.cache/babel-loader/45098a43f738b97eed008798a131e567dfa2d86c4da04a8786f58ae31ef1f5bb.json,sha256=Syux8T9EFEzWT6ze8NC8RceICQ5JWqyQFLQkwykuJcA,1255
@@ -4436,6 +4496,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/51548cdcd9dc83266096e58c17eaa
4436
4496
  xinference/web/ui/node_modules/.cache/babel-loader/5164d5a1d6d84d1a2a85ce7ee6fa37412ab29ebd7a082e99c3fae1ff08a6361b.json,sha256=eGYgrVI9UGPObQe1llxLC4VFumD9Yis_ZsbC901r71I,7775
4437
4497
  xinference/web/ui/node_modules/.cache/babel-loader/5168c8f4e90b1a3b4eaf8aa78f1f40a4cdc07a6e586eb74d2cec8ca3524565e4.json,sha256=1RV7ErzSwTMQNnOWN7jnLWe5UUHZTXRDcLjAMT-a32A,1049
4438
4498
  xinference/web/ui/node_modules/.cache/babel-loader/516f82615733837f2f595a67a462f702d003ad1485d2cc382c3a240f97436210.json,sha256=6ZrQa7wWoO90QjahGTj6OC2KqnN1sIC-IZ_yY9qw5uU,3019
4499
+ xinference/web/ui/node_modules/.cache/babel-loader/51709f5d3e53bcf19e613662ef9b91fb9174942c5518987a248348dd4e1e0e02.json,sha256=h0jp0n9YJ8c9v1019ldHZiZPlHq9RuH8oRwK3u4SRoE,5888
4439
4500
  xinference/web/ui/node_modules/.cache/babel-loader/51730f62e3d10c5c48addb53713c2a6feffb47287ab47323faf98c5c0b2a26a9.json,sha256=1KsuqowIOEv4_M81j310dO9OmTpjzJ_MZu70ROwddHE,1169
4440
4501
  xinference/web/ui/node_modules/.cache/babel-loader/5176b521b7eeed18755621b7f8938d5e87f8c29819906d55ccea85a0e496e078.json,sha256=CpwN9HnN9DGwG94Eh-0D20BupBtGI2-vxn-yfc-8oB0,1024
4441
4502
  xinference/web/ui/node_modules/.cache/babel-loader/51791bea0919b1d5e43cad813dffb96ea165888a89806e748504f2112cf1c393.json,sha256=qkKnZHhjpfq4SCluwWiuvq9dJWCFBLhyZf9E0N9TuuI,1344
@@ -5562,6 +5623,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/68e3e2f7e4cee68b3f64a9c0fd7e8
5562
5623
  xinference/web/ui/node_modules/.cache/babel-loader/68eab16920bb0e9ee7787a3733c8c1814d7098330fbd362ae4559d458955b503.json,sha256=P9-6dlELdsYWNQe1MmgV57-tQEDGYIqg0SUHAncTZOg,1392
5563
5624
  xinference/web/ui/node_modules/.cache/babel-loader/68f9417749ee545ca7d6e021e30940ab3ab31a9a7e2394b98c08234b19e0920e.json,sha256=RjsMvAa9Gg1geUB3EaE5wLdvZgRdNDuvKK6QyOlF8xk,1431
5564
5625
  xinference/web/ui/node_modules/.cache/babel-loader/69015563be0fb910c2d24a453000ab4ef27086b46f40a1ffc5bbe012544b44c6.json,sha256=RSv-ZPWe2d6fHJbuKtAgbichkPbKuu6ksc2e8kyf5iA,1115
5626
+ xinference/web/ui/node_modules/.cache/babel-loader/69081049f0c7447544b7cfd73dd13d8846c02fe5febe4d81587e95c89a412d5b.json,sha256=LcvJIEse3CRPRl2-tHIAYUvNsmLTjIURA6u3LG4xBE4,225899
5565
5627
  xinference/web/ui/node_modules/.cache/babel-loader/690a8dfa23b4e82554d7e69dc164ed87605c764c37285b7b90a9f594462e84ec.json,sha256=M_cKXnRyM4A-NrxFDToq2Nwti5bxLcVlpayk2-b5I28,491
5566
5628
  xinference/web/ui/node_modules/.cache/babel-loader/690d02d49d0647563db57ba809fe63e7ef1e398c27d60e61e2f95c81f53f89d9.json,sha256=YyDB_SMYZQ6Lm380HxnyMmWsda43FYivnCmyQ995M5I,2536
5567
5629
  xinference/web/ui/node_modules/.cache/babel-loader/691182c58e7360de46bb9fb98c7f2f3dd74d35032530f4615f1dab7a88556bf7.json,sha256=zK8wZWPqyY25YPgeywNIOuMKcekFicqhzWDFrUhd7Og,1174
@@ -6639,7 +6701,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/7f52f4703926b2867c8910be5f0f1
6639
6701
  xinference/web/ui/node_modules/.cache/babel-loader/7f54c37f013c5ffa8a7e711229d81530cba1e0ebd9f8b1e4710d6c34a5d9a4d7.json,sha256=mOFgiIpN1ZXK1NMxawxU1FJguULoxNL6vprh-oIdM1k,1812
6640
6702
  xinference/web/ui/node_modules/.cache/babel-loader/7f55398e4dac45eb51765107e01a7b7f0424cab3912dd61e901c363f6c2cf53e.json,sha256=EUfu9SYeYylmTR4MoeAHdaZhvE50MNxK71ZUMmKfmG0,1945
6641
6703
  xinference/web/ui/node_modules/.cache/babel-loader/7f58810ad7b460d8104304b5c2ae99544c0ffa4fd8c9700b26e3afbedcb79ed3.json,sha256=jqQprewMjT2fZbDwvqlwSInrXKNCfkdBshVbFzDg1DY,1624
6642
- xinference/web/ui/node_modules/.cache/babel-loader/7f59e45e3f268ab8a4788b6fb024cf8dab088736dff22f5a3a39c122a83ab930.json,sha256=CuUavbf9jy4pQDAImPgPzcJeU3cLpb2hzi-YBcRlRgU,5680
6643
6704
  xinference/web/ui/node_modules/.cache/babel-loader/7f5eeaaa115e8a682284195a0af0317621a549402ddfdb53f5b7a7018c8dec5d.json,sha256=qYVySSevd2_Eem3AlN2zrYoNyTehRC4cZ9QWv6RG2kk,1378
6644
6705
  xinference/web/ui/node_modules/.cache/babel-loader/7f631c630c8ece11321c64f461192500cd7e4e3f32dabe28ade1eee6cfbf5780.json,sha256=MnnYXtIJNccCKdtQbV-eZfPdyI5BQHsIZvfTI3HSl34,1215
6645
6706
  xinference/web/ui/node_modules/.cache/babel-loader/7f6b5052b811caa6c1fd331cb20addb7c9a8ab6ab1eb67381796be942bad2466.json,sha256=9QZ16xJvZafn6CmPk9MLdcUGlb4DOjYYosElZQ9W43U,1931
@@ -9373,6 +9434,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/b84024367e25497f2c8138ddf6d64
9373
9434
  xinference/web/ui/node_modules/.cache/babel-loader/b841ca803b4502a792489ad73297aa9dfdba66f298cef7bfd9e6a79d038305f1.json,sha256=pEh1_6vqs2LCJabWPh9sMZcMLU0ixG0M-ZR9bLGKxbo,1254
9374
9435
  xinference/web/ui/node_modules/.cache/babel-loader/b84428be4437d7b6f23e1091070b17beb2ed0a0de3857a51c60cc0db0d6dfa91.json,sha256=16xAjwm4Kwdu_FqprZJ4geHT_0ajmYo9CADaE_Cw2cs,1220
9375
9436
  xinference/web/ui/node_modules/.cache/babel-loader/b847399de707e46b815e7e722a25eb18952fd32f313af7647538ed7f6dc7c478.json,sha256=6ydN_kCgCSVN0xI9dfPn2zmMDJDrUxLrC9_NNTQ0ZE0,1267
9437
+ xinference/web/ui/node_modules/.cache/babel-loader/b8551e9775a01b28ae674125c688febe763732ea969ae344512e64ea01bf632e.json,sha256=4bAslDBWxSafPjwysSC9LBxwhJZykmPNJgLRRP3AxQ4,1635
9376
9438
  xinference/web/ui/node_modules/.cache/babel-loader/b859cbd02593af8ff23305b1138748f928d7980c62691e532ba3f91fe456fdbc.json,sha256=eG_US8_i_Ublpge9XAatIE9Uz0owaVHfR7lKJOnuUt0,1305
9377
9439
  xinference/web/ui/node_modules/.cache/babel-loader/b85e80c2a2b0b0624751e55c27b6610db1af59806d1343808910ffe53062f326.json,sha256=JrwNv_5UtQqkqzVDxJktnh3xyP2dbOq9f4g8eCeJBmc,1940
9378
9440
  xinference/web/ui/node_modules/.cache/babel-loader/b86ba0ee2ab72f064c2db342ac077166919452235b2a5a97d39ef34f9baacbb4.json,sha256=iWl6OmYs6jKbe9mZ4hZ-PVAsNcRxej3suKLMx0EzEgo,2042
@@ -9684,6 +9746,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/bf19c4ff840fe0c4c7824124a01e6
9684
9746
  xinference/web/ui/node_modules/.cache/babel-loader/bf1e20372f498d0d4d5137a2835318a5c5495bbfc87988f35a3352fdd46378ad.json,sha256=5QhvQrbArGtlILzHu_1hzH4FfRNz_FmudqVAVomq1zs,1708
9685
9747
  xinference/web/ui/node_modules/.cache/babel-loader/bf2364b803aef2fbf0217e303f20708d6ebd164a67f8e90ac0cea8bb7a7809f2.json,sha256=93dUe6J9sQwjEeR2HWiLD15MitZZ-ek4ugGIrQ5hMiA,18168
9686
9748
  xinference/web/ui/node_modules/.cache/babel-loader/bf2a4c47a43db0a2b62bcd330de62f7bd01695fb88823867f1be1ef16edac280.json,sha256=63tvGwrCW4jZeEhP1of2n6ROZtnYVgJAwBmL2SIssps,1784
9749
+ xinference/web/ui/node_modules/.cache/babel-loader/bf2b211b0d1b6465eff512d64c869d748f803c5651a7c24e48de6ea3484a7bfe.json,sha256=eUG-Fy_L7Yy_CJl-LsxIPao_wNO3KGbiA4eYspw2ye4,16987
9687
9750
  xinference/web/ui/node_modules/.cache/babel-loader/bf3cb252685c44ac9720344a88feaac1dbaaeb2a725df61f179ab10ec58bf826.json,sha256=sPR3xjL1SR1vPbUnyPRKGs64XPmxVqE94DLX2pdy-Ew,2264
9688
9751
  xinference/web/ui/node_modules/.cache/babel-loader/bf3cb6f5708297dfe199a36bd3e901c8e1252f7706c25083b6062f9fd3c90fb2.json,sha256=x19gVaIxvdoSqfrnmmrM1ZV_df-O78R1MXGumHgc9Hk,1135
9689
9752
  xinference/web/ui/node_modules/.cache/babel-loader/bf523005ae83519f132dd4b6ed9efa0e7ac0653dfbb353bcbdd93d08a453bc9b.json,sha256=I9PQo_C7xB7dEdmx0rRoXk9N5QIqcMwfVMRdNGrIEo8,1437
@@ -11127,7 +11190,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/dcc3d0c62308f3f05764639fb6fa5
11127
11190
  xinference/web/ui/node_modules/.cache/babel-loader/dcc804e74c0a71354df99146c6e7522de11b9184bf861ca4cd72777f9cbd4c97.json,sha256=77mH593VrddmlD3YQgIkd_HUKZL3lA1ScxTG6yaT3EQ,1389
11128
11191
  xinference/web/ui/node_modules/.cache/babel-loader/dcc89cfa0957707282c8cc4f69115e5013232860957466196f6f306ff6c11e50.json,sha256=9DS6D86pdvDfBDmfMZaj2T4OI3wMTW1mfyLiVW0C2X0,1347
11129
11192
  xinference/web/ui/node_modules/.cache/babel-loader/dcd2c26312e6cb7ee06888d34b3751421b84d54424d73251158aa89a2975836f.json,sha256=tQGbH9pWuf-RYrNdxtWi-NdnBxaN7w6GFFP2DCm1_qQ,1028
11130
- xinference/web/ui/node_modules/.cache/babel-loader/dcd60488509450bfff37bfff56de2c096d51de17dd00ec60d4db49c8b483ada1.json,sha256=2263e_vffxtN92YVpyTpaWIs-O53kQnYlUd83fcTt6Q,221841
11131
11193
  xinference/web/ui/node_modules/.cache/babel-loader/dcd60f85f294616eabd018feebad940c1ab261ca922553451f1508f85c23380d.json,sha256=8jZpBRAGZZb1ntfccjrCbinkbKiO6xZcduekb3Ju8mE,1396
11132
11194
  xinference/web/ui/node_modules/.cache/babel-loader/dcdbf93baf389666a9070e12fe6b6be06440787f9a7a55c6496b6b83f8075b2d.json,sha256=mDO0hSodN0CrivNviYdcgs-CPkO3jhSMo8lTnG3WlOU,713
11133
11195
  xinference/web/ui/node_modules/.cache/babel-loader/dce567ae9f554cc75f5076e34c36f78fae69fa9892dd17b76413a52c43097d97.json,sha256=zR3NXHHkcfW0NNyZ1rcfRYcdBiKRj_QXU3YuUfGl4pM,2608
@@ -11566,7 +11628,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/e53ea8b3917a7f5c0f11b2d4af656
11566
11628
  xinference/web/ui/node_modules/.cache/babel-loader/e53ec75454da3674c031f875120b28d1e3d162fd640eb9cfb434a6e14d7e20ce.json,sha256=RnNeAXlA4HFm7hNBr7dZSr3_ZSNF2x_xruidsXOvR6w,8766
11567
11629
  xinference/web/ui/node_modules/.cache/babel-loader/e5441ac0aeb7268daa1df2666421c3ef614f33bc0fd22cfc48bc86f555215cd9.json,sha256=Eu9_ENpsQddTv4kv0teN_RTyX3qvKwHcr1hA0oC0z44,1430
11568
11630
  xinference/web/ui/node_modules/.cache/babel-loader/e5457ddd47db04666f75d92639756906bb85cc2a1fd6c431db8b8d62afdd5dac.json,sha256=5OF-JKw05P1sWayUUlWLCDdzJ2LGSdi44qEFMGwYZHI,1630
11569
- xinference/web/ui/node_modules/.cache/babel-loader/e547bbb18abb4a474b675a8d5782d25617566bea0af8caa9b836ce5649e2250a.json,sha256=qNhXsBSfJH97HDnkFRjvzkotVFgaYP7ktbPVRVrCNZ8,16658
11570
11631
  xinference/web/ui/node_modules/.cache/babel-loader/e547c36245be846b6236fe7913dac54733aa0014a5e6df2d514959151ba8a85d.json,sha256=kpSyGoAxXd-fBAM0YbT4TeKQ1Z4sw2EQb_4fPx0BAtI,1278
11571
11632
  xinference/web/ui/node_modules/.cache/babel-loader/e548cc7bd73f3ae78b278f15236842d3a012c5ad54e7f51a409faf806921008a.json,sha256=RqJcEeojiYVAEfh4mAjoTW8-mykYVvVE9Ig63E-bkyg,1252
11572
11633
  xinference/web/ui/node_modules/.cache/babel-loader/e54b36582ce597d2c19ae63da5aa6ecbc9b821cc44a5e4c46964a273dfa64ff2.json,sha256=uoj9z61zdPfpcn8hj0rxxbKsrQW7pltZ7qwSzG0a-ro,1497
@@ -15723,11 +15784,11 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
15723
15784
  xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
15724
15785
  xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
15725
15786
  xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
15726
- xinference/web/ui/src/locales/en.json,sha256=GVdNMQoMvs1UverhaJtafaG4NBOcX5UtLRNlw82COnY,8937
15727
- xinference/web/ui/src/locales/zh.json,sha256=qpz8XbMfUksgZN3-ozD78tD6eTX5PjWyBxZ3j6Mb4bs,8681
15728
- xinference-1.4.0.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15729
- xinference-1.4.0.dist-info/METADATA,sha256=Svf3DOLLEVmlBn0ObXY095HGBXSyubH6mNvHy_tVHHg,24441
15730
- xinference-1.4.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
15731
- xinference-1.4.0.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15732
- xinference-1.4.0.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15733
- xinference-1.4.0.dist-info/RECORD,,
15787
+ xinference/web/ui/src/locales/en.json,sha256=yXLbaCDzurwn0YIYjGbThkG9n-G5BPDpf10hndO3gnc,8993
15788
+ xinference/web/ui/src/locales/zh.json,sha256=smH85pmHLN7Vo3uunNRCo29mJaIkt-xlYYPbXZjlPWQ,8727
15789
+ xinference-1.5.0.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15790
+ xinference-1.5.0.dist-info/METADATA,sha256=5qOMgFsrvSbsyBknW4yI1Nc2xpKwZcS9USH2n1Sd4v4,24766
15791
+ xinference-1.5.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
15792
+ xinference-1.5.0.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15793
+ xinference-1.5.0.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15794
+ xinference-1.5.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.45.1)
2
+ Generator: setuptools (78.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -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{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{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)}.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.b494ae7e.css.map*/
@@ -1 +0,0 @@
1
- {"version":3,"file":"static/css/main.b494ae7e.css","mappings":"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","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 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 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",".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":""}