xinference 0.14.1.post1__py3-none-any.whl → 0.14.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of xinference might be problematic. Click here for more details.

Files changed (87) hide show
  1. xinference/_version.py +3 -3
  2. xinference/api/restful_api.py +15 -34
  3. xinference/client/restful/restful_client.py +2 -2
  4. xinference/core/chat_interface.py +44 -9
  5. xinference/core/model.py +4 -4
  6. xinference/core/scheduler.py +1 -2
  7. xinference/core/worker.py +1 -1
  8. xinference/deploy/cmdline.py +2 -2
  9. xinference/deploy/test/test_cmdline.py +7 -7
  10. xinference/model/llm/__init__.py +20 -27
  11. xinference/model/llm/{ggml/llamacpp.py → llama_cpp/core.py} +2 -35
  12. xinference/model/llm/llm_family.json +448 -1153
  13. xinference/model/llm/llm_family.py +14 -139
  14. xinference/model/llm/llm_family_modelscope.json +230 -313
  15. xinference/model/llm/memory.py +9 -9
  16. xinference/model/llm/sglang/core.py +2 -2
  17. xinference/model/llm/{pytorch → transformers}/chatglm.py +6 -13
  18. xinference/model/llm/{pytorch → transformers}/core.py +2 -10
  19. xinference/model/llm/transformers/intern_vl.py +457 -0
  20. xinference/model/llm/{pytorch → transformers}/internlm2.py +4 -8
  21. xinference/model/llm/{pytorch → transformers}/minicpmv26.py +67 -22
  22. xinference/model/llm/{pytorch → transformers}/utils.py +1 -2
  23. xinference/model/llm/utils.py +76 -70
  24. xinference/model/llm/vllm/core.py +110 -11
  25. xinference/model/utils.py +1 -95
  26. xinference/thirdparty/internvl/__init__.py +0 -0
  27. xinference/thirdparty/internvl/conversation.py +393 -0
  28. xinference/thirdparty/omnilmm/model/utils.py +16 -1
  29. xinference/web/ui/build/asset-manifest.json +3 -3
  30. xinference/web/ui/build/index.html +1 -1
  31. xinference/web/ui/build/static/js/main.ffc26121.js +3 -0
  32. xinference/web/ui/build/static/js/main.ffc26121.js.map +1 -0
  33. xinference/web/ui/node_modules/.cache/babel-loader/213b5913e164773c2b0567455377765715f5f07225fbac77ad8e1e9dc9648a47.json +1 -0
  34. xinference/web/ui/node_modules/.cache/babel-loader/4de9a6942c5f1749d6cbfdd54279699975f16016b182848bc253886f52ec2ec3.json +1 -0
  35. xinference/web/ui/node_modules/.cache/babel-loader/5391543180fead1eeef5364300301498d58a7d91d62de3841a32768b67f4552f.json +1 -0
  36. xinference/web/ui/node_modules/.cache/babel-loader/5c26a23b5eacf5b752a08531577ae3840bb247745ef9a39583dc2d05ba93a82a.json +1 -0
  37. xinference/web/ui/node_modules/.cache/babel-loader/714c37ce0ec5b5c591033f02be2f3f491fdd70da3ef568ee4a4f94689a3d5ca2.json +1 -0
  38. xinference/web/ui/node_modules/.cache/babel-loader/822586ed1077201b64b954f12f25e3f9b45678c1acbabe53d8af3ca82ca71f33.json +1 -0
  39. xinference/web/ui/node_modules/.cache/babel-loader/978b57d1a04a701bc3fcfebc511f5f274eed6ed7eade67f6fb76c27d5fd9ecc8.json +1 -0
  40. xinference/web/ui/node_modules/.cache/babel-loader/a797831de0dc74897f4b50b3426555d748f328b4c2cc391de709eadaf6a5f3e3.json +1 -0
  41. xinference/web/ui/node_modules/.cache/babel-loader/bd6ad8159341315a1764c397621a560809f7eb7219ab5174c801fca7e969d943.json +1 -0
  42. xinference/web/ui/node_modules/.cache/babel-loader/e64b7e8cedcf43d4c95deba60ec1341855c887705805bb62431693118b870c69.json +1 -0
  43. xinference/web/ui/node_modules/.cache/babel-loader/e91938976f229ce986b2907e51e1f00540b584ced0a315d498c172d13220739d.json +1 -0
  44. xinference/web/ui/node_modules/.cache/babel-loader/f72f011744c4649fabddca6f7a9327861ac0a315a89b1a2e62a39774e7863845.json +1 -0
  45. {xinference-0.14.1.post1.dist-info → xinference-0.14.2.dist-info}/METADATA +5 -8
  46. {xinference-0.14.1.post1.dist-info → xinference-0.14.2.dist-info}/RECORD +63 -70
  47. xinference/locale/utils.py +0 -39
  48. xinference/locale/zh_CN.json +0 -26
  49. xinference/model/llm/ggml/tools/__init__.py +0 -15
  50. xinference/model/llm/ggml/tools/convert_ggml_to_gguf.py +0 -498
  51. xinference/model/llm/ggml/tools/gguf.py +0 -884
  52. xinference/model/llm/pytorch/__init__.py +0 -13
  53. xinference/model/llm/pytorch/baichuan.py +0 -81
  54. xinference/model/llm/pytorch/falcon.py +0 -138
  55. xinference/model/llm/pytorch/intern_vl.py +0 -352
  56. xinference/model/llm/pytorch/vicuna.py +0 -69
  57. xinference/web/ui/build/static/js/main.17ca0398.js +0 -3
  58. xinference/web/ui/build/static/js/main.17ca0398.js.map +0 -1
  59. xinference/web/ui/node_modules/.cache/babel-loader/1444c41a4d04494f1cbc2d8c1537df107b451cb569cb2c1fbf5159f3a4841a5f.json +0 -1
  60. xinference/web/ui/node_modules/.cache/babel-loader/44774c783428f952d8e2e4ad0998a9c5bc16a57cd9c68b7c5ff18aaa5a41d65c.json +0 -1
  61. xinference/web/ui/node_modules/.cache/babel-loader/5262556baf9207738bf6a8ba141ec6599d0a636345c245d61fdf88d3171998cb.json +0 -1
  62. xinference/web/ui/node_modules/.cache/babel-loader/6450605fac003812485f6251b9f0caafbf2e5bfc3bbe2f000050d9e2fdb8dcd3.json +0 -1
  63. xinference/web/ui/node_modules/.cache/babel-loader/71684495d995c7e266eecc6a0ad8ea0284cc785f80abddf863789c57a6134969.json +0 -1
  64. xinference/web/ui/node_modules/.cache/babel-loader/80acd1edf31542ab1dcccfad02cb4b38f3325cff847a781fcce97500cfd6f878.json +0 -1
  65. xinference/web/ui/node_modules/.cache/babel-loader/8a9742ddd8ba8546ef42dc14caca443f2b4524fabed7bf269e0eff3b7b64ee7d.json +0 -1
  66. xinference/web/ui/node_modules/.cache/babel-loader/d06a96a3c9c32e42689094aa3aaad41c8125894e956b8f84a70fadce6e3f65b3.json +0 -1
  67. xinference/web/ui/node_modules/.cache/babel-loader/d93730e2b5d7e8c957b4d0965d2ed1dac9045a649adbd47c220d11f255d4b1e0.json +0 -1
  68. xinference/web/ui/node_modules/.cache/babel-loader/e656dc00b4d8b387f0a81ba8fc558767df1601c66369e2eb86a5ef27cf080572.json +0 -1
  69. xinference/web/ui/node_modules/.cache/babel-loader/f28b83886159d83b84f099b05d607a822dca4dd7f2d8aa6d56fe08bab0b5b086.json +0 -1
  70. xinference/web/ui/node_modules/.cache/babel-loader/f3e02274cb1964e99b1fe69cbb6db233d3d8d7dd05d50ebcdb8e66d50b224b7b.json +0 -1
  71. /xinference/{locale → model/llm/llama_cpp}/__init__.py +0 -0
  72. /xinference/model/llm/{ggml → transformers}/__init__.py +0 -0
  73. /xinference/model/llm/{pytorch → transformers}/cogvlm2.py +0 -0
  74. /xinference/model/llm/{pytorch → transformers}/compression.py +0 -0
  75. /xinference/model/llm/{pytorch → transformers}/deepseek_vl.py +0 -0
  76. /xinference/model/llm/{pytorch → transformers}/glm4v.py +0 -0
  77. /xinference/model/llm/{pytorch → transformers}/llama_2.py +0 -0
  78. /xinference/model/llm/{pytorch → transformers}/minicpmv25.py +0 -0
  79. /xinference/model/llm/{pytorch → transformers}/omnilmm.py +0 -0
  80. /xinference/model/llm/{pytorch → transformers}/qwen_vl.py +0 -0
  81. /xinference/model/llm/{pytorch → transformers}/tensorizer_utils.py +0 -0
  82. /xinference/model/llm/{pytorch → transformers}/yi_vl.py +0 -0
  83. /xinference/web/ui/build/static/js/{main.17ca0398.js.LICENSE.txt → main.ffc26121.js.LICENSE.txt} +0 -0
  84. {xinference-0.14.1.post1.dist-info → xinference-0.14.2.dist-info}/LICENSE +0 -0
  85. {xinference-0.14.1.post1.dist-info → xinference-0.14.2.dist-info}/WHEEL +0 -0
  86. {xinference-0.14.1.post1.dist-info → xinference-0.14.2.dist-info}/entry_points.txt +0 -0
  87. {xinference-0.14.1.post1.dist-info → xinference-0.14.2.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  xinference/__init__.py,sha256=muQ9V9y11BcIqlZhhc06oDf193H7bwDIa8e_wSoDKI8,986
2
2
  xinference/_compat.py,sha256=SQAjZMGxtBIce45qtW7ob7RWzA0zhv2yB3AxT0rb0uU,1778
3
- xinference/_version.py,sha256=QoA_TD3bkIhqC5P-nHizAF7n_tH1vzTXvVYxPEk7X9M,504
3
+ xinference/_version.py,sha256=L5mP7EvRK_i_tq806NRgnA7qkYijRGgujQ6iJUGT_bo,498
4
4
  xinference/conftest.py,sha256=FF-ZkqkfOxQw4hz_8G7p5aB7gFdsJlr6u2ZdFuuauAA,9744
5
5
  xinference/constants.py,sha256=FZwKBlSwUMb1_qKMZWfkz9z6nrgdgOhO-g7S_Qn3cis,3319
6
6
  xinference/device_utils.py,sha256=zswJiws3VyTIaNO8z-MOcsJH_UiPoePPiKK5zoNrjTA,3285
@@ -9,7 +9,7 @@ xinference/isolation.py,sha256=uhkzVyL3fSYZSuFexkG6Jm-tRTC5I607uNg000BXAnE,1949
9
9
  xinference/types.py,sha256=S6bp6XOhjNy4LlI6Hxp1uCkKX3dimiEjkzxNHfc6hcs,13932
10
10
  xinference/utils.py,sha256=VSOJMFd9H7kce98OtJZbcDjjpfzRpHAFs8WU0xXPBM8,717
11
11
  xinference/api/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
12
- xinference/api/restful_api.py,sha256=mVChYmJFUip7Wm7jW4qlkxuS5ONAa3pcGmfX0LXc21s,77889
12
+ xinference/api/restful_api.py,sha256=LBUumfTmPdBaTuW3XVA4P9h6FyndMvZYtQr-JSxC39Y,77101
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,34 +18,31 @@ xinference/client/__init__.py,sha256=Gc4HOzAy_1cic5kXlso7hahYgw89CKvZSJDicEU461k
18
18
  xinference/client/common.py,sha256=iciZRs5YjM2gYsXnwACPMaiBZp4_XpawWwfym0Iyu40,1617
19
19
  xinference/client/handlers.py,sha256=OKl_i5FA341wsQf_0onSOPbbW6V861WJrSP7ghtDc8c,527
20
20
  xinference/client/restful/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
21
- xinference/client/restful/restful_client.py,sha256=TOiEmKNT86SWUpnLWymKUgU67TAtVoxhHT2y68lEMfI,51625
21
+ xinference/client/restful/restful_client.py,sha256=3He6Tj6GUJ3IVc_CjDDX1pzKUSomEOSK5oE_2Zj2VBk,51649
22
22
  xinference/core/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
23
23
  xinference/core/cache_tracker.py,sha256=2hk8ANOYruhxAt4MPz482tYEQcvYBh_B7sq0eYd0rTU,6963
24
- xinference/core/chat_interface.py,sha256=DiVTdIXveJxUuZC8w4wzEBmyzclhHmdEDlBZ_GlC3Wg,19486
24
+ xinference/core/chat_interface.py,sha256=WBQWKhXB_--1RQQ-qqL84DZVQg1M-NQoPDxdExJOc18,20944
25
25
  xinference/core/event.py,sha256=Lkx_-Ohwyzyt-MBbkrZy9N-7aeYs-wux0fDtZpa2SJY,1632
26
26
  xinference/core/image_interface.py,sha256=wxxhNBVXgwV5fuI9CdWuZ_bMrqcQYfivUK0r2ix3Avo,10071
27
27
  xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
28
- xinference/core/model.py,sha256=Jru8hJF1AEYNvRewydNLBugXDxysU2vplmPzwIKJoEw,27704
28
+ xinference/core/model.py,sha256=We2E4IOY7BwnUpXGnth52Af9LZNoOykT-1oxJqkRP-4,27731
29
29
  xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
30
- xinference/core/scheduler.py,sha256=WaWgmVL5FIdcanP1RqMKvnObf7BHldREpYwRUePnTQo,15691
30
+ xinference/core/scheduler.py,sha256=X5lWhzkgTgZgIU-RKz1ytFIju4kE9voII0y0KYUaym4,15651
31
31
  xinference/core/status_guard.py,sha256=fF5hisvfn6es9DV6Z6RRD6V_S_uLcb8lHM6PArGgb04,2820
32
32
  xinference/core/supervisor.py,sha256=BhL-VCUvfazH_UQ8n99vCgapwt_ZB73KWwZy9NY6rPw,52253
33
33
  xinference/core/utils.py,sha256=LqPrez5dGELRQDSwOD5EP8XHb-aUKAdyszS-QpNouuw,6401
34
- xinference/core/worker.py,sha256=DJYvKDuIzE1BlP0uREwxNV7cSf3MZnAgPqmitH3u3Gk,45628
34
+ xinference/core/worker.py,sha256=H63pA_sqZAMEJjmtxQhGuFSTuYSiPa0p8xTu5KrTCuY,45619
35
35
  xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
36
- xinference/deploy/cmdline.py,sha256=iiZCKtp3jXgio_Xj8AK0Ywgv3LD8gRV45pGYrjlAOdQ,48489
36
+ xinference/deploy/cmdline.py,sha256=PNp5_Y9_ZMceTHiwbKcj7EEKQo6lpaOVMVfkGxx9190,48489
37
37
  xinference/deploy/local.py,sha256=vlAvhcl8utP1DjW4MJpBgD4JLHQV-1Xebmdd8j9M8IM,3946
38
38
  xinference/deploy/supervisor.py,sha256=fMHeEGigQ72PD9JEFmZ5Xudn25Uj4DhD2OVIlAu_YpA,2978
39
39
  xinference/deploy/utils.py,sha256=DnDjRqiAA77CzAax1laAmNXJM4PFoUxQhRaobmss3fI,6695
40
40
  xinference/deploy/worker.py,sha256=Av3qU1b0tdxfkds3Mc2Qiqy9c_xSD0Tp3cToWoXqTpo,2966
41
41
  xinference/deploy/test/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
42
- xinference/deploy/test/test_cmdline.py,sha256=6sONdu5lKYE-F-0fWaujFUvuy87KZl8IJv0kr0jVDI0,7666
43
- xinference/locale/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
44
- xinference/locale/utils.py,sha256=w-G1DAJGw1UUQVVtq6khOZn7ZjobUmTw6qwHMm2eWIs,1312
45
- xinference/locale/zh_CN.json,sha256=YA55G9s1p05Bt5RBoDo5SV12dd-CMJI0ABap6RpCp4M,1097
42
+ xinference/deploy/test/test_cmdline.py,sha256=m8xDzjtDuAJy0QkvYVJIZDuTB29cmYBV0d231JyRCPU,7714
46
43
  xinference/model/__init__.py,sha256=IRC3ojiqYkVLIK_xsIxYeKypEeeTTdrovnVzK_4L4eg,663
47
44
  xinference/model/core.py,sha256=WQakLJgxrJMbTGn9AVaw-Tas7QL5M8cJsuYpGgH-io8,4706
48
- xinference/model/utils.py,sha256=NGIXgpkUY0dXGxnh-FsfeNq6OS9SPwBzNfASLXWCqUo,15146
45
+ xinference/model/utils.py,sha256=0aTidQMD-boAsTzEwWTJjzirtcHkG_7vPUv04PuPwBc,11762
49
46
  xinference/model/audio/__init__.py,sha256=QyQwELIYk7DuD5Hen2q45pLMJ4K8iAnto8zlOA9QUSY,2839
50
47
  xinference/model/audio/chattts.py,sha256=JZA_0TR4nMGqJ-2WYqwb8DcjhsTC57D0QlkPBl4v788,3973
51
48
  xinference/model/audio/core.py,sha256=_9Nz1_w1Jq3Y4bIxAgsqnmtG4dneFAajDLXtQLz8j44,6264
@@ -76,45 +73,39 @@ xinference/model/image/model_spec_modelscope.json,sha256=CE9AomBC4hR556Ur1yd0zr7
76
73
  xinference/model/image/utils.py,sha256=gxg8jJ2nYaDknzCcSC53WCy1slbB5aWU14AbJbfm6Z4,906
77
74
  xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
78
75
  xinference/model/image/stable_diffusion/core.py,sha256=FU5edpBeKwlG6dwMOVecT9xeTjXgrAmrjge-OOSzzFs,10207
79
- xinference/model/llm/__init__.py,sha256=pZmMJ7wc9U-5PRARS2KOjQqf8wH3jJ4jtvtmppyMKcc,11543
76
+ xinference/model/llm/__init__.py,sha256=HpzJ4RYvHUJBqFZgA9jW8ppfAyZ7UkTQ5y73j7A6fu4,11285
80
77
  xinference/model/llm/core.py,sha256=f4nKVPTAseivij6mbL2yXEKxrzllKm-_i2ttSqckTCg,8157
81
- xinference/model/llm/llm_family.json,sha256=JLNe4OX6Sju3LqlKcYuspzLagDboNLOST1jEfaW4Su4,205826
82
- xinference/model/llm/llm_family.py,sha256=pnrQkQt0riqJ_XtuF1erLxgbMveSq9Nx3GEOerH3rus,42857
78
+ xinference/model/llm/llm_family.json,sha256=bkT4lznSy79RQ2S5sV6JALzHVc2WowYQGcEe7qTBkTk,189084
79
+ xinference/model/llm/llm_family.py,sha256=Nv2RFh2lS4P6LZkRNx1BGCk32fKdQyc7Jzw58xuXYXU,38182
83
80
  xinference/model/llm/llm_family_csghub.json,sha256=fqIodnCl2_VUpX1NaBdVYApG2LRkXMhUxLNhLt8C7W8,3057
84
- xinference/model/llm/llm_family_modelscope.json,sha256=i9zvjGBe-MKhEHuWJr_Onez7lyMrDSzVTyaCGy8epLw,125040
85
- xinference/model/llm/memory.py,sha256=PTD8m6TCZVU1zrwc9wepX9cUjCqAXBENj6X7tjua0to,10207
86
- xinference/model/llm/utils.py,sha256=pkMLvc9o9qnCTbBEwaT-RFj2EBKzuL1zloX-4p_gIFE,35424
87
- xinference/model/llm/ggml/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
88
- xinference/model/llm/ggml/llamacpp.py,sha256=an0IR3pkOUHQWERNYZx6vqSyKhp5kKnHRhcKxVwBVdU,13043
89
- xinference/model/llm/ggml/tools/__init__.py,sha256=6a6P2VPKE06xKxJ-dTqp4TRO2IEDWvtcVP6gHutAR0M,624
90
- xinference/model/llm/ggml/tools/convert_ggml_to_gguf.py,sha256=92To8eoVQBkDZD52_aWBNda2K1Ob6YaHlcfS-8_aOuw,17991
91
- xinference/model/llm/ggml/tools/gguf.py,sha256=Hv2haR-UN7NdB1N8YId32hFoEPd-JX6_aUNWRJhyJZc,30277
81
+ xinference/model/llm/llm_family_modelscope.json,sha256=ED19bPzvWliYjyuN16lFjxyawM-2hHZBDeAedACtCv0,124087
82
+ xinference/model/llm/memory.py,sha256=NEIMw6wWaF9S_bnBYq-EyuDhVbUEEeceQhwE1iwsrhI,10207
83
+ xinference/model/llm/utils.py,sha256=rGy6xHrh_BlXO721RUP05cX5sG5wBZt6pidwsGiopq8,35442
84
+ xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
85
+ xinference/model/llm/llama_cpp/core.py,sha256=sTwUY6a14bCXgAbFMNmDM2ToQMj-iAk-0KHnFJGz3tU,11755
92
86
  xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
93
87
  xinference/model/llm/mlx/core.py,sha256=rxZ7aS9QoapJJ0jBOct4ckj5KsftWlND0n6Qlbs3A-w,14485
94
- xinference/model/llm/pytorch/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
95
- xinference/model/llm/pytorch/baichuan.py,sha256=TpCfi37Ou87VA8S5siGRUK5JWC5SjGbZYkZoTe9VSA8,2883
96
- xinference/model/llm/pytorch/chatglm.py,sha256=sZuSEaEZL_29OJHkqhpNG2BfwNEqRSKNMl-5vdCPyfk,22425
97
- xinference/model/llm/pytorch/cogvlm2.py,sha256=3RaKxVD6AVNlCi6DokXPmcgINaRY1ImHxF5Gg9u6a70,18622
98
- xinference/model/llm/pytorch/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
99
- xinference/model/llm/pytorch/core.py,sha256=Pc3IgSAa9NYK3fSwsyeaPNNtcR0j14EZsTGo3RAvNOs,31010
100
- xinference/model/llm/pytorch/deepseek_vl.py,sha256=yiOJd2GHrVTTFvyZ7hLV-O-YsCfqRAEHK46ah-zqq3I,11562
101
- xinference/model/llm/pytorch/falcon.py,sha256=-tn55ZMHx197vLsJOSjkY5ugt59Od67QoyPyff4YtA0,4562
102
- xinference/model/llm/pytorch/glm4v.py,sha256=30xUH1pKK7WAjxPFmqiMarTRz7wUEw8ttskex8Hjv9I,16609
103
- xinference/model/llm/pytorch/intern_vl.py,sha256=JVhWJYFgS49CtHz-OF1ofI6PNyd7vcI0MgmB9dWK3vU,13312
104
- xinference/model/llm/pytorch/internlm2.py,sha256=NkpPY49KMSuTGVR0SEbziH7eO2sV7I-2MTlCcE7iqNc,7956
105
- xinference/model/llm/pytorch/llama_2.py,sha256=Nr2yaNxmoDmPhIw_p0lwN76iB4jxh7NGKDoK-YaIZiY,3836
106
- xinference/model/llm/pytorch/minicpmv25.py,sha256=ocYKurUS73oblN84EqI9yM7fpK5o1NvR456efL_Oc-Y,8782
107
- xinference/model/llm/pytorch/minicpmv26.py,sha256=Djt56nNrBB3jG2E-TfuzURA8VoJWLglWJ_FlRcmR9zE,8853
108
- xinference/model/llm/pytorch/omnilmm.py,sha256=3vF8963CbSOrTZhkiNrzAI-p14b57s8QiR_aGBM1oMY,5724
109
- xinference/model/llm/pytorch/qwen_vl.py,sha256=4JukyB0YVH0TcyV8sIErhbRRJgNdrB4jSxx1mFBnIQ8,15592
110
- xinference/model/llm/pytorch/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
111
- xinference/model/llm/pytorch/utils.py,sha256=HZhJKQG1O1P1qTpxvVzIjBp-2J8aTRxUmS9QBdT4UP8,27932
112
- xinference/model/llm/pytorch/vicuna.py,sha256=bhDcwGTIk37EavzDtqbaCidkkBJ6I6rm3K-yptKVxJU,2397
113
- xinference/model/llm/pytorch/yi_vl.py,sha256=RP_NmaASIhznwS332l0Xuj7hfGSOLWcQhXLbEz2sCP0,10975
114
88
  xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
115
- xinference/model/llm/sglang/core.py,sha256=HBuOImMSOLg1Rt92mtNlrbc0f4m_p8mAQ6NPq_r5yrg,15764
89
+ xinference/model/llm/sglang/core.py,sha256=GMSAR4XHBMAhF-YqK9E9bTC9nMxSnx5hW3y2ZwiMInk,15778
90
+ xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
91
+ xinference/model/llm/transformers/chatglm.py,sha256=h0LgHWWoLk96VnW0ZS4o9QGntQWDScGmGmJoIVwKkK4,22118
92
+ xinference/model/llm/transformers/cogvlm2.py,sha256=3RaKxVD6AVNlCi6DokXPmcgINaRY1ImHxF5Gg9u6a70,18622
93
+ xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
94
+ xinference/model/llm/transformers/core.py,sha256=O3hFqMcSvI81gkCC7wV-o9fCJ0E8VXm0LWnMKwyQQ5M,30853
95
+ xinference/model/llm/transformers/deepseek_vl.py,sha256=yiOJd2GHrVTTFvyZ7hLV-O-YsCfqRAEHK46ah-zqq3I,11562
96
+ xinference/model/llm/transformers/glm4v.py,sha256=30xUH1pKK7WAjxPFmqiMarTRz7wUEw8ttskex8Hjv9I,16609
97
+ xinference/model/llm/transformers/intern_vl.py,sha256=K_yQq7estEWaBcFet-G_ZPGdufYnt1c8nuJTrEMGyS0,16331
98
+ xinference/model/llm/transformers/internlm2.py,sha256=9x_mPhCQifmBVNoIQ_z3DXtI2qRsA_3wOckRsGmDDog,7831
99
+ xinference/model/llm/transformers/llama_2.py,sha256=Nr2yaNxmoDmPhIw_p0lwN76iB4jxh7NGKDoK-YaIZiY,3836
100
+ xinference/model/llm/transformers/minicpmv25.py,sha256=ocYKurUS73oblN84EqI9yM7fpK5o1NvR456efL_Oc-Y,8782
101
+ xinference/model/llm/transformers/minicpmv26.py,sha256=EiThtyMeMrmjbT-Mu3cVLYGsXCPGmYHO9Z0Wkckjeis,10484
102
+ xinference/model/llm/transformers/omnilmm.py,sha256=3vF8963CbSOrTZhkiNrzAI-p14b57s8QiR_aGBM1oMY,5724
103
+ xinference/model/llm/transformers/qwen_vl.py,sha256=4JukyB0YVH0TcyV8sIErhbRRJgNdrB4jSxx1mFBnIQ8,15592
104
+ xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
105
+ xinference/model/llm/transformers/utils.py,sha256=EMHeihMi6MWL9j1m2CUB1Pcniv-fJjDOcoMs8e5oEbE,27936
106
+ xinference/model/llm/transformers/yi_vl.py,sha256=RP_NmaASIhznwS332l0Xuj7hfGSOLWcQhXLbEz2sCP0,10975
116
107
  xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
117
- xinference/model/llm/vllm/core.py,sha256=zjXjlaXY4UrljDYI4MbCWKMNmhqTuwdpv-A78CLLfFs,23844
108
+ xinference/model/llm/vllm/core.py,sha256=KX9dcS3nEbt1L7njBEVDZ7WPFyIdkgBRgKJ4-lUK6tc,27824
118
109
  xinference/model/rerank/__init__.py,sha256=BXIL1uu3ZpZHX9bODhW9lxKUXudZE7-OkXFmmM5rpMU,2817
119
110
  xinference/model/rerank/core.py,sha256=G3SMm7BlMk3r8zyDs5FwwTCemlWHYspuZtTh8pWpdmg,12231
120
111
  xinference/model/rerank/custom.py,sha256=NKk7jA7p4xkuwS5WoOs2SY2wdnoAVpyCjBTvv317bBw,3917
@@ -189,6 +180,8 @@ xinference/thirdparty/deepseek_vl/serve/app_modules/utils.py,sha256=OzrxNSM8oNLK
189
180
  xinference/thirdparty/deepseek_vl/utils/__init__.py,sha256=u8C--egJMT_DDm0JG3frXGSQNNv6cfIAumPhghzkxhk,1091
190
181
  xinference/thirdparty/deepseek_vl/utils/conversation.py,sha256=7oITA8TsIuOfumVZ8hcoDpA6dm1jz7n8-VXPe_7-4YA,11702
191
182
  xinference/thirdparty/deepseek_vl/utils/io.py,sha256=HQqLoONZF4nl1E9oMrm7_2LwU8ZSh1C9htm7vLN4YfI,2751
183
+ xinference/thirdparty/internvl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
184
+ xinference/thirdparty/internvl/conversation.py,sha256=2wLSnfxyLItQaLd-N5xoybBPKyZadXkVntPuMV5iyGo,15040
192
185
  xinference/thirdparty/llava/__init__.py,sha256=UlCNtyBVX645CB6S6LfyYkTfQVO18_a8e9SmR7cHExA,41
193
186
  xinference/thirdparty/llava/conversation.py,sha256=_OKwx8mkikwfsuTVR3BtvolqNcwY1X3DP7X9TlmR31g,7758
194
187
  xinference/thirdparty/llava/mm_utils.py,sha256=f0JFOhbdFyLjA8W6VRDsGn5Xwnz4fWjY4Gyt3Apzk7k,3883
@@ -209,19 +202,19 @@ xinference/thirdparty/omnilmm/utils.py,sha256=VUMXIgq1tx3qwDmS2VewsXra6XqCUArQB0
209
202
  xinference/thirdparty/omnilmm/model/__init__.py,sha256=CLYHL_fUqFqH7osJnRhVevBlnHaF06GBoNeYNRSmzq4,40
210
203
  xinference/thirdparty/omnilmm/model/omnilmm.py,sha256=5m7b-keWplZG1-_YfLqwgaSvuhMJROYTq7AqrEFBl60,23919
211
204
  xinference/thirdparty/omnilmm/model/resampler.py,sha256=a4zxggEqFDU-T-vE-6iUZ3Pr65qP5_D_DA59pj5F6pc,5202
212
- xinference/thirdparty/omnilmm/model/utils.py,sha256=p9OJZ9YH8xLZjZ32iuqtLJPymxa_quUnX79B4EjenCg,16350
205
+ xinference/thirdparty/omnilmm/model/utils.py,sha256=u2ulK2vb-FgAoAPBPWEO8fb_owles1Uuh57LMrX2D-I,16467
213
206
  xinference/thirdparty/omnilmm/train/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
214
207
  xinference/thirdparty/omnilmm/train/train_utils.py,sha256=L4JtFWDKtdEcQYpGW-UV6GCswTqHkiskK3phM9J-xUM,5634
215
208
  xinference/web/ui/package-lock.json,sha256=MDt0IM5NT4MvrBwKJxD6TlgqKHvRQB7uH2szO1CQspU,762056
216
209
  xinference/web/ui/package.json,sha256=W0Bq0vT0HOALv-nFo34Fos3r6DKrjR7zAL5swLg5qZg,1987
217
- xinference/web/ui/build/asset-manifest.json,sha256=_QCAXx1HT-h0nsB8Vdav1vtIA14ok04V2Eg-mFkeqCE,453
210
+ xinference/web/ui/build/asset-manifest.json,sha256=GvEjISD5DWcxwLF9RdwU0Ke4op_MdyYhBFKdkRHbf1g,453
218
211
  xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
219
- xinference/web/ui/build/index.html,sha256=BOIV3I_0pc54lBlzHC2nyf6Psz4cdIQRNcLQYLe9nFU,650
212
+ xinference/web/ui/build/index.html,sha256=1Ax6XzpPHFSfEAknRO0Jt_xYUCvbLB1Txq6OXkhMpZo,650
220
213
  xinference/web/ui/build/static/css/main.4bafd904.css,sha256=B1LOr0CAJXDztw7bSsJMTmEwdzqnciZOYjgeBSO25cQ,3910
221
214
  xinference/web/ui/build/static/css/main.4bafd904.css.map,sha256=rIbo5tZ_vpOnVcUwFk29B6UpEffrfphEQ3XKUAuG49E,7794
222
- xinference/web/ui/build/static/js/main.17ca0398.js,sha256=dBpa4YktxCOI8bMcpH-rkyGlEE5CdIgZ58a8Hb2Ph-k,989835
223
- xinference/web/ui/build/static/js/main.17ca0398.js.LICENSE.txt,sha256=rbybPZZs56fvnjMiAklb5AB-cE9DLmWrrraygrxIG3I,2279
224
- xinference/web/ui/build/static/js/main.17ca0398.js.map,sha256=F15I5QInQDy8MwwhH09z7eStDE0A1qWtPLaKG_rClwA,4390928
215
+ xinference/web/ui/build/static/js/main.ffc26121.js,sha256=2c0fd6PBo74kTUFlw3_PMYQfbkQPlU8c4jASraVuLeM,990319
216
+ xinference/web/ui/build/static/js/main.ffc26121.js.LICENSE.txt,sha256=rbybPZZs56fvnjMiAklb5AB-cE9DLmWrrraygrxIG3I,2279
217
+ xinference/web/ui/build/static/js/main.ffc26121.js.map,sha256=T9Yzy9ar8e3rydkolxA56_nrt1jZjcTd7qsDL4lgtgk,4392253
225
218
  xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
226
219
  xinference/web/ui/node_modules/.package-lock.json,sha256=9jU355rtDRCO-oEwZIz20ylwNPD9ZXgReo7Uu8B97Zg,760016
227
220
  xinference/web/ui/node_modules/.cache/babel-loader/000791038e4133db461021f1018491323a006cca7a53e09c2ac35032bc36d8b6.json,sha256=bke3WZZjPsJqMKVeHZ7xOSiE8x3fy4fe9nzvylycWOE,1374
@@ -1201,7 +1194,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/1433ba0a6d2513c7ad5e5f976044b
1201
1194
  xinference/web/ui/node_modules/.cache/babel-loader/143c7ab47ba4030a82a7047c9e7e822dd293f9980b5451059b73495b14f95b8c.json,sha256=N1siyw4GIDRiIUw7KDMUsx1MKuDhIdyfxAzsfPP_kQA,1005
1202
1195
  xinference/web/ui/node_modules/.cache/babel-loader/143d52600281147ad6173b982e9e71a369df6edce4daffdf4bbbb900a4e190ed.json,sha256=oJY_CHgPbgUG9w_H_aPyKZpmgUncCnQH79z252FRqSY,1235
1203
1196
  xinference/web/ui/node_modules/.cache/babel-loader/144486b896d2d4da550ddbc52312a9e23c2be0532483fa64869da6e69d8632d1.json,sha256=t-Oox9TZFZVlMJ-y2ALN4R2ibpHzSzCvpkSqkwKm0_E,1086
1204
- xinference/web/ui/node_modules/.cache/babel-loader/1444c41a4d04494f1cbc2d8c1537df107b451cb569cb2c1fbf5159f3a4841a5f.json,sha256=5sZS-0p-2kg7gUe3TgREAyN8az4q5d4A65VDHBbSS_4,5132
1205
1197
  xinference/web/ui/node_modules/.cache/babel-loader/145d58e6350b9f41b1cf04a8c5c5fe95e68b034954367f3b9d14eb39752d31fb.json,sha256=102dE2JMhaxVkE_ZhviaJt7X10sLrpNpxL3tcEJcmiQ,1822
1206
1198
  xinference/web/ui/node_modules/.cache/babel-loader/145db411af3d5c665d2aac79ddb404392238b4dfa545cf68aafda8ee69b2156b.json,sha256=bd-8sXL27dN58Ky-iIbd_jpvEK52XnIlodk1mdNm73g,1145
1207
1199
  xinference/web/ui/node_modules/.cache/babel-loader/145e05056283410442796001d101eda9055192c9468dcad3d5e649a90864baba.json,sha256=hdQgQC_Pg5Brt06Yp7SaNkhHQtNyPSWB1KZc2EFVHd0,1187
@@ -1854,6 +1846,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/2133e9998f86c1b8be0c8192581cc
1854
1846
  xinference/web/ui/node_modules/.cache/babel-loader/2135271a3422b58bbbb73ea0522c4ad3e85a5d5759eb5a5276c6945210217ba5.json,sha256=ATXIRvW1Bhv11Qf94LRLZOlhmemxehaS3X7AESpQ16Q,3476
1855
1847
  xinference/web/ui/node_modules/.cache/babel-loader/213599cbf80c03eb12b4253070a9ead5056d5e969db67deae77d29840132781d.json,sha256=aiJrmF4NNVwd0UnZy4mDk_JTYOON272_XJ5WInibiBU,1358
1856
1848
  xinference/web/ui/node_modules/.cache/babel-loader/2139e4cd9ab639967af2de06782119c5289f9f929414ff5b7bdcfdee79f63821.json,sha256=Dw4pZWctb75WN-B3HjY9N2zBxYbg2TSt2NppOTJcsAY,1674
1849
+ xinference/web/ui/node_modules/.cache/babel-loader/213b5913e164773c2b0567455377765715f5f07225fbac77ad8e1e9dc9648a47.json,sha256=lR42yeGi2x99W893Ueph-olExsVWbQJFDUSdTaamYs4,38167
1857
1850
  xinference/web/ui/node_modules/.cache/babel-loader/21415ee75cee791b86f63613e1f044be20f420a8d8e12447b555811c6b72230a.json,sha256=PZZVDlxodpkrKPvno5RLbfI1QdJP8T8jKzR0zIYho4A,1470
1858
1851
  xinference/web/ui/node_modules/.cache/babel-loader/21443176cb70827bc4ad999f21e75f8336a3da1d46c98a67cd0a4a9318ebfac2.json,sha256=ZkL6mqNA7xbnOIDvM6RWjVGRRsExKM02py9WRy_zbHo,1594
1859
1852
  xinference/web/ui/node_modules/.cache/babel-loader/214a4ca727fe07615a26a71a75e7cc65d4a96935083ab8e887e37a9a546912c7.json,sha256=arjz1T91PFV6GDdtyQDRIJvQerx03hP6fxhV_34BxJA,1300
@@ -3509,7 +3502,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/446a53d3c43f8dbf1c00905246bb6
3509
3502
  xinference/web/ui/node_modules/.cache/babel-loader/447296e291433715abe6074f2c9de32822fd763f976f34c4624a0fb66e3991dc.json,sha256=Eu7J3ufNQNXcGSfhCMAjjxBD1_gaJc467yWOy3O4NzE,1539
3510
3503
  xinference/web/ui/node_modules/.cache/babel-loader/4473f8cc4ffd17c571550d0ff7f5071b89467be4785a9d481511a82ce182a608.json,sha256=D5QOxF1Wfo5K6PyeA8P7DDTVWklulYYlzVa0bC75pBA,1349
3511
3504
  xinference/web/ui/node_modules/.cache/babel-loader/4474f834610ec1bf6d1eab1383d277b5f3ba3bd4c410adbbdb247d020283b240.json,sha256=I20WMcp60upaYuDbgsb96Xy5wmf1msYTp5F-aAfxpvk,1123
3512
- xinference/web/ui/node_modules/.cache/babel-loader/44774c783428f952d8e2e4ad0998a9c5bc16a57cd9c68b7c5ff18aaa5a41d65c.json,sha256=m7sHyocWtLkhYpmrz5vMdR8__58aBawCZXyNLeboY8I,3649
3513
3505
  xinference/web/ui/node_modules/.cache/babel-loader/4486bac33e40e83e2730730ffc02660c033e23c1428da2cf3e345bf87bddd66d.json,sha256=jpsOd3LpqPFiIFZ_YLT5T94nXHkh9Q_pUyMdV2p4VAE,38078
3514
3506
  xinference/web/ui/node_modules/.cache/babel-loader/4489ee9372813f533a99906435462debf120a507f0b3bfd7a00799d7b3e11635.json,sha256=fM9DFvjt2_vD0JTA8OtT5uZe-3tHJPMkGF230A9dpaw,1124
3515
3507
  xinference/web/ui/node_modules/.cache/babel-loader/4491d55776d45a03f801249521f1a2cc26bf10ece5ded1770b92985f013620f2.json,sha256=g1lb6TC-igd08FOPCNWr57SdX74qcqSQONMxhv6rv-w,1212
@@ -3934,6 +3926,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/4dde5b1a98cbd1f46965d40abcfda
3934
3926
  xinference/web/ui/node_modules/.cache/babel-loader/4de35f342fb64c610c5f9b3817986698f38defc8f0e41b1e75f27b3f6d79a912.json,sha256=up__YhEd1JO0rdaDC9dKYKMHe88uI2wrZKSGRTezhSg,1507
3935
3927
  xinference/web/ui/node_modules/.cache/babel-loader/4de4b0282a3d1ae02bec0bfe7d6658f039141406e8bfdbe86bf1dc5b115a2524.json,sha256=vqfFfoskLffaUTw2xEkTt3nEI9O61Zx-EZ0grmfuuMs,15148
3936
3928
  xinference/web/ui/node_modules/.cache/babel-loader/4de90c3af82b41c0a7824b2197310fdce5c6a27e3884e3e080e804b87f121275.json,sha256=vkdAXfOe0fXOU2JvuTRDKRo-uuCLXe9Gx_ZHQPJymmY,1439
3929
+ xinference/web/ui/node_modules/.cache/babel-loader/4de9a6942c5f1749d6cbfdd54279699975f16016b182848bc253886f52ec2ec3.json,sha256=z5CfC6Su3CQ6mQVpWfRadjufaMp5FgcCWEN6uKRWNJQ,8738
3937
3930
  xinference/web/ui/node_modules/.cache/babel-loader/4debf275167eb48c717464de9cd4f81837fe5aad0b5bd9788fcf920a123c744d.json,sha256=nmfGj8qpKAWj7f17-UOB3I-hrWYt4NI_hHzqtV-Hp30,6077
3938
3931
  xinference/web/ui/node_modules/.cache/babel-loader/4df0db29f4d6297df1d67f816277f5287feea40861f9603339a8959bd3958457.json,sha256=moVb0BtmWbJt0ReqWOeKxzel9fcZlfkZuWUyXSVYUdw,1579
3939
3932
  xinference/web/ui/node_modules/.cache/babel-loader/4df174457f9df3202cd7ac256bccc3a1e3f5d5e78a8733da57b9a4b8e4e617bf.json,sha256=4g54PcmHf6AdvKuQ-lMpoSzjr6krz_ea9iyBYlh9Qrg,1652
@@ -4163,7 +4156,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/52519e7ae612319a43ee74b453803
4163
4156
  xinference/web/ui/node_modules/.cache/babel-loader/5251e3e98c9db4c5a0d719a41a1e7880a9adc1c2b4fe0d45c41eb7ae5ecf6c96.json,sha256=O1jlVRBq4KlES_sK86NCs80hzXkEnyLKRcocDPu6NyA,3333
4164
4157
  xinference/web/ui/node_modules/.cache/babel-loader/525360f87cdad5ef701577619eaa86207f2ae2e5b2286ab3340193519c3db531.json,sha256=JMtvUQGf4pG2LKMYWDWkpSd6xN0TGdBW3n4giXtbYo0,1751
4165
4158
  xinference/web/ui/node_modules/.cache/babel-loader/526146c579ba7ab49aefecfd21d18655122f09cf1911f72f5670eea8c541ea9a.json,sha256=hI2ico8PqCY01APiWL-RJ9mO0BagJo_xTj3imfXg_1A,1507
4166
- xinference/web/ui/node_modules/.cache/babel-loader/5262556baf9207738bf6a8ba141ec6599d0a636345c245d61fdf88d3171998cb.json,sha256=hEmL-XvJxfTrmVM5hpI5YAlGby--5Y8JeR3H4BsNX0M,98447
4167
4159
  xinference/web/ui/node_modules/.cache/babel-loader/5274c6a2e8f417ed2e9f42decb1eec20d3db67f1c933498710a81c51393dc948.json,sha256=RJRKueEP1CX4xYLymRMIDxvCUTe4sOhtkMTN-UthRLw,1890
4168
4160
  xinference/web/ui/node_modules/.cache/babel-loader/5279d79627d4cc2418e52a9dc93f3d77df042eb0948d5e93d4066808e6092f82.json,sha256=kwb5kJsEmHqSy6bIEUN1TydOkHNAgPCaWSag_r_gmrg,1263
4169
4161
  xinference/web/ui/node_modules/.cache/babel-loader/527a3d0bd6f849bb8724b5296cc863a28209eb582b0064e0b4f49516bd521941.json,sha256=sdNCPAEcYemZI0EvTvhpnoQB6t3uXd2fgIJFsQ2aea8,2206
@@ -4217,6 +4209,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/53756725ef11f97b1616fa01e4486
4217
4209
  xinference/web/ui/node_modules/.cache/babel-loader/5376b7753a8a2550ee94e61b8d90718fb34537e4928e3a7814d42fc7d6be186a.json,sha256=7fqARyeYRRIkDZU8B22DacVfZhNGbpc3af1cDosLKSM,1192
4218
4210
  xinference/web/ui/node_modules/.cache/babel-loader/537bbbd6a327cc20a826e54e0717f8d71e0ef33648409c512c8a6ed9760f680c.json,sha256=s7KlfGJSNUY1dP7IWhPSu4af0GQEEs8JTgNX-QI8VAw,20223
4219
4211
  xinference/web/ui/node_modules/.cache/babel-loader/53867b68a0b49c920cf6cee6d3bd95e4796ba82dd5332a1d034affa09cc004cb.json,sha256=l2QlE-qR46ATwajq5qPT9iYe7xI6oRR5gINKwBeAF2Y,5554
4212
+ xinference/web/ui/node_modules/.cache/babel-loader/5391543180fead1eeef5364300301498d58a7d91d62de3841a32768b67f4552f.json,sha256=G_HEKnT2SdRrjSiki-K8GLmkDgl46ArKtGhItVUx9VI,9176
4220
4213
  xinference/web/ui/node_modules/.cache/babel-loader/53948204cbb8006d746a9da05456c5b0b1677ea306318c43f3d3fec46c91c67c.json,sha256=mBFWUvbk5tVgrEEBwheW8NojMKSMn1xg1VDQNt1co3I,930
4221
4214
  xinference/web/ui/node_modules/.cache/babel-loader/5394e2b265efd1be72a9030095e93976d88293e24ecf27f8556ffd0b5e5e4216.json,sha256=NZ2iX1zcCo4zR0T8oMKpxhtppOIwp7Q-MmAjXEGDz0s,1336
4222
4215
  xinference/web/ui/node_modules/.cache/babel-loader/539f18646ec870ab1c5e42b7d78b2916cb743c5039e59bef57dc66994b37a7ab.json,sha256=NbMf6NStGj3OiAA8eSgbpw4GHeLD_4F-BUt2DVBAn7U,1811
@@ -4637,6 +4630,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/5c0c94a8c5ea216f513701ff66bb7
4637
4630
  xinference/web/ui/node_modules/.cache/babel-loader/5c0fb1d13fcafcaec0933fd52e295a6ee59c67a5f5b5bfce9276693b16613c1e.json,sha256=KP_hG3aOfeEMKc13RwvxFedXKcwhrqy_neaa359gH6g,1074
4638
4631
  xinference/web/ui/node_modules/.cache/babel-loader/5c15e88d541d44f7a82e24e0415fa49a7a308e9166b33e42a59c9b2db8c75704.json,sha256=B87R_lA-3zg7YrpQNAmhVfFSesBg2OROJ8GeU7tZauM,658
4639
4632
  xinference/web/ui/node_modules/.cache/babel-loader/5c2307007caf7113727f4d99aed80bfd4c88a7398598b3acc25753471cf03046.json,sha256=iAo5B4KaBge4vDxXgvw2ge5aiRsVJXut41j9rDjCvrk,1161
4633
+ xinference/web/ui/node_modules/.cache/babel-loader/5c26a23b5eacf5b752a08531577ae3840bb247745ef9a39583dc2d05ba93a82a.json,sha256=5IH9YntoMuqLSXENJrsTwezn9Rq_f40ssO8_tQawL1Y,98489
4640
4634
  xinference/web/ui/node_modules/.cache/babel-loader/5c2e7b8a81f8cdf0245cad55e5f24161dc6d2d9d87958929efaee83dd644a168.json,sha256=qWL5C4IuWph15wKW1FEUPVQt0n_hMdJCi8Ygaq8RuqI,1267
4641
4635
  xinference/web/ui/node_modules/.cache/babel-loader/5c46789931671a7a2a50792a769f5f5c8de4a3f29c0200dd44dbd5b3d5c138e5.json,sha256=ySjnyhdVM4wi1PVFKpad94Y3ls5FtSZAZClAmo6x_tA,1435
4642
4636
  xinference/web/ui/node_modules/.cache/babel-loader/5c4736ce0f6849573877bc016e6a4f9a3b98cc8e6382a37c730dd23be8edd585.json,sha256=qDV60Gy_nJuLDkXMebGQ-cJkWM6idVnT-lhWpbfNpk8,1177
@@ -5022,7 +5016,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/64440c77438544432a3ec1a333bee
5022
5016
  xinference/web/ui/node_modules/.cache/babel-loader/6444141e9c144f48f8b27f5b5908228902f802812447f53f01b963dcdf992404.json,sha256=PN0T2vVuOG3rNCfivh7C_2PQbw4Qv2vxBGBnBSKjVn4,1472
5023
5017
  xinference/web/ui/node_modules/.cache/babel-loader/64451d65f094dcbb672fbcf7eeed731ff184155b99738eb93bb6161c1b813ce8.json,sha256=eTbnPofRWPiaJlADYHiWRIfDG7dASVrQ2H3dZwxVU80,1330
5024
5018
  xinference/web/ui/node_modules/.cache/babel-loader/64492e2a309d134d43cca7e95cf883d47f4782985232f9b8caf1054cdd885390.json,sha256=VL_Ldn7o29uvlVgIFMB5KNhZLuCCsbWySfH4fMRH6Lc,2882
5025
- xinference/web/ui/node_modules/.cache/babel-loader/6450605fac003812485f6251b9f0caafbf2e5bfc3bbe2f000050d9e2fdb8dcd3.json,sha256=ywJlwKidqHGsAbcZ_vUSiAklOHmkNWAJh6TJoRmsMCk,6769
5026
5019
  xinference/web/ui/node_modules/.cache/babel-loader/6456161fad7d8aede805a1c5ad82de47d7454bb803dfbc95152c494813202429.json,sha256=_C_2gcu3SPXOAexKdGZdv8g_HJ7z5gundJhvHwjUHa0,1310
5027
5020
  xinference/web/ui/node_modules/.cache/babel-loader/64574e03e38034845f14a59e924c36f202e3955551a8699c0984e04b80924bef.json,sha256=OVi65y_tEwWyUITMCf9F3Aek6IS6dzJKAmdfFFUCuXA,1050
5028
5021
  xinference/web/ui/node_modules/.cache/babel-loader/645b212189b74c52721a4a68f7480200dc30bd0d45bc6ed234fbeb3f75bef6c8.json,sha256=yFvN1DN3sWZigqZWPX260PQ_pi6V-ZKLYUzArF7FkOo,1420
@@ -5613,10 +5606,10 @@ xinference/web/ui/node_modules/.cache/babel-loader/713792c4a41823909c2c516de9064
5613
5606
  xinference/web/ui/node_modules/.cache/babel-loader/713a7c6cbe1a51d369ea211dd81b8b07fa3ec3bd6b6804ba1664931220d730d1.json,sha256=wGa-fN0GMeKzD3HiP7egNWWWc98p6YG-VG1M1ElMwk4,62412
5614
5607
  xinference/web/ui/node_modules/.cache/babel-loader/71439f02e5e54600c25ac8f9cef5747eb5bebb112b7c3648dc3515c87aeaa926.json,sha256=zY4FalKwA1Hq1ph-UevXtBbCgJ8NIa2jwV1IG8qox00,1262
5615
5608
  xinference/web/ui/node_modules/.cache/babel-loader/714522557983b3f02995e5006d116b4762d83a2ce9bc45963ef13e7b5799862f.json,sha256=6h9s9hDohB_v-sDZLAtEl-GXcV9hE5GVc30TMR-E328,852
5609
+ xinference/web/ui/node_modules/.cache/babel-loader/714c37ce0ec5b5c591033f02be2f3f491fdd70da3ef568ee4a4f94689a3d5ca2.json,sha256=GFPrsWd9lQ0jORBF4rBasloI8JdVbroE6v29jIJCFjQ,16322
5616
5610
  xinference/web/ui/node_modules/.cache/babel-loader/715706578b819e44279df76407d39a2acfcab9754e40e8365225463376fd7744.json,sha256=q83Vj32ygRBO8a0eyGVihPI29XU0hYHil6qaD1NtVH4,1383
5617
5611
  xinference/web/ui/node_modules/.cache/babel-loader/715eca31da811b86eefa1f104059b758893ed40b3c87567eda97700a6580b854.json,sha256=_vtbzJ46JTTeHBGXkKh0lYTFFJ5AU_-F3TdNTolIX_M,1787
5618
5612
  xinference/web/ui/node_modules/.cache/babel-loader/715fa31d949879e8931dee412d41c05260360df774daa8110c02fd436f4aef04.json,sha256=u99HYCFJ22wB4NkmV68qcAsfv46iR_N8eNf4edciK40,31477
5619
- xinference/web/ui/node_modules/.cache/babel-loader/71684495d995c7e266eecc6a0ad8ea0284cc785f80abddf863789c57a6134969.json,sha256=eAOoVy-oA7xNvkvZ0xV-Bbu-WVJJoSn0As5GTXMoi4c,13846
5620
5613
  xinference/web/ui/node_modules/.cache/babel-loader/716d3733cb4b722e518853aba885ca898f3bad65fad9833fa5a72ffddb201cee.json,sha256=P3HwpmEWNo3fl4vBl4rVIjPsKr-kolL3KgKtrhR1KAg,1436
5621
5614
  xinference/web/ui/node_modules/.cache/babel-loader/7172210b45c3815593867b6f4581d62e6107b7b0c68b1a9d8821b3302d54701f.json,sha256=IzFHPZ88QHOFiQhBv3T7UQnoGRa14Qxa_wapLiPzhAQ,3145
5622
5615
  xinference/web/ui/node_modules/.cache/babel-loader/7175f7508db91e31eb39c03b15b9dbf39577f554c287f2294a9cb1f0c55289d8.json,sha256=q9UdUN7ppaKZwJcEGX5BfVXF1idJwOH8v4mYA1LgEHc,1049
@@ -6379,7 +6372,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/80a0e522b645d231af0d11ca3ea8a
6379
6372
  xinference/web/ui/node_modules/.cache/babel-loader/80a164dea81673c1a7481851cb5cf1317d82aee96ad9a351700eb448c5b1ec1d.json,sha256=Adz-TOR0s-FBEg6BFKTe0Tux1-pQj0HjPig29mtCZhk,2501
6380
6373
  xinference/web/ui/node_modules/.cache/babel-loader/80a2de69e999367305e93de862c4df63af4bc7ed9564635e0f42cde44fe1c00b.json,sha256=GXMgK2b9GqGunOQzFOTyFocQgO2cDl8QWmgAzJbu8bg,1751
6381
6374
  xinference/web/ui/node_modules/.cache/babel-loader/80aa6280acff2efb17c25ce92324e334ba7d24c447548ea9ad0adf079733971d.json,sha256=m6HnewnMc8GXu9Mr0LpJRjBE-7o3GnyVKnd2Cg5m6vA,1028
6382
- xinference/web/ui/node_modules/.cache/babel-loader/80acd1edf31542ab1dcccfad02cb4b38f3325cff847a781fcce97500cfd6f878.json,sha256=iswjzDddD3MYW_1rfbuT6UtCQC55peXTl4BrCqXUAEE,65043
6383
6375
  xinference/web/ui/node_modules/.cache/babel-loader/80b2fc55a572b9ef6d00f3c4b01bf944927233d48f0919f4388faa2d224ae755.json,sha256=viwFkx_jtppQYlYwNz4sLDbCWY7Oz7V-Z-P2rcbGELQ,1205
6384
6376
  xinference/web/ui/node_modules/.cache/babel-loader/80b701a572f6810eb303bdc0f9d75049a579555857e034c039b07a9389994303.json,sha256=K30BEWu9tZ7fWi6tsxKcF34ZyXiumJORlC_KngFHq8E,778
6385
6377
  xinference/web/ui/node_modules/.cache/babel-loader/80bcd27700af94e18bc2e38634baf2b8afe3a05a5377a9a3fbd0efba6042ab55.json,sha256=r7seQUEfIU9i2mesDIin9nt6ejhtwAqTBqwpS6_M9Xw,1229
@@ -6446,6 +6438,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/820d6af6f69c6351bf1be6003ebb5
6446
6438
  xinference/web/ui/node_modules/.cache/babel-loader/820f32b49da07859de991876c45f0f56386b1e70a068622633855807f46e287c.json,sha256=naWOwmxHXPsN7yzWxQH0G85A75K-m8DqHCGZ1X60D6w,1807
6447
6439
  xinference/web/ui/node_modules/.cache/babel-loader/8210c89820991a05d4a94b2a56924dd0e0f635d70e7a07ca52899b538caf906d.json,sha256=83r0W3JmeLXRtgeP4qNaNlnt3FL5uIvodp-CHJTibrc,1609
6448
6440
  xinference/web/ui/node_modules/.cache/babel-loader/8215785db426e6c57e23940c8e1589ce48932a87c87b69d87cf3f6c31532a5b1.json,sha256=wnRlQ_ZeCgA5rWhH3OBGVTu6s1By2Fzzy8_VkrlFg9w,1603
6441
+ xinference/web/ui/node_modules/.cache/babel-loader/822586ed1077201b64b954f12f25e3f9b45678c1acbabe53d8af3ca82ca71f33.json,sha256=YknLwWtFDFLOCZdNx5PAdqvUyHZw3XVoQEdkc6Kam1k,13870
6449
6442
  xinference/web/ui/node_modules/.cache/babel-loader/822ad2ca7e442f2400b5e339681baa8effff51f88d8dcb23043f809b3386e2d4.json,sha256=_x3THcfp0D6zxTVsGEFqvuhdNqGnzMmRaopw4Wi2csg,1377
6450
6443
  xinference/web/ui/node_modules/.cache/babel-loader/82309763dcac6139d41ea38166b7d50c0e5671ec2ed9613a7d5f8b80b2b04c94.json,sha256=K-Lx8lZytbXcw7-WpyoIJLRInG7NLn4N85r6lvZjinw,1891
6451
6444
  xinference/web/ui/node_modules/.cache/babel-loader/823a141cb5bb91c87bec34e72078584fa58aa4de408ff3498eb1e51c767e3d96.json,sha256=-t8ddqRWVk1Kq8zLInkYRbxOxUWCcIFLUUKXhxO44to,2287
@@ -6860,7 +6853,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/8a8fb38a2de5aae6e68c1043cd5ce
6860
6853
  xinference/web/ui/node_modules/.cache/babel-loader/8a915d479a6de7faebd93bda1e3649f579cbc93d776c95777a8ecb034950bbb4.json,sha256=k6CbqxY4GEKJ1tz-dHghiz2xWMJhH4LhGL1ZD6lGeDA,1166
6861
6854
  xinference/web/ui/node_modules/.cache/babel-loader/8a936589024eb48a9c54d8bf46bb2abe5031242f4470438cade314fa8ae9eb65.json,sha256=bdeEfoBZgTbQCS01EgaI43wN3EpCzzdpzpxd4p-FTSM,1280
6862
6855
  xinference/web/ui/node_modules/.cache/babel-loader/8a93b88a4659699f74d90553cd71a794117011d0298d0b1b07e009b449f2b78d.json,sha256=PsQmxxwOSJm4rRUMwhbPotM7ioit-WE7yB-AGdoOgu4,2439
6863
- xinference/web/ui/node_modules/.cache/babel-loader/8a9742ddd8ba8546ef42dc14caca443f2b4524fabed7bf269e0eff3b7b64ee7d.json,sha256=m697RVfOD_nAjQnl29ihPDsGSBgCE8jyB442IPbsV1Y,15665
6864
6856
  xinference/web/ui/node_modules/.cache/babel-loader/8a9be74dbdcf97226654ac86a82b4e542c8c393f4d85cddb12345208135f8a6b.json,sha256=7Sg_53Dff4Aip5imP6zk_v8svqPHGi_4Vig5VMtXuYs,1069
6865
6857
  xinference/web/ui/node_modules/.cache/babel-loader/8aa0182ad38a398995ec5c192f88d8526fe165673e488ca7d1a516141048345c.json,sha256=-O30bFkn7rpdsTjAHLjMPG1qxwfG_VJqoynYhZM39Wk,1075
6866
6858
  xinference/web/ui/node_modules/.cache/babel-loader/8aae7e6d6ea86b48cea33ff88ffb5f539f0823b8f6f962ff7c2fe7b5e0ded5bb.json,sha256=tQ0LZ33vr2l5d3_m8k3ZpCmhNTJ_A_d7MZYrYvdQW8I,1811
@@ -7512,6 +7504,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/976a5b4143ec55a62511b11c67e73
7512
7504
  xinference/web/ui/node_modules/.cache/babel-loader/9778428b3001a4f5b3e1b879d5e7ad9da03f934aaa2e0514f8a7e2f289bb6233.json,sha256=hZBcAN8cI-Glida1s4vz3-OT4ZfpvXp2bGkSJExkIYo,1703
7513
7505
  xinference/web/ui/node_modules/.cache/babel-loader/977c629e83c6cc2b921e834e3123c489c55587a146d5e024994cf73acb04d166.json,sha256=HiqCyAQxad3-yBoYsjWyspmP0Sbhoz8bNgQ_XasAV_k,1295
7514
7506
  xinference/web/ui/node_modules/.cache/babel-loader/9787c77f71841a2b5dfcd43487a24584616e7dc6ac75eded5a2809abead1f347.json,sha256=kCTaPNyJ1Tr7b7aV2HLxXNcUnLhS9W72YA0aKCztvjY,1212
7507
+ xinference/web/ui/node_modules/.cache/babel-loader/978b57d1a04a701bc3fcfebc511f5f274eed6ed7eade67f6fb76c27d5fd9ecc8.json,sha256=XYQi3I5erkTr3p8K0djX77kUEo5gOcgcyXi5XG77aFw,14704
7515
7508
  xinference/web/ui/node_modules/.cache/babel-loader/979af993386f6e8af8ea16be73ab8d4083aef8eda684e21ee1df263ad024981b.json,sha256=1VD8AalJEA7k_keCuqkCV4Z6shpxbCB2Cn5cUga-oqY,1126
7516
7509
  xinference/web/ui/node_modules/.cache/babel-loader/979e397d9fba3a2136493926f6058e95f2b965fb9f5a3b415124b61019262187.json,sha256=6R9IcVK4xB-_MJmEXQ-64fiTrsn936A2Zl5Xe_GU3oI,3889
7517
7510
  xinference/web/ui/node_modules/.cache/babel-loader/979f5e9c38ecbe03ca306b99f8f2cae2df7e72520e7dad85241e08c69acc16c4.json,sha256=d_BJxnDkIMo-wfM8v7FlIK87463OKiEVSHzwcC1iySg,1452
@@ -8291,6 +8284,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/a77c2da712ee7e321694da004fd3f
8291
8284
  xinference/web/ui/node_modules/.cache/babel-loader/a789c832bd3ec4ed6da41c2d0dc981bfa47a34e49f627a923ce222a62ddd0f35.json,sha256=cGeIbg36tYAAdyFOMUw98--YxwkuO2ZTIafIDXOps28,2477
8292
8285
  xinference/web/ui/node_modules/.cache/babel-loader/a78e5207f262db865c7d3b3744e6ec412876ecfeef8a4df4cefdbe667111750e.json,sha256=JNIPNIIMo5tMRR_BFubgYDOilgGRelEibQO3KLvVdgg,1971
8293
8286
  xinference/web/ui/node_modules/.cache/babel-loader/a796de0e7c83ec10c75a090aef56ae80a29c901086d7048fe79188fa2d829794.json,sha256=jzCcpXwzAPCrwqCem3pfi4S-EwfiM3WB2JDrWo97AFQ,1483
8287
+ xinference/web/ui/node_modules/.cache/babel-loader/a797831de0dc74897f4b50b3426555d748f328b4c2cc391de709eadaf6a5f3e3.json,sha256=RBsLuE0TBV5iH5A2adxES6Gl6nXIZcMbBJV7rr4YGqY,7085
8294
8288
  xinference/web/ui/node_modules/.cache/babel-loader/a79dbd17ed829c97f592a8444824b3efc70d4c7e55fe1f3d8b7400c3b4473c42.json,sha256=dx_PqhYNBeErVlNXh_7oWGoTidodi7ZRmlv2jHqu2Ks,1632
8295
8289
  xinference/web/ui/node_modules/.cache/babel-loader/a79eb3832a06b7d155602a828e98cc44d6400f69119aa9616a528a97a460b8c0.json,sha256=5Ur2Y8y8yILVkdIjmAeZAv_O7c8oGPJy_mb1q86zH0U,18748
8296
8290
  xinference/web/ui/node_modules/.cache/babel-loader/a7a245ac2e4ba05903ae13c1290104a664f3c795ededb7921cbf5e41833cc69e.json,sha256=sSlag15eHMIpoVLihTlyMMgKUdUW86JUam_j_xJq7e8,1446
@@ -9308,6 +9302,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/bd5faddae8fd655cc1db76fb5119e
9308
9302
  xinference/web/ui/node_modules/.cache/babel-loader/bd6254d64cd97a3fa5456e01e896e803275ea461980e7c2b6f22e7875a605e2f.json,sha256=4Imjadq6nfq1gn0M0UrR2iwr15WmFQ8YPpkL9U73uHM,807
9309
9303
  xinference/web/ui/node_modules/.cache/babel-loader/bd64f9b6c6cde108f5f50d9706a3f0f8d17171fcb60d2f82f24cc8769e158a9c.json,sha256=WrD9M7UM7AvB0_vELS3fUk9e2OuQytu6_eAA-3gaoA0,35526
9310
9304
  xinference/web/ui/node_modules/.cache/babel-loader/bd69f67515abb09f7746f74513f1094198c604ffc9a0bab4b4d328e9a6d44a1b.json,sha256=cP0-aLAH3o6k_Y_BNywyr-LGQTsGcKbMfYm9ciiYE9g,1263
9305
+ xinference/web/ui/node_modules/.cache/babel-loader/bd6ad8159341315a1764c397621a560809f7eb7219ab5174c801fca7e969d943.json,sha256=vK_50akBXt_n6RuP1yHaz71-pwUzDKkk6EsHNGLqPIM,65089
9311
9306
  xinference/web/ui/node_modules/.cache/babel-loader/bd6e3b3cbee9f2d64bbc8c62da1a628a8a8ec2f5037697a950f5c363a619e7aa.json,sha256=7iquDU6fzG8wmI1-_ZuH9tphn_EgdNLqWkZszgqTa8w,1113
9312
9307
  xinference/web/ui/node_modules/.cache/babel-loader/bd8d3849dddafa9e0c2d0a9b8cb6abb9aa2214a1f9cab47b2e35f655b6b05c56.json,sha256=kOsm2vF_N-b-58TsLyPSLSO9KT65YU4R65PLFxQ4XyY,2283
9313
9308
  xinference/web/ui/node_modules/.cache/babel-loader/bd918644e0ecb7d99e41af695ac8a8d371eb497b9062c83fac3fceb8f903dff0.json,sha256=Akmf_Wc8uIU0Ba14mCw4ZYwMAoC_8Luxsi2eH4RbE_Y,1897
@@ -10233,7 +10228,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/d050f2d2a87b7407dbbed27a0291d
10233
10228
  xinference/web/ui/node_modules/.cache/babel-loader/d05a6798190a109be5ee833aa994ca70ff4389c8402a232d10d0fd054f8c09e6.json,sha256=TNzeDqXJ-VXb5xp9rCEGrn2w8JDJLLa8Sivi7OTLGqw,1217
10234
10229
  xinference/web/ui/node_modules/.cache/babel-loader/d062fa7496d592f2730ed595bf4daeb04fae36d451ef5ebe81e9bdca3eae9b2e.json,sha256=Qgobo_8gQz3NBv2Iy-YPSp_ydeCUiZATjUxJJkg3fzo,5482
10235
10230
  xinference/web/ui/node_modules/.cache/babel-loader/d06a586d85b6a1c99e6f5fcaec5b2b19533e412d31c407b006577ea6659a00b0.json,sha256=eINezSpbjsfRSOIKlkAprm7kbX-aPjOcwXh96pvCZcc,735
10236
- xinference/web/ui/node_modules/.cache/babel-loader/d06a96a3c9c32e42689094aa3aaad41c8125894e956b8f84a70fadce6e3f65b3.json,sha256=1sNvNW1CXG7-FdoSCpztNM2UVdJrEhK2EJJ9i8sODhE,8416
10237
10231
  xinference/web/ui/node_modules/.cache/babel-loader/d06af85a84e5c5a29d3acf2dbb5b30c0cf75c8aec4ab5f975e6096f944ee4324.json,sha256=JeCuyngunHiV5IZ7q47QW-BMORb2UFsNpy26JbKkPXY,306
10238
10232
  xinference/web/ui/node_modules/.cache/babel-loader/d06f05f05acbf0a5c2e486ef0ec386b35a76ae8c8aa3717a82a44d88b604caaf.json,sha256=0riCbLEaud-LvWtH93f4xvOC62EUJ3s5OKAi9wTPqZM,25077
10239
10233
  xinference/web/ui/node_modules/.cache/babel-loader/d074bfe592a195f339acbcd8743f8b64cfd09b45ca1013598269227fc092f2db.json,sha256=heaTxZ8I6g7bvLMIC5ZIV6Kb3q4VDuFb1joHBP_pPMY,393
@@ -10681,7 +10675,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/d919cc09187461766a55f1c2b05ba
10681
10675
  xinference/web/ui/node_modules/.cache/babel-loader/d91d6cae10e6b270c12b8fec5a28b9af7c4679bb1f16ee17c8cd99f1c7506a3c.json,sha256=H85rZkmLJLUDxswZS_CIcn7lPwO7goBuIgkCSYmK2vc,1443
10682
10676
  xinference/web/ui/node_modules/.cache/babel-loader/d9208cf093b55e58d96b56aa6cefddbd935cab74783fc3daacd1e9fe877a2cfe.json,sha256=2vmbpe0zi_pPKjQ1q1GveJ0NLkugq-Wjr2Vn5vnqBSY,970
10683
10677
  xinference/web/ui/node_modules/.cache/babel-loader/d92d8c77cb010b5ccb2ccc7ccb4307af146cd7861757b33ef245cb62fcf8a949.json,sha256=m7CT3Hsq6g6DZ5cy13k2qeGdoR6UpBz5Aixl83iRQxc,1660
10684
- xinference/web/ui/node_modules/.cache/babel-loader/d93730e2b5d7e8c957b4d0965d2ed1dac9045a649adbd47c220d11f255d4b1e0.json,sha256=-Kac8Xz_JpdWtfO-Vwo5FkGz7f80CPv_ilXRxm3hnA4,8509
10685
10678
  xinference/web/ui/node_modules/.cache/babel-loader/d9379a52e4a758506fa012ba58b633907820c6bd1899aa4d795e472c8773a41a.json,sha256=8R9mKiGj1IdJhWNpHUNeVrqfCvDfBeRo2i5200pFhXI,1527
10686
10679
  xinference/web/ui/node_modules/.cache/babel-loader/d93d2a4ded520be8493a02570527874f8a4862c50d08df514fb9719b1c2cd708.json,sha256=-pqST_LCO1XSjlRDBEG_GQDO1VWNbo2tyT3FoxEkiFA,1404
10687
10680
  xinference/web/ui/node_modules/.cache/babel-loader/d93de9fa0eef845d7b208e03d06566c28df09835d001a658017ff96983835fc2.json,sha256=bA_tzWHoxr8S2Eu9RGPSFm0Sw23vyKMPsT9yRQvuIOg,1046
@@ -11341,9 +11334,9 @@ xinference/web/ui/node_modules/.cache/babel-loader/e63bbf4e2be4e290d0ab27ab726c5
11341
11334
  xinference/web/ui/node_modules/.cache/babel-loader/e63bed6e2431a76d99ce23c459ac072cf2a600ad83a0cbc2ab70ccdb0b53ab19.json,sha256=CuCvhCZyvxvcaXU1_e886W9TYVxxw1HAZrij9dUEz-c,1548
11342
11335
  xinference/web/ui/node_modules/.cache/babel-loader/e6414327e9907ff2a0d0220af37e43f5538c3fc667a8d4b889fc60801db6a138.json,sha256=SyvJeiYIkAH8-Kv6FVLcoBQq4hOKr4KgSN7K85fdKWY,1865
11343
11336
  xinference/web/ui/node_modules/.cache/babel-loader/e6448192c1587bcf98d82d4982712b0bde2c260e77086708a662940dfddf702c.json,sha256=ExN7p6fiFkBRoVAwyCcVFWqkzx-uXet6IpTKKJbkKgg,309
11337
+ xinference/web/ui/node_modules/.cache/babel-loader/e64b7e8cedcf43d4c95deba60ec1341855c887705805bb62431693118b870c69.json,sha256=VEQxXkIGOkcu3d5MIWHheeBa7WtuCeLlCYYPG9YHnU0,5440
11344
11338
  xinference/web/ui/node_modules/.cache/babel-loader/e64cac4631ac00f380657f80a294ec1747c2f7d6aef52c8578d728d15adf5b11.json,sha256=H7hKoTpT9ZxbPJAph0fLfVN1tR1PKnz3eg4oiV8Dsg0,1300
11345
11339
  xinference/web/ui/node_modules/.cache/babel-loader/e656be73510c6cf2b89f06187a87c614e28a596f6ac4e52ab3ccba8569cf1082.json,sha256=b6L1XRGH7H2g3HvJSFJjX-WcA6o93NEez37y32LRMjg,1990
11346
- xinference/web/ui/node_modules/.cache/babel-loader/e656dc00b4d8b387f0a81ba8fc558767df1601c66369e2eb86a5ef27cf080572.json,sha256=e_hKd_wgO6rC0Hmzf8OB-QPpF6Jvwv-tODaZ7I0CxeQ,9573
11347
11340
  xinference/web/ui/node_modules/.cache/babel-loader/e656fbc6dfee9104f9e23270405e1339fb4c4ba07dee613b82f27c1c08ba113f.json,sha256=aeSsyQh0wmHeZ5qS_tFwSsJvvBtUPvJkKniE4TWOV-8,1621
11348
11341
  xinference/web/ui/node_modules/.cache/babel-loader/e6580b3ea561e0d37c74c3fd18a8642c9428cc9ed823ff7db6924ba70b9491d1.json,sha256=1DGGqf-TGVb692Who_uqJgtGxupQSyBBuwq4DkFNIKY,1076
11349
11342
  xinference/web/ui/node_modules/.cache/babel-loader/e66d601288d3802bdc95267b16a19bb1cc8f7c8d338c5576fd0614b646dc6f15.json,sha256=94eY34Or467v39aUy-GrdzDzUKFLPipcCkhhBzCIeqo,2203
@@ -11483,6 +11476,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/e90b0b00baf95989020090b49380b
11483
11476
  xinference/web/ui/node_modules/.cache/babel-loader/e91133bfaecacefa133d262a8cb7da39bff16c054b03d8b1be300bad2ceeb40d.json,sha256=6T1LxF3lQoFeKJ5np8OhMcMIz-uSZWLNdjPhgzMNOEU,1329
11484
11477
  xinference/web/ui/node_modules/.cache/babel-loader/e917bfd02b03f8adb410784c77beff9ecedb5e38c4b29e1f3dc33820a9c412f9.json,sha256=VDk6u4q_gEHL0F5jSt-oaI8dY1tBp3tk7nymDcoA-78,2342
11485
11478
  xinference/web/ui/node_modules/.cache/babel-loader/e917e04f6cc2017fef03fadb5f5895c89a4d7ac4972d99be2094e9e926866393.json,sha256=voNHdQlXr2GGBRy1GYnL5KIzVHPHFbi_IB-3mqdzJuY,1115
11479
+ xinference/web/ui/node_modules/.cache/babel-loader/e91938976f229ce986b2907e51e1f00540b584ced0a315d498c172d13220739d.json,sha256=ts6rKOm55lnIbGkmnfCOkJsxfoWLvORonoEMbOOfnRg,3806
11486
11480
  xinference/web/ui/node_modules/.cache/babel-loader/e91e7aee2d411c0b7045389bd7311c5e0241cdbd9b6afb7eb72d19bcef41b1b6.json,sha256=6jVjrAD5sAdaTn2dLat9a28dppUA3fWbC_lkIFux6ZE,1240
11487
11481
  xinference/web/ui/node_modules/.cache/babel-loader/e92330cf0206402e3bd7ecc8280b15fe8fe0c2eadc042a55d9d1289f2ec3f307.json,sha256=fro4w_SithubbjhcpUao5fxEtiDbPx6uON_forKkpt0,1810
11488
11482
  xinference/web/ui/node_modules/.cache/babel-loader/e924d5665303ffa364a20e08cf6ebef1f5ee4197c76a46659af361f85e527709.json,sha256=sgPdINBTCS03rhQHn4hl1eyAL0bc2iSf_AT2k6aUtM4,1628
@@ -11912,7 +11906,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/f2755d4f1a0bea64ae01dd8cb86f9
11912
11906
  xinference/web/ui/node_modules/.cache/babel-loader/f27a505514ff84a858a8006de4a63dd8d107a8d13182df51f6e0c252cca0d748.json,sha256=3c68-VkVa3gYcC-sbY5Mcx92f08W5Zybix30vIhdwTg,1467
11913
11907
  xinference/web/ui/node_modules/.cache/babel-loader/f27c47684d6c24dd3b21cbe76aa4ce3d2f604ef0353f1f093be20236b7ecd4f5.json,sha256=yj2GCg8h1xWkkwEpj8Ia9_Biy6K2LiQ63IHVn26zV-k,1748
11914
11908
  xinference/web/ui/node_modules/.cache/babel-loader/f27d1dae335d7c93dda494b01ab16fa529894b1fc4fd190aaf038835bb13fb07.json,sha256=78joKn74AIRxm7RmHQlH0MrkN7SUWiqSNfPTtcklMDc,1643
11915
- xinference/web/ui/node_modules/.cache/babel-loader/f28b83886159d83b84f099b05d607a822dca4dd7f2d8aa6d56fe08bab0b5b086.json,sha256=NtUi5sOqHauhJ42UARdVHPZoAPNcD8mUBVpQBK1eloY,38415
11916
11909
  xinference/web/ui/node_modules/.cache/babel-loader/f28dffbccd52089331082295c9c370c6bd86ca33adc2d9e738017c55b087b249.json,sha256=R2pL74fgY_ib1KgfMOedJ3wnbxeM2GPCI0cYdiIbt5k,1180
11917
11910
  xinference/web/ui/node_modules/.cache/babel-loader/f28e976a8f672a89aa93fb79a73747b028d0cddb9c0a7827a4979bbe20b172f8.json,sha256=gtNi00xRR8NBYx9c5enpFhIshG6JUt3zv35OHQuwsHc,1816
11918
11911
  xinference/web/ui/node_modules/.cache/babel-loader/f293c3308343f4ea675098255bac316e9aa7e8f8456752b54152726834b5be84.json,sha256=HXzroYLFTdjtEEGhMMezOQBuGKNno_HVm1SooU9vk3s,1182
@@ -11985,7 +11978,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/f3d82de80e6654040319d65a5b804
11985
11978
  xinference/web/ui/node_modules/.cache/babel-loader/f3d8a21f34b7b99b62ccc3b59881419a8fcc8f903866e4e4ccf6f9696d84b082.json,sha256=P4TkaRfMeSwfUn-_GBejwWkIIjZ1oBoEndYjl5Yb8e0,1349
11986
11979
  xinference/web/ui/node_modules/.cache/babel-loader/f3da6f41ad10652f31cd2ca1d53c0739a0c60934f2ff1d160a90f986c790985a.json,sha256=IYXopTLWLwyfriLeYMzESg_YZf3H28M_QEoyXsNGW_I,627
11987
11980
  xinference/web/ui/node_modules/.cache/babel-loader/f3ddc5202f93d45f07ae2d1b175bd7c01a77e733345dcf68f87108963ffb253f.json,sha256=dLZHi6YKHje4P90_Kgug4lq25ouh4WM-24A2pXa98N0,2447
11988
- xinference/web/ui/node_modules/.cache/babel-loader/f3e02274cb1964e99b1fe69cbb6db233d3d8d7dd05d50ebcdb8e66d50b224b7b.json,sha256=4iXuSLKuTQFtFgJcaCZqNDWWDJBqhUkc8u0ObHKJlxw,14676
11989
11981
  xinference/web/ui/node_modules/.cache/babel-loader/f3eadf0b3bd2a99dfbc4f599112fc9a273e97b8b72d69098bbac5e475eaaa5fd.json,sha256=ihZqmcg88ttMHEciqrjxNs8rQi1GcvuKU1wmAFmZPu4,1701
11990
11982
  xinference/web/ui/node_modules/.cache/babel-loader/f3eb19dd9376ba5733b8556f52c9d1730260ebe5269b9b4736245646d2c36520.json,sha256=nwrdddQVwT4myCUGQyk2XwLYZM-KGGlJre8MAB6gYc0,3484
11991
11983
  xinference/web/ui/node_modules/.cache/babel-loader/f3ebe787cdb6bdfaa234056d24f6f406d1e0928e7235967ddffc2af4fdb316d5.json,sha256=ZJaoMuK5FYDMWKkYfCl4_AZBFVg0xEBYlsGh01vMoBI,1391
@@ -12148,6 +12140,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/f70f1d8ec5d018de3ce7b363d1ea0
12148
12140
  xinference/web/ui/node_modules/.cache/babel-loader/f71419551f1c94ba50aa5d0a076697d8a282776fc982ee7954bb3a97ce82b066.json,sha256=7c1B0jy7uctlOtfmRYhn7MdvTyEMMHJqmLTFl4Uw8Hk,1265
12149
12141
  xinference/web/ui/node_modules/.cache/babel-loader/f71c37113c7ff54dacd86a97719e795aec998fbac52e30864901b2a92222aa16.json,sha256=ascnsrlL2_Np-7bcJqGQny_UiXq1AJKQr7pbloXK6BY,1256
12150
12142
  xinference/web/ui/node_modules/.cache/babel-loader/f721efe48ae867d730170b98c5d9329da7f6f5169a562ee2e2a6fe6995e52dc1.json,sha256=n7Y6FZL6OPXqliA__lR9gD1BZiYGZUzbMoKF18iv2Qg,1369
12143
+ xinference/web/ui/node_modules/.cache/babel-loader/f72f011744c4649fabddca6f7a9327861ac0a315a89b1a2e62a39774e7863845.json,sha256=NMgZ0Lk6tKkuJC5EOv7XwcF7HYDGrSYIZop8qxR2IDg,9786
12151
12144
  xinference/web/ui/node_modules/.cache/babel-loader/f72f55720771ce53110ca40b8de2b354a2a277e2339d9b6093a0bdc8f4013a97.json,sha256=YWIeUTTNRB3U1aagaQ2G0--agug1D06FDrBQaYblQe4,1045
12152
12145
  xinference/web/ui/node_modules/.cache/babel-loader/f72f67c0ba1025e917ab6ec6aff36250aede4418ad1fa8e3c4059bad7e1eb305.json,sha256=IeAIeGn-E8kE5LHDLJYTBGLK6ODhk-FU-fxWC3tHuug,2318
12153
12146
  xinference/web/ui/node_modules/.cache/babel-loader/f7332c70db6530bb694071f0461bdcdb95812cc2455f9455d2a9deab06c2c5d5.json,sha256=qE2HWSobExOV_PdjHMK4UPfi74CoomEuI7NMAnAY0mE,1559
@@ -15479,9 +15472,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
15479
15472
  xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
15480
15473
  xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
15481
15474
  xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
15482
- xinference-0.14.1.post1.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15483
- xinference-0.14.1.post1.dist-info/METADATA,sha256=Jm22cxtYvh6QfU_6cJNGGxBlpkQC9zbhFN-OfnPKfEE,17958
15484
- xinference-0.14.1.post1.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
15485
- xinference-0.14.1.post1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15486
- xinference-0.14.1.post1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15487
- xinference-0.14.1.post1.dist-info/RECORD,,
15475
+ xinference-0.14.2.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15476
+ xinference-0.14.2.dist-info/METADATA,sha256=cOPMl-o5UFwpX5Zp9UVWn02Bvcu1lN8WDGD77adSqE0,17848
15477
+ xinference-0.14.2.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
15478
+ xinference-0.14.2.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15479
+ xinference-0.14.2.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15480
+ xinference-0.14.2.dist-info/RECORD,,
@@ -1,39 +0,0 @@
1
- # Copyright 2022-2023 XProbe Inc.
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # http://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
-
15
- import codecs
16
- import json
17
- import locale
18
- import os
19
- from typing import Optional
20
-
21
-
22
- class Locale:
23
- def __init__(self, language: Optional[str] = None):
24
- self._language = (
25
- language if language is not None else locale.getdefaultlocale()[0]
26
- )
27
- json_path = os.path.join(
28
- os.path.dirname(os.path.abspath(__file__)), f"{self._language}.json"
29
- )
30
- if os.path.exists(json_path):
31
- self._mapping = json.load(codecs.open(json_path, "r", encoding="utf-8"))
32
- else:
33
- self._mapping = None
34
-
35
- def __call__(self, content: str):
36
- if self._mapping is None:
37
- return content
38
- else:
39
- return self._mapping.get(content, content)
@@ -1,26 +0,0 @@
1
- {
2
- "Please create model first": "请先创建模型",
3
- "stop reason": "停止原因",
4
- "Show stop reason": "展示停止原因",
5
- "Max tokens": "最大 token 数量",
6
- "The maximum number of tokens to generate.": "生成 token 数量最大值",
7
- "Temperature": "温度参数",
8
- "The temperature to use for sampling.": "温度参数用于调整输出的多样性,数值越高多样性越高",
9
- "Top P": "Top P",
10
- "The top-p value to use for sampling.": "用于控制生成文本的确定性,数值越低确定性越高",
11
- "Window size": "窗口大小",
12
- "Window size of chat history.": "用于生成回复的聊天历史窗口大小",
13
- "show stop reason": "展示停止原因",
14
- "Downloading": "下载中",
15
- "Download failed, please retry.": "下载失败,请重新下载",
16
- "model name": "模型名",
17
- "model format": "模型格式",
18
- "model size in billions": "模型大小(B)",
19
- "quantization": "模型量化方式",
20
- "Parameters": "参数调整",
21
- "create": "创建",
22
- "select model": "选择模型",
23
- "Arena": "角斗场",
24
- "Chat": "聊天",
25
- "Input": "输入"
26
- }
@@ -1,15 +0,0 @@
1
- # Copyright 2022-2023 XProbe Inc.
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # http://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
-
15
- from .convert_ggml_to_gguf import convert