xinference 0.14.1.post1__py3-none-any.whl → 0.14.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of xinference might be problematic. Click here for more details.
- xinference/_version.py +3 -3
- xinference/api/restful_api.py +15 -34
- xinference/client/restful/restful_client.py +2 -2
- xinference/core/chat_interface.py +45 -10
- xinference/core/image_interface.py +9 -0
- xinference/core/model.py +8 -5
- xinference/core/scheduler.py +1 -2
- xinference/core/worker.py +49 -42
- xinference/deploy/cmdline.py +2 -2
- xinference/deploy/test/test_cmdline.py +7 -7
- xinference/model/audio/chattts.py +24 -9
- xinference/model/audio/core.py +8 -2
- xinference/model/audio/fish_speech.py +228 -0
- xinference/model/audio/model_spec.json +8 -0
- xinference/model/embedding/core.py +23 -1
- xinference/model/image/model_spec.json +2 -1
- xinference/model/image/model_spec_modelscope.json +2 -1
- xinference/model/image/stable_diffusion/core.py +49 -1
- xinference/model/llm/__init__.py +26 -27
- xinference/model/llm/{ggml/llamacpp.py → llama_cpp/core.py} +2 -35
- xinference/model/llm/llm_family.json +606 -1266
- xinference/model/llm/llm_family.py +16 -139
- xinference/model/llm/llm_family_modelscope.json +276 -313
- xinference/model/llm/lmdeploy/__init__.py +0 -0
- xinference/model/llm/lmdeploy/core.py +557 -0
- xinference/model/llm/memory.py +9 -9
- xinference/model/llm/sglang/core.py +2 -2
- xinference/model/llm/{pytorch → transformers}/chatglm.py +6 -13
- xinference/model/llm/{pytorch → transformers}/cogvlm2.py +4 -45
- xinference/model/llm/transformers/cogvlm2_video.py +524 -0
- xinference/model/llm/{pytorch → transformers}/core.py +3 -10
- xinference/model/llm/{pytorch → transformers}/glm4v.py +2 -23
- xinference/model/llm/transformers/intern_vl.py +540 -0
- xinference/model/llm/{pytorch → transformers}/internlm2.py +4 -8
- xinference/model/llm/{pytorch → transformers}/minicpmv25.py +2 -23
- xinference/model/llm/{pytorch → transformers}/minicpmv26.py +66 -41
- xinference/model/llm/{pytorch → transformers}/utils.py +1 -2
- xinference/model/llm/{pytorch → transformers}/yi_vl.py +2 -24
- xinference/model/llm/utils.py +85 -70
- xinference/model/llm/vllm/core.py +110 -11
- xinference/model/utils.py +1 -95
- xinference/thirdparty/fish_speech/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py +3 -0
- xinference/thirdparty/fish_speech/fish_speech/callbacks/grad_norm.py +113 -0
- xinference/thirdparty/fish_speech/fish_speech/configs/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/configs/lora/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/conversation.py +2 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/concat_repeat.py +53 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/protos/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_pb2.py +33 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_stream.py +36 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/semantic.py +496 -0
- xinference/thirdparty/fish_speech/fish_speech/datasets/vqgan.py +147 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/__init__.py +3 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/core.py +40 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/en_US.json +122 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json +122 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json +123 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json +133 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json +122 -0
- xinference/thirdparty/fish_speech/fish_speech/i18n/scan.py +122 -0
- xinference/thirdparty/fish_speech/fish_speech/models/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lit_module.py +202 -0
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py +779 -0
- xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lora.py +92 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py +3 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/lit_module.py +442 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/discriminator.py +44 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py +625 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py +139 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/reference.py +115 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/wavenet.py +225 -0
- xinference/thirdparty/fish_speech/fish_speech/models/vqgan/utils.py +94 -0
- xinference/thirdparty/fish_speech/fish_speech/scheduler.py +40 -0
- xinference/thirdparty/fish_speech/fish_speech/text/__init__.py +4 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_class.py +172 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_constant.py +30 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_util.py +342 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/cardinal.py +32 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/date.py +75 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/digit.py +32 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/fraction.py +35 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/money.py +43 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/percentage.py +33 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/telephone.py +51 -0
- xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/text.py +177 -0
- xinference/thirdparty/fish_speech/fish_speech/text/clean.py +69 -0
- xinference/thirdparty/fish_speech/fish_speech/text/spliter.py +130 -0
- xinference/thirdparty/fish_speech/fish_speech/train.py +139 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/__init__.py +23 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/braceexpand.py +217 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/context.py +13 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/file.py +16 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/instantiators.py +50 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/logger.py +55 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/logging_utils.py +48 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/rich_utils.py +100 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/spectrogram.py +122 -0
- xinference/thirdparty/fish_speech/fish_speech/utils/utils.py +114 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/__init__.py +0 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py +120 -0
- xinference/thirdparty/fish_speech/fish_speech/webui/manage.py +1237 -0
- xinference/thirdparty/fish_speech/tools/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/api.py +495 -0
- xinference/thirdparty/fish_speech/tools/auto_rerank.py +159 -0
- xinference/thirdparty/fish_speech/tools/download_models.py +55 -0
- xinference/thirdparty/fish_speech/tools/extract_model.py +21 -0
- xinference/thirdparty/fish_speech/tools/file.py +108 -0
- xinference/thirdparty/fish_speech/tools/gen_ref.py +36 -0
- xinference/thirdparty/fish_speech/tools/llama/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/llama/build_dataset.py +169 -0
- xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py +171 -0
- xinference/thirdparty/fish_speech/tools/llama/generate.py +698 -0
- xinference/thirdparty/fish_speech/tools/llama/merge_lora.py +95 -0
- xinference/thirdparty/fish_speech/tools/llama/quantize.py +497 -0
- xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py +57 -0
- xinference/thirdparty/fish_speech/tools/merge_asr_files.py +55 -0
- xinference/thirdparty/fish_speech/tools/post_api.py +164 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py +573 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py +332 -0
- xinference/thirdparty/fish_speech/tools/sensevoice/vad_utils.py +61 -0
- xinference/thirdparty/fish_speech/tools/smart_pad.py +47 -0
- xinference/thirdparty/fish_speech/tools/vqgan/__init__.py +0 -0
- xinference/thirdparty/fish_speech/tools/vqgan/create_train_split.py +83 -0
- xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py +227 -0
- xinference/thirdparty/fish_speech/tools/vqgan/inference.py +120 -0
- xinference/thirdparty/fish_speech/tools/webui.py +619 -0
- xinference/thirdparty/fish_speech/tools/whisper_asr.py +176 -0
- xinference/thirdparty/internvl/__init__.py +0 -0
- xinference/thirdparty/internvl/conversation.py +393 -0
- xinference/thirdparty/omnilmm/model/utils.py +16 -1
- xinference/web/ui/build/asset-manifest.json +3 -3
- xinference/web/ui/build/index.html +1 -1
- xinference/web/ui/build/static/js/main.661c7b0a.js +3 -0
- xinference/web/ui/build/static/js/{main.17ca0398.js.map → main.661c7b0a.js.map} +1 -1
- xinference/web/ui/node_modules/.cache/babel-loader/070d8c6b3b0f3485c6d3885f0b6bbfdf9643e088a468acbd5d596f2396071c16.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/213b5913e164773c2b0567455377765715f5f07225fbac77ad8e1e9dc9648a47.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/4de9a6942c5f1749d6cbfdd54279699975f16016b182848bc253886f52ec2ec3.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/5391543180fead1eeef5364300301498d58a7d91d62de3841a32768b67f4552f.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/5c26a23b5eacf5b752a08531577ae3840bb247745ef9a39583dc2d05ba93a82a.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/714c37ce0ec5b5c591033f02be2f3f491fdd70da3ef568ee4a4f94689a3d5ca2.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/822586ed1077201b64b954f12f25e3f9b45678c1acbabe53d8af3ca82ca71f33.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/978b57d1a04a701bc3fcfebc511f5f274eed6ed7eade67f6fb76c27d5fd9ecc8.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/a797831de0dc74897f4b50b3426555d748f328b4c2cc391de709eadaf6a5f3e3.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/bd6ad8159341315a1764c397621a560809f7eb7219ab5174c801fca7e969d943.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/e64b7e8cedcf43d4c95deba60ec1341855c887705805bb62431693118b870c69.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/e91938976f229ce986b2907e51e1f00540b584ced0a315d498c172d13220739d.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/f72f011744c4649fabddca6f7a9327861ac0a315a89b1a2e62a39774e7863845.json +1 -0
- {xinference-0.14.1.post1.dist-info → xinference-0.14.3.dist-info}/METADATA +22 -13
- {xinference-0.14.1.post1.dist-info → xinference-0.14.3.dist-info}/RECORD +170 -79
- xinference/locale/utils.py +0 -39
- xinference/locale/zh_CN.json +0 -26
- xinference/model/llm/ggml/tools/__init__.py +0 -15
- xinference/model/llm/ggml/tools/convert_ggml_to_gguf.py +0 -498
- xinference/model/llm/ggml/tools/gguf.py +0 -884
- xinference/model/llm/pytorch/__init__.py +0 -13
- xinference/model/llm/pytorch/baichuan.py +0 -81
- xinference/model/llm/pytorch/falcon.py +0 -138
- xinference/model/llm/pytorch/intern_vl.py +0 -352
- xinference/model/llm/pytorch/vicuna.py +0 -69
- xinference/web/ui/build/static/js/main.17ca0398.js +0 -3
- xinference/web/ui/node_modules/.cache/babel-loader/1444c41a4d04494f1cbc2d8c1537df107b451cb569cb2c1fbf5159f3a4841a5f.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/2f40209b32e7e46a2eab6b8c8a355eb42c3caa8bc3228dd929f32fd2b3940294.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/44774c783428f952d8e2e4ad0998a9c5bc16a57cd9c68b7c5ff18aaa5a41d65c.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/5262556baf9207738bf6a8ba141ec6599d0a636345c245d61fdf88d3171998cb.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/6450605fac003812485f6251b9f0caafbf2e5bfc3bbe2f000050d9e2fdb8dcd3.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/71684495d995c7e266eecc6a0ad8ea0284cc785f80abddf863789c57a6134969.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/80acd1edf31542ab1dcccfad02cb4b38f3325cff847a781fcce97500cfd6f878.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/8a9742ddd8ba8546ef42dc14caca443f2b4524fabed7bf269e0eff3b7b64ee7d.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/d06a96a3c9c32e42689094aa3aaad41c8125894e956b8f84a70fadce6e3f65b3.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/d93730e2b5d7e8c957b4d0965d2ed1dac9045a649adbd47c220d11f255d4b1e0.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/e656dc00b4d8b387f0a81ba8fc558767df1601c66369e2eb86a5ef27cf080572.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/f28b83886159d83b84f099b05d607a822dca4dd7f2d8aa6d56fe08bab0b5b086.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/f3e02274cb1964e99b1fe69cbb6db233d3d8d7dd05d50ebcdb8e66d50b224b7b.json +0 -1
- /xinference/{locale → model/llm/llama_cpp}/__init__.py +0 -0
- /xinference/model/llm/{ggml → transformers}/__init__.py +0 -0
- /xinference/model/llm/{pytorch → transformers}/compression.py +0 -0
- /xinference/model/llm/{pytorch → transformers}/deepseek_vl.py +0 -0
- /xinference/model/llm/{pytorch → transformers}/llama_2.py +0 -0
- /xinference/model/llm/{pytorch → transformers}/omnilmm.py +0 -0
- /xinference/model/llm/{pytorch → transformers}/qwen_vl.py +0 -0
- /xinference/model/llm/{pytorch → transformers}/tensorizer_utils.py +0 -0
- /xinference/web/ui/build/static/js/{main.17ca0398.js.LICENSE.txt → main.661c7b0a.js.LICENSE.txt} +0 -0
- {xinference-0.14.1.post1.dist-info → xinference-0.14.3.dist-info}/LICENSE +0 -0
- {xinference-0.14.1.post1.dist-info → xinference-0.14.3.dist-info}/WHEEL +0 -0
- {xinference-0.14.1.post1.dist-info → xinference-0.14.3.dist-info}/entry_points.txt +0 -0
- {xinference-0.14.1.post1.dist-info → xinference-0.14.3.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=
|
|
3
|
+
xinference/_version.py,sha256=JWgEuyb1ChbWkTQh3vVk8IVPl8kYkCFXITCkKLUPfvM,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=
|
|
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,46 +18,44 @@ 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=
|
|
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=
|
|
24
|
+
xinference/core/chat_interface.py,sha256=iOc44reuewD7w2AtQUJWHU0yWdkhleS0KZbqnDW1_TA,20944
|
|
25
25
|
xinference/core/event.py,sha256=Lkx_-Ohwyzyt-MBbkrZy9N-7aeYs-wux0fDtZpa2SJY,1632
|
|
26
|
-
xinference/core/image_interface.py,sha256=
|
|
26
|
+
xinference/core/image_interface.py,sha256=B_unlVzesE-shlsQg6Q2UCD12NnyHWr2OefkYNwsWlA,10539
|
|
27
27
|
xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
|
|
28
|
-
xinference/core/model.py,sha256=
|
|
28
|
+
xinference/core/model.py,sha256=7JB0-sCCkAgGHpwGHUaZNey7yadm_1QlbgBChNM4CCQ,27836
|
|
29
29
|
xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
|
|
30
|
-
xinference/core/scheduler.py,sha256=
|
|
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=
|
|
34
|
+
xinference/core/worker.py,sha256=lL8X9rGadRaOtDZxanXM34Ffnm4FuQ8wvbubX1qtKKI,45866
|
|
35
35
|
xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
36
|
-
xinference/deploy/cmdline.py,sha256=
|
|
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=
|
|
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=
|
|
45
|
+
xinference/model/utils.py,sha256=0aTidQMD-boAsTzEwWTJjzirtcHkG_7vPUv04PuPwBc,11762
|
|
49
46
|
xinference/model/audio/__init__.py,sha256=QyQwELIYk7DuD5Hen2q45pLMJ4K8iAnto8zlOA9QUSY,2839
|
|
50
|
-
xinference/model/audio/chattts.py,sha256=
|
|
51
|
-
xinference/model/audio/core.py,sha256=
|
|
47
|
+
xinference/model/audio/chattts.py,sha256=tMK8EMY3q6VIGvEZEmSrMipDE9HQZdPsc0KTmN5GuWk,4525
|
|
48
|
+
xinference/model/audio/core.py,sha256=All5OqarDEcmWWpGwPKblDOsoVpJx5xDVJCjI_TznWo,6496
|
|
52
49
|
xinference/model/audio/cosyvoice.py,sha256=rX_Msy05ymN-J6fdV7fXia36p5CDG7z0aslJows5MRY,4988
|
|
53
50
|
xinference/model/audio/custom.py,sha256=01NTD927pairIBWOo9At6Bjqpo1kdcIn3AVijbOdp7Y,5056
|
|
51
|
+
xinference/model/audio/fish_speech.py,sha256=UFPn9crljYYOXGHW1z_uEwHvjTClgjJap85u0rbxJ38,7015
|
|
54
52
|
xinference/model/audio/funasr.py,sha256=zAkQPZp9H4zXbCjWJW1qxWK4B88XXrVaewvdoPQylo4,3985
|
|
55
|
-
xinference/model/audio/model_spec.json,sha256
|
|
53
|
+
xinference/model/audio/model_spec.json,sha256=GSbEIX9g-Ec8IvuLEcNxc-e3CQupEZlnC63bI4MTe0s,4758
|
|
56
54
|
xinference/model/audio/model_spec_modelscope.json,sha256=dTINTAHopLQtDVLNJXURUG8u8Iv39-D7Vp_bDr3Lck8,1729
|
|
57
55
|
xinference/model/audio/utils.py,sha256=pwo5cHh8nvhyBa9f-17QaVpXMSjmbpGbPYKwBBtEhGM,717
|
|
58
56
|
xinference/model/audio/whisper.py,sha256=okhJWnWoE-1Jmk-oKxTotCQ56rQIFMhTOZOmJBk5ug0,7764
|
|
59
57
|
xinference/model/embedding/__init__.py,sha256=0FLzOZyOuMctxFvhobkLXRUepwHck6RPbtjCct1eMI8,2854
|
|
60
|
-
xinference/model/embedding/core.py,sha256=
|
|
58
|
+
xinference/model/embedding/core.py,sha256=DrfReLEBXE28wQKRYDaugaLmqooVJ1GUBfkx0VPBdu0,17553
|
|
61
59
|
xinference/model/embedding/custom.py,sha256=iE3-iWVzxarXdeTdw5e6rxv6HQRXVbPHp65wwhT2IL8,3919
|
|
62
60
|
xinference/model/embedding/model_spec.json,sha256=jhM2MVaxhihFvShVs18xx0vuneBfAVDUCFyaJ9IgIh8,6889
|
|
63
61
|
xinference/model/embedding/model_spec_modelscope.json,sha256=FYMBk4zE__lvjU0tiT5aNW1QYd1cr2Gj39BShG2h2PU,6010
|
|
@@ -71,50 +69,47 @@ xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRU
|
|
|
71
69
|
xinference/model/image/__init__.py,sha256=lDtP961bpu6h5TK57kJ531Zoch2xU5DM-Eco_YQne-Y,2780
|
|
72
70
|
xinference/model/image/core.py,sha256=JmzqyvY_DicnAa1TeKUXHTTvDB0gg-bT9ONwh5-3GhM,8871
|
|
73
71
|
xinference/model/image/custom.py,sha256=nn1iZDTYNz68A2gWFXvUuv__Gx8EGdkz_sHvHnPnSoA,3841
|
|
74
|
-
xinference/model/image/model_spec.json,sha256=
|
|
75
|
-
xinference/model/image/model_spec_modelscope.json,sha256=
|
|
72
|
+
xinference/model/image/model_spec.json,sha256=dt0BVh4OGwuwNuh1TLZNoJ5UcQP4UQQMtAAE_-Hqjjo,5086
|
|
73
|
+
xinference/model/image/model_spec_modelscope.json,sha256=Tl44o5EJnxJhSItQIf4iLK73Bs_1heAubW_pX2C4ZGA,3984
|
|
76
74
|
xinference/model/image/utils.py,sha256=gxg8jJ2nYaDknzCcSC53WCy1slbB5aWU14AbJbfm6Z4,906
|
|
77
75
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
78
|
-
xinference/model/image/stable_diffusion/core.py,sha256=
|
|
79
|
-
xinference/model/llm/__init__.py,sha256=
|
|
76
|
+
xinference/model/image/stable_diffusion/core.py,sha256=po7vIKxoDuPiRCnYYphj68_0MsuLR4OqmHvWiJoa0PA,11901
|
|
77
|
+
xinference/model/llm/__init__.py,sha256=Gc1UfXo2PIbZ4oOqK7w0yBxZg7h2-AdaqK-XAQbXduk,11581
|
|
80
78
|
xinference/model/llm/core.py,sha256=f4nKVPTAseivij6mbL2yXEKxrzllKm-_i2ttSqckTCg,8157
|
|
81
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
82
|
-
xinference/model/llm/llm_family.py,sha256=
|
|
79
|
+
xinference/model/llm/llm_family.json,sha256=XnWU4i00VB0nT5hPOHFpBVr_5NcdwozNbN9s_XXeEjY,190276
|
|
80
|
+
xinference/model/llm/llm_family.py,sha256=MiGR4hs1TgZ2si9zXqXOzpqqf1IouXv3lIgXRXEYIaM,38222
|
|
83
81
|
xinference/model/llm/llm_family_csghub.json,sha256=fqIodnCl2_VUpX1NaBdVYApG2LRkXMhUxLNhLt8C7W8,3057
|
|
84
|
-
xinference/model/llm/llm_family_modelscope.json,sha256=
|
|
85
|
-
xinference/model/llm/memory.py,sha256=
|
|
86
|
-
xinference/model/llm/utils.py,sha256=
|
|
87
|
-
xinference/model/llm/
|
|
88
|
-
xinference/model/llm/
|
|
89
|
-
xinference/model/llm/
|
|
90
|
-
xinference/model/llm/
|
|
91
|
-
xinference/model/llm/ggml/tools/gguf.py,sha256=Hv2haR-UN7NdB1N8YId32hFoEPd-JX6_aUNWRJhyJZc,30277
|
|
82
|
+
xinference/model/llm/llm_family_modelscope.json,sha256=1-to5OOgJEsmhwErurfTX0DRNhWP2PnwBA2XonC1H5Y,125262
|
|
83
|
+
xinference/model/llm/memory.py,sha256=NEIMw6wWaF9S_bnBYq-EyuDhVbUEEeceQhwE1iwsrhI,10207
|
|
84
|
+
xinference/model/llm/utils.py,sha256=1sTPxzLCAv3l9cAJjkIvV8arbhP0a_EGuBKAW8tLLgo,35715
|
|
85
|
+
xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
86
|
+
xinference/model/llm/llama_cpp/core.py,sha256=sTwUY6a14bCXgAbFMNmDM2ToQMj-iAk-0KHnFJGz3tU,11755
|
|
87
|
+
xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
|
+
xinference/model/llm/lmdeploy/core.py,sha256=-oG8jYXIkzNLUMl0tR0MxFykQhPFCai002x_KE_ZeVM,20714
|
|
92
89
|
xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
93
90
|
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
91
|
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
115
|
-
xinference/model/llm/sglang/core.py,sha256=
|
|
92
|
+
xinference/model/llm/sglang/core.py,sha256=GMSAR4XHBMAhF-YqK9E9bTC9nMxSnx5hW3y2ZwiMInk,15778
|
|
93
|
+
xinference/model/llm/transformers/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
94
|
+
xinference/model/llm/transformers/chatglm.py,sha256=h0LgHWWoLk96VnW0ZS4o9QGntQWDScGmGmJoIVwKkK4,22118
|
|
95
|
+
xinference/model/llm/transformers/cogvlm2.py,sha256=hPghq5UUgJ80g5JC1FbH_MUmFssmkkchgp7Xife2HFQ,16811
|
|
96
|
+
xinference/model/llm/transformers/cogvlm2_video.py,sha256=1gYBHTz5ZrvcsMroDmIRQ3bc03Qq-JL_rO2VSHlu9Ms,18876
|
|
97
|
+
xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
|
|
98
|
+
xinference/model/llm/transformers/core.py,sha256=m9WaZQvyzvx8PEdll1w6ZBS_vl9U7SObJY8TwJhZRw8,30886
|
|
99
|
+
xinference/model/llm/transformers/deepseek_vl.py,sha256=yiOJd2GHrVTTFvyZ7hLV-O-YsCfqRAEHK46ah-zqq3I,11562
|
|
100
|
+
xinference/model/llm/transformers/glm4v.py,sha256=L9rTyuwd0VriudlqH6FkNAugWNy3eOasFYMy59KuNeo,15706
|
|
101
|
+
xinference/model/llm/transformers/intern_vl.py,sha256=ogWYnNl6FOT4KvY3M3d364twC5ZlQT6_xxlK_UgBKoc,19256
|
|
102
|
+
xinference/model/llm/transformers/internlm2.py,sha256=9x_mPhCQifmBVNoIQ_z3DXtI2qRsA_3wOckRsGmDDog,7831
|
|
103
|
+
xinference/model/llm/transformers/llama_2.py,sha256=Nr2yaNxmoDmPhIw_p0lwN76iB4jxh7NGKDoK-YaIZiY,3836
|
|
104
|
+
xinference/model/llm/transformers/minicpmv25.py,sha256=NLuJpeTmqnc8Cn_13-bSjVmtqSUbtxXd20j-sOOWP84,7879
|
|
105
|
+
xinference/model/llm/transformers/minicpmv26.py,sha256=BlmsIqjrD4oHewaskGTemOAN8Dr2S0V7YmFoZQXffZs,9603
|
|
106
|
+
xinference/model/llm/transformers/omnilmm.py,sha256=3vF8963CbSOrTZhkiNrzAI-p14b57s8QiR_aGBM1oMY,5724
|
|
107
|
+
xinference/model/llm/transformers/qwen_vl.py,sha256=4JukyB0YVH0TcyV8sIErhbRRJgNdrB4jSxx1mFBnIQ8,15592
|
|
108
|
+
xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
|
|
109
|
+
xinference/model/llm/transformers/utils.py,sha256=EMHeihMi6MWL9j1m2CUB1Pcniv-fJjDOcoMs8e5oEbE,27936
|
|
110
|
+
xinference/model/llm/transformers/yi_vl.py,sha256=JeraCcpwzscLrqNq4fIGVohFbgEYHJYR6YAvvTzU7Pc,10116
|
|
116
111
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
117
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
112
|
+
xinference/model/llm/vllm/core.py,sha256=RjSvGQIGqFctNCpTgyIUtn2QUgBTbIDA9s0N1L8cWr4,27783
|
|
118
113
|
xinference/model/rerank/__init__.py,sha256=BXIL1uu3ZpZHX9bODhW9lxKUXudZE7-OkXFmmM5rpMU,2817
|
|
119
114
|
xinference/model/rerank/core.py,sha256=G3SMm7BlMk3r8zyDs5FwwTCemlWHYspuZtTh8pWpdmg,12231
|
|
120
115
|
xinference/model/rerank/custom.py,sha256=NKk7jA7p4xkuwS5WoOs2SY2wdnoAVpyCjBTvv317bBw,3917
|
|
@@ -189,6 +184,102 @@ xinference/thirdparty/deepseek_vl/serve/app_modules/utils.py,sha256=OzrxNSM8oNLK
|
|
|
189
184
|
xinference/thirdparty/deepseek_vl/utils/__init__.py,sha256=u8C--egJMT_DDm0JG3frXGSQNNv6cfIAumPhghzkxhk,1091
|
|
190
185
|
xinference/thirdparty/deepseek_vl/utils/conversation.py,sha256=7oITA8TsIuOfumVZ8hcoDpA6dm1jz7n8-VXPe_7-4YA,11702
|
|
191
186
|
xinference/thirdparty/deepseek_vl/utils/io.py,sha256=HQqLoONZF4nl1E9oMrm7_2LwU8ZSh1C9htm7vLN4YfI,2751
|
|
187
|
+
xinference/thirdparty/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
|
+
xinference/thirdparty/fish_speech/fish_speech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
|
+
xinference/thirdparty/fish_speech/fish_speech/conversation.py,sha256=Qh8G6Y7O1qUa2cjRdDBKDLP3ygyn1cFgdEBilkZsI7U,58
|
|
190
|
+
xinference/thirdparty/fish_speech/fish_speech/scheduler.py,sha256=xpstAfXlsdx-N_hDcJJYFKiLb_cW5mTdXACyuODrcIg,1101
|
|
191
|
+
xinference/thirdparty/fish_speech/fish_speech/train.py,sha256=8Q-M1wBr6z77pQLvZyfHrjTV_zYCrWUrLheA6hQectk,4443
|
|
192
|
+
xinference/thirdparty/fish_speech/fish_speech/callbacks/__init__.py,sha256=LYHvlvb9463UMJ3stVzBilVpLtdiLCteuzMIB5ypHS0,70
|
|
193
|
+
xinference/thirdparty/fish_speech/fish_speech/callbacks/grad_norm.py,sha256=pzuUxUnXWAa9U6XKcvQpnGoUZhMmFQKimSqYH-WajIQ,3436
|
|
194
|
+
xinference/thirdparty/fish_speech/fish_speech/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
195
|
+
xinference/thirdparty/fish_speech/fish_speech/configs/lora/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
196
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/concat_repeat.py,sha256=y9pAty3Sa3gyfAERSaubmMNRdUzyAw4zzoDyXzuGGxQ,1498
|
|
198
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/semantic.py,sha256=FHpdQj3awN-21w3f96xL0Z6DvEnOpW7qES8_ZjdHBt8,16727
|
|
199
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/vqgan.py,sha256=NMOaBOYPvHuMPwyRx5ahJh0pkhPauEFVWMGFi2Vl7L8,4012
|
|
200
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_pb2.py,sha256=GFnBeGCTFtWJTdNXQx0hzPpxagzleSyWxN3pE22-E2g,1758
|
|
202
|
+
xinference/thirdparty/fish_speech/fish_speech/datasets/protos/text_data_stream.py,sha256=v9i3jbIC6KFTSLvSVso8-3mBDufSOwE7IAr4-5RXgQ0,781
|
|
203
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/__init__.py,sha256=u9r_HCtTmYcU64L62Gg9lLANvGybfb0-ETw8Ob-fnxY,43
|
|
204
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/core.py,sha256=8Ks8wGog73U-AZqlzGltfx61KALGTh7uCIXnQHDnDOw,1036
|
|
205
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/scan.py,sha256=1mdXKPeR0d3bTcFZWhX6ODWUJbbiOHO73MBDEJlTmUY,3751
|
|
206
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
207
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/en_US.json,sha256=O7W7R78RoE_vy9S2yuYUBQw91aykw8Mhwgt7WUv3y6g,8123
|
|
208
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/es_ES.json,sha256=Mdp3T59iZh3KvWwndcut5gpeN7lVyLAKliyDLbOmlGs,9026
|
|
209
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/ja_JP.json,sha256=-XEQvWtxYFCu-MHBjQWmlOzpFiznxEhkqGObFjuEiMg,9533
|
|
210
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/pt_BR.json,sha256=pm4GUSUOC0HcpIJagE0Kabfj-ic4qnsh3Fxp1ByPF6M,9672
|
|
211
|
+
xinference/thirdparty/fish_speech/fish_speech/i18n/locale/zh_CN.json,sha256=grThn88-jttZQOzsV4qyydT40u5J5HvrYC66pPXjpaU,7781
|
|
212
|
+
xinference/thirdparty/fish_speech/fish_speech/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
214
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lit_module.py,sha256=Brrgxy6tHNAwclfu04XDNLKzzGU_FamBL5D8XWPj99A,6567
|
|
215
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/llama.py,sha256=CDrQ6sUJ5gwFXjzBb25T-NUeBuzo1rKkxww_Fv4KoM8,25764
|
|
216
|
+
xinference/thirdparty/fish_speech/fish_speech/models/text2semantic/lora.py,sha256=KHbtG1BGrFMtdoMtHXPWb3OTez8HtHEiuAaMEFOrNYI,2923
|
|
217
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/__init__.py,sha256=ZcGYSCAe5uCM9lRLqYQ__YlpKRPIIW8wNKJgqYcPnJc,51
|
|
218
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/lit_module.py,sha256=cxzIZ52_pNZE3Z_VOUiBn1MFuN9tjjl8haAN81oI25c,14238
|
|
219
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/utils.py,sha256=irmTsK36GlLccFI5CjWahKO7NG6LZQrd5FEh_7qy4Xs,2533
|
|
220
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
221
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/discriminator.py,sha256=bdOovuQUg9R5GD3bwpBcH864k5zr_iEX8B2qWnq3zk0,1203
|
|
222
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/firefly.py,sha256=BS8_2ttzcIwlYpOCQe-TJaRz5nEooyyQqnlmKMUMgo0,20469
|
|
223
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/fsq.py,sha256=Lgp0ovnddj9ECcXmvAbXsga1OdxXCkaQFCFrHlC1YWk,4000
|
|
224
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/reference.py,sha256=1qozYaZ9b9LlUntbg2PHCquyyzG54KWKdPdyXVgWoQM,3613
|
|
225
|
+
xinference/thirdparty/fish_speech/fish_speech/models/vqgan/modules/wavenet.py,sha256=UakV7x67j5hZB5kzfxUbvz8dQtKdRgeTNKrR5SWHu_U,6469
|
|
226
|
+
xinference/thirdparty/fish_speech/fish_speech/text/__init__.py,sha256=3lYfSw4Xb3Qh0p8FsjX4ToOJNsm7ZxN3XPh_xFKXoUQ,102
|
|
227
|
+
xinference/thirdparty/fish_speech/fish_speech/text/clean.py,sha256=CTNqZJRf8KSvIcAZbIA0t6BSbDeBlJDnHsOs4JQWKpo,1399
|
|
228
|
+
xinference/thirdparty/fish_speech/fish_speech/text/spliter.py,sha256=GRwZepmtWAfcyOWjCsBfXhC3_l4LP5CIKS5t3m8enuA,3799
|
|
229
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
230
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_class.py,sha256=m4d9b6Mr30ChJ4NzWbWQwAG2PtnTjEAkMB5_wGtINAs,4390
|
|
231
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_constant.py,sha256=EBvR_-At1FbsbSmryn5ch41UND-ob3K-dLunpceM4LU,976
|
|
232
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/basic_util.py,sha256=yh_e9nw9bsDYBo0JNgps96D3IrRmrXxa8aBXPXKLHw0,11342
|
|
233
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/cardinal.py,sha256=QyeejVyIK_zc8g5eIMwPsRHClVJtxETzV9JDK1z_KJw,689
|
|
234
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/date.py,sha256=q-aWfALNzMDV6aFkj-cjwc_CY7DfkDKpm-O8H-RXp84,2161
|
|
235
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/digit.py,sha256=bAc4r56huEhqqGg5hPCPA_icJ3U4mDhG5JtAaU1amlo,665
|
|
236
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/fraction.py,sha256=xHzkGNHLYhYgVlB0WFhuYq67kHRnznCVEbQeoppZSIc,927
|
|
237
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/money.py,sha256=aSN88hdY5IP6lHimj9XXq7ZjYxo6BfoA9Gr7yQNMwjA,1018
|
|
238
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/percentage.py,sha256=3DCSkP7Qg5px99rfgF-Qb1yL9HeMDAV6OxE2VSleeSo,838
|
|
239
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/telephone.py,sha256=cDPtwmnHKD_JP29wIp5p1Og0I132BUg_cmzGdyoJHM8,1557
|
|
240
|
+
xinference/thirdparty/fish_speech/fish_speech/text/chn_text_norm/text.py,sha256=8TdfX5c9t144t1sbhbyTeYncvL_3yjgFAwJfuZqXsIs,6936
|
|
241
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/__init__.py,sha256=mDvZjkfjn7MhYBK3zbS_DJXxlXV3T8JbuPwJbG47uI8,680
|
|
242
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/braceexpand.py,sha256=X_44wW-LJP21kNb19j63DSSzFopkgsSNkqmsElLSS6U,6724
|
|
243
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/context.py,sha256=G5AyI1qavhX-vBesANU0Mb97ojBY80nwiXBrzNFdQ5E,287
|
|
244
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/file.py,sha256=GrVn5R0Mc5Veb3_9kyOaH_yIiN3zoFvV7g1G3SY-Rp4,345
|
|
245
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/instantiators.py,sha256=KkX18XTz13Et3gKzCGELXI1ZsF_Ons8rdQxPm4Rvxh4,1514
|
|
246
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/logger.py,sha256=WVnMyEQqlO2nvt4xySkFogcepeNDNcHWjTYY-m0fo4I,2467
|
|
247
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/logging_utils.py,sha256=BJ3h8hF-62MbqxajhmZgKglkpjPfz_GTFTr682SIeYU,1384
|
|
248
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/rich_utils.py,sha256=RHRUrq2xY1d1Eg24htFnmyj0RRW2NRdww9xz0jWnQt8,3105
|
|
249
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/spectrogram.py,sha256=R9dGOEJnsF03T-9BBFLwMHikgp1VYTe7Cm76doKj76s,3239
|
|
250
|
+
xinference/thirdparty/fish_speech/fish_speech/utils/utils.py,sha256=GaL7k1geF-D5temeOQI2Q8RzfC_Jc1bsQnLNvO-sV1c,3793
|
|
251
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
252
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/launch_utils.py,sha256=uIWcCXHyF7Oqo7uyq8li0fpVL6q-t-ITk2k3ma5WjU0,3972
|
|
253
|
+
xinference/thirdparty/fish_speech/fish_speech/webui/manage.py,sha256=yCmMEMtchR9lCnaBMLyzLInp_9MGQNEPyPp0sxnK_6E,46882
|
|
254
|
+
xinference/thirdparty/fish_speech/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
255
|
+
xinference/thirdparty/fish_speech/tools/api.py,sha256=oh-XIWZxjrjaYgBR3S7Mi6MBHOWijy829lnKexFNlNY,14804
|
|
256
|
+
xinference/thirdparty/fish_speech/tools/auto_rerank.py,sha256=HeVUTG0yh4suJ2Ijnazml0ybIHZIbVhciAc8sul0Nxc,4033
|
|
257
|
+
xinference/thirdparty/fish_speech/tools/download_models.py,sha256=kTFkIZTdYpnJe0vzNA_uVaGbdBAp43mLBrZnSQIoSsY,1373
|
|
258
|
+
xinference/thirdparty/fish_speech/tools/extract_model.py,sha256=42b_U4rmqX3OUOIqWQQczsEktt79aQSOJ4E55B1bHl8,536
|
|
259
|
+
xinference/thirdparty/fish_speech/tools/file.py,sha256=soQoO6epHGv8aEeRrGxYW9kGHwGleYVrc8NxlbOd-2E,2633
|
|
260
|
+
xinference/thirdparty/fish_speech/tools/gen_ref.py,sha256=_frao-RXnsgEKNSQ2NWYDtyJl-3tcw-dDS-MCBC1FNg,1020
|
|
261
|
+
xinference/thirdparty/fish_speech/tools/merge_asr_files.py,sha256=oeW-WFNVnXp0pH7SoLi64GmubNrWDu46XS_5qi2ffYE,2013
|
|
262
|
+
xinference/thirdparty/fish_speech/tools/post_api.py,sha256=QKzUwAZ_bvEC-aTRampep69K9oX5o111-DzVVPdDkvA,5047
|
|
263
|
+
xinference/thirdparty/fish_speech/tools/smart_pad.py,sha256=MWA78einNJI4gRgb5nrs8bXD9GWv9V4V5xcX-C_qc7I,1264
|
|
264
|
+
xinference/thirdparty/fish_speech/tools/webui.py,sha256=h32_3IidZbIFsbRlOIViMghaQ2QGzM5qkp6ugVM5-sM,18917
|
|
265
|
+
xinference/thirdparty/fish_speech/tools/whisper_asr.py,sha256=uG6NsSnH6oLEkCRM-Tb8o6L7OKDZ1eSVd8obEoq7jVc,4893
|
|
266
|
+
xinference/thirdparty/fish_speech/tools/llama/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
267
|
+
xinference/thirdparty/fish_speech/tools/llama/build_dataset.py,sha256=sRWljD4-WIziEG8uDbfuOiZ3OsK1Ug1yRKNu9cCrjHw,4910
|
|
268
|
+
xinference/thirdparty/fish_speech/tools/llama/eval_in_context.py,sha256=vF2OVE4kj5qVaBBHGR1eTqcmLWvUeoO4OMj9eUkTXvw,4623
|
|
269
|
+
xinference/thirdparty/fish_speech/tools/llama/generate.py,sha256=czEjxx_RnHzfwN8A0ZO4FkYcbivFGQaJJv3ucgtQYHM,21644
|
|
270
|
+
xinference/thirdparty/fish_speech/tools/llama/merge_lora.py,sha256=fQSKyLIGV8B1xDuzxCWVMu8WSO_wbYqR_mwLfFNTnJk,3277
|
|
271
|
+
xinference/thirdparty/fish_speech/tools/llama/quantize.py,sha256=kyFK1FuszL6erStml8jqxqDR43LjgcjlT1d3LeHwTz8,16606
|
|
272
|
+
xinference/thirdparty/fish_speech/tools/llama/rebuild_tokenizer.py,sha256=MuFdqOsU2QHq8cSz7pa4PAsjZyrJrghCZQR2SrpplTQ,2025
|
|
273
|
+
xinference/thirdparty/fish_speech/tools/sensevoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
|
+
xinference/thirdparty/fish_speech/tools/sensevoice/auto_model.py,sha256=abg8hFiVcWwhJYT_E8De-vYRUQOs1u0Zxxgz1nj1790,22739
|
|
275
|
+
xinference/thirdparty/fish_speech/tools/sensevoice/fun_asr.py,sha256=gLpuvycuY2_QyOqBbwfBCtDQ9CdEQovcBOvmbHvHqjo,10182
|
|
276
|
+
xinference/thirdparty/fish_speech/tools/sensevoice/vad_utils.py,sha256=QZhdJN6PiJUWui_8fdt_-BA32OKVfvjqV8roavLna20,2214
|
|
277
|
+
xinference/thirdparty/fish_speech/tools/vqgan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
278
|
+
xinference/thirdparty/fish_speech/tools/vqgan/create_train_split.py,sha256=aWQeRSJ_KRPp72qtXoFvxJkkP6P-73VKIew2iIeETos,2996
|
|
279
|
+
xinference/thirdparty/fish_speech/tools/vqgan/extract_vq.py,sha256=85HKh1ZI0wgeMsX1viEZbv3JIVFCUa5X0euhXSPwiGM,6770
|
|
280
|
+
xinference/thirdparty/fish_speech/tools/vqgan/inference.py,sha256=6YuLl23AMpPj07hZCsPfAn0DQUL9wV4i3T096h8csmo,3777
|
|
281
|
+
xinference/thirdparty/internvl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
282
|
+
xinference/thirdparty/internvl/conversation.py,sha256=2wLSnfxyLItQaLd-N5xoybBPKyZadXkVntPuMV5iyGo,15040
|
|
192
283
|
xinference/thirdparty/llava/__init__.py,sha256=UlCNtyBVX645CB6S6LfyYkTfQVO18_a8e9SmR7cHExA,41
|
|
193
284
|
xinference/thirdparty/llava/conversation.py,sha256=_OKwx8mkikwfsuTVR3BtvolqNcwY1X3DP7X9TlmR31g,7758
|
|
194
285
|
xinference/thirdparty/llava/mm_utils.py,sha256=f0JFOhbdFyLjA8W6VRDsGn5Xwnz4fWjY4Gyt3Apzk7k,3883
|
|
@@ -209,19 +300,19 @@ xinference/thirdparty/omnilmm/utils.py,sha256=VUMXIgq1tx3qwDmS2VewsXra6XqCUArQB0
|
|
|
209
300
|
xinference/thirdparty/omnilmm/model/__init__.py,sha256=CLYHL_fUqFqH7osJnRhVevBlnHaF06GBoNeYNRSmzq4,40
|
|
210
301
|
xinference/thirdparty/omnilmm/model/omnilmm.py,sha256=5m7b-keWplZG1-_YfLqwgaSvuhMJROYTq7AqrEFBl60,23919
|
|
211
302
|
xinference/thirdparty/omnilmm/model/resampler.py,sha256=a4zxggEqFDU-T-vE-6iUZ3Pr65qP5_D_DA59pj5F6pc,5202
|
|
212
|
-
xinference/thirdparty/omnilmm/model/utils.py,sha256=
|
|
303
|
+
xinference/thirdparty/omnilmm/model/utils.py,sha256=u2ulK2vb-FgAoAPBPWEO8fb_owles1Uuh57LMrX2D-I,16467
|
|
213
304
|
xinference/thirdparty/omnilmm/train/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
214
305
|
xinference/thirdparty/omnilmm/train/train_utils.py,sha256=L4JtFWDKtdEcQYpGW-UV6GCswTqHkiskK3phM9J-xUM,5634
|
|
215
306
|
xinference/web/ui/package-lock.json,sha256=MDt0IM5NT4MvrBwKJxD6TlgqKHvRQB7uH2szO1CQspU,762056
|
|
216
307
|
xinference/web/ui/package.json,sha256=W0Bq0vT0HOALv-nFo34Fos3r6DKrjR7zAL5swLg5qZg,1987
|
|
217
|
-
xinference/web/ui/build/asset-manifest.json,sha256=
|
|
308
|
+
xinference/web/ui/build/asset-manifest.json,sha256=oLXWEdxH8dtoBigKuDZ49ruJlIiQb3JQl1OWAbybNuA,453
|
|
218
309
|
xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
|
|
219
|
-
xinference/web/ui/build/index.html,sha256=
|
|
310
|
+
xinference/web/ui/build/index.html,sha256=0e3pBYf2BEpdY_opFUy5H41auiqaEuuiVCkqRwyv2zg,650
|
|
220
311
|
xinference/web/ui/build/static/css/main.4bafd904.css,sha256=B1LOr0CAJXDztw7bSsJMTmEwdzqnciZOYjgeBSO25cQ,3910
|
|
221
312
|
xinference/web/ui/build/static/css/main.4bafd904.css.map,sha256=rIbo5tZ_vpOnVcUwFk29B6UpEffrfphEQ3XKUAuG49E,7794
|
|
222
|
-
xinference/web/ui/build/static/js/main.
|
|
223
|
-
xinference/web/ui/build/static/js/main.
|
|
224
|
-
xinference/web/ui/build/static/js/main.
|
|
313
|
+
xinference/web/ui/build/static/js/main.661c7b0a.js,sha256=ZEDxImgd13fLCY-qxAYlr8oNPL4ggW-5-W0s5nE7WS8,991008
|
|
314
|
+
xinference/web/ui/build/static/js/main.661c7b0a.js.LICENSE.txt,sha256=rbybPZZs56fvnjMiAklb5AB-cE9DLmWrrraygrxIG3I,2279
|
|
315
|
+
xinference/web/ui/build/static/js/main.661c7b0a.js.map,sha256=H-UjkAiyeb2jAn5mGjgGud1rmTcKC7GQKv0j2O_vv7Q,4394824
|
|
225
316
|
xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
|
|
226
317
|
xinference/web/ui/node_modules/.package-lock.json,sha256=9jU355rtDRCO-oEwZIz20ylwNPD9ZXgReo7Uu8B97Zg,760016
|
|
227
318
|
xinference/web/ui/node_modules/.cache/babel-loader/000791038e4133db461021f1018491323a006cca7a53e09c2ac35032bc36d8b6.json,sha256=bke3WZZjPsJqMKVeHZ7xOSiE8x3fy4fe9nzvylycWOE,1374
|
|
@@ -562,6 +653,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/06e467e83a2f58a5aeedce0872f73
|
|
|
562
653
|
xinference/web/ui/node_modules/.cache/babel-loader/06eabed6a8247a7e4d6d9aa3c627f5d8f9a9b06eed8ad2194a3260e134a37f86.json,sha256=PvkcfQRIjpa3f-o7rARuhbiTXzwg3hc6oC4iqpsXHp0,725
|
|
563
654
|
xinference/web/ui/node_modules/.cache/babel-loader/06f893dbada7c83fcf82fe1076a6ec550d3da9b326c62a383f29a2d888db6b3c.json,sha256=2w248sk5WCVJXbHuvA8gbcng1oY6UgllxP07wfluyDo,1803
|
|
564
655
|
xinference/web/ui/node_modules/.cache/babel-loader/06feacb80faf0c297a6167ec40f58202b4768b2f1a6e0dc3ba9c76ef54308a70.json,sha256=zyeoYuKySYrj3sDbT0aA7agp76JAdcg0UuPZXLOF6Fs,1366
|
|
656
|
+
xinference/web/ui/node_modules/.cache/babel-loader/070d8c6b3b0f3485c6d3885f0b6bbfdf9643e088a468acbd5d596f2396071c16.json,sha256=6moN2B9xnLvt1_SQhX1tBwjYgsyiO5Qapx-oVAremBA,187121
|
|
565
657
|
xinference/web/ui/node_modules/.cache/babel-loader/0714f7d7eed5c0490af5c1795b66746fc124d5a18699de3af3586e5c983fd6eb.json,sha256=BC_Mub10WX3lOzJZ8iMZftRGnz6L6e3VlPNTADQz31I,1053
|
|
566
658
|
xinference/web/ui/node_modules/.cache/babel-loader/0716a316a9ac8a4402261cfad73e47870cef0ed8e6963a44297985aed1be118a.json,sha256=R8PZV1XP5hFeZLSwrqaNlgfADR2QK9b2-ayWY2zU8Ho,1427
|
|
567
659
|
xinference/web/ui/node_modules/.cache/babel-loader/071aa41c309750db22884d0b19b59ec6ed92c07957fd4e989904a365289adde2.json,sha256=hhlAfcqHp8EBTPqeN6HcGY5ieM7dWVRLuQB4UuDjFug,1717
|
|
@@ -1201,7 +1293,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/1433ba0a6d2513c7ad5e5f976044b
|
|
|
1201
1293
|
xinference/web/ui/node_modules/.cache/babel-loader/143c7ab47ba4030a82a7047c9e7e822dd293f9980b5451059b73495b14f95b8c.json,sha256=N1siyw4GIDRiIUw7KDMUsx1MKuDhIdyfxAzsfPP_kQA,1005
|
|
1202
1294
|
xinference/web/ui/node_modules/.cache/babel-loader/143d52600281147ad6173b982e9e71a369df6edce4daffdf4bbbb900a4e190ed.json,sha256=oJY_CHgPbgUG9w_H_aPyKZpmgUncCnQH79z252FRqSY,1235
|
|
1203
1295
|
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
1296
|
xinference/web/ui/node_modules/.cache/babel-loader/145d58e6350b9f41b1cf04a8c5c5fe95e68b034954367f3b9d14eb39752d31fb.json,sha256=102dE2JMhaxVkE_ZhviaJt7X10sLrpNpxL3tcEJcmiQ,1822
|
|
1206
1297
|
xinference/web/ui/node_modules/.cache/babel-loader/145db411af3d5c665d2aac79ddb404392238b4dfa545cf68aafda8ee69b2156b.json,sha256=bd-8sXL27dN58Ky-iIbd_jpvEK52XnIlodk1mdNm73g,1145
|
|
1207
1298
|
xinference/web/ui/node_modules/.cache/babel-loader/145e05056283410442796001d101eda9055192c9468dcad3d5e649a90864baba.json,sha256=hdQgQC_Pg5Brt06Yp7SaNkhHQtNyPSWB1KZc2EFVHd0,1187
|
|
@@ -1854,6 +1945,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/2133e9998f86c1b8be0c8192581cc
|
|
|
1854
1945
|
xinference/web/ui/node_modules/.cache/babel-loader/2135271a3422b58bbbb73ea0522c4ad3e85a5d5759eb5a5276c6945210217ba5.json,sha256=ATXIRvW1Bhv11Qf94LRLZOlhmemxehaS3X7AESpQ16Q,3476
|
|
1855
1946
|
xinference/web/ui/node_modules/.cache/babel-loader/213599cbf80c03eb12b4253070a9ead5056d5e969db67deae77d29840132781d.json,sha256=aiJrmF4NNVwd0UnZy4mDk_JTYOON272_XJ5WInibiBU,1358
|
|
1856
1947
|
xinference/web/ui/node_modules/.cache/babel-loader/2139e4cd9ab639967af2de06782119c5289f9f929414ff5b7bdcfdee79f63821.json,sha256=Dw4pZWctb75WN-B3HjY9N2zBxYbg2TSt2NppOTJcsAY,1674
|
|
1948
|
+
xinference/web/ui/node_modules/.cache/babel-loader/213b5913e164773c2b0567455377765715f5f07225fbac77ad8e1e9dc9648a47.json,sha256=lR42yeGi2x99W893Ueph-olExsVWbQJFDUSdTaamYs4,38167
|
|
1857
1949
|
xinference/web/ui/node_modules/.cache/babel-loader/21415ee75cee791b86f63613e1f044be20f420a8d8e12447b555811c6b72230a.json,sha256=PZZVDlxodpkrKPvno5RLbfI1QdJP8T8jKzR0zIYho4A,1470
|
|
1858
1950
|
xinference/web/ui/node_modules/.cache/babel-loader/21443176cb70827bc4ad999f21e75f8336a3da1d46c98a67cd0a4a9318ebfac2.json,sha256=ZkL6mqNA7xbnOIDvM6RWjVGRRsExKM02py9WRy_zbHo,1594
|
|
1859
1951
|
xinference/web/ui/node_modules/.cache/babel-loader/214a4ca727fe07615a26a71a75e7cc65d4a96935083ab8e887e37a9a546912c7.json,sha256=arjz1T91PFV6GDdtyQDRIJvQerx03hP6fxhV_34BxJA,1300
|
|
@@ -2469,7 +2561,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/2f3a5bea59fe969316d45d12408a0
|
|
|
2469
2561
|
xinference/web/ui/node_modules/.cache/babel-loader/2f3af892999a476f20c4ef5cad120993815ffccca6de5fd22c7d47e5ff950169.json,sha256=h0QwDDqQFEWRkuMV5o7XbX-SC7Qq-TaK6mSHWzU6adw,1325
|
|
2470
2562
|
xinference/web/ui/node_modules/.cache/babel-loader/2f3d3d288734a6e47745983f9f865df1c688b2430deb4c4c001b898134a819a0.json,sha256=dM_DSp2naYNI1GhebBe7gVGBpUNG55XFM1Y1UWVl_ZQ,1270
|
|
2471
2563
|
xinference/web/ui/node_modules/.cache/babel-loader/2f3f1ed017398baa9a659bb1d7114d278e96faa473364fd2928284563b18412d.json,sha256=yhH5QhdLKU269VXsoumGFLl3sTVLeQatePaAH1uh6b4,1868
|
|
2472
|
-
xinference/web/ui/node_modules/.cache/babel-loader/2f40209b32e7e46a2eab6b8c8a355eb42c3caa8bc3228dd929f32fd2b3940294.json,sha256=d9QXo0xNACjyHpjR7J--ZpN4s6yKDl1F94Msu6dDeZg,182891
|
|
2473
2564
|
xinference/web/ui/node_modules/.cache/babel-loader/2f43fe5334615d9a3d941e8f1f6639df1fbb5a843ebf3a603177fd3ba3fe18dd.json,sha256=VqCMJbZSamANuQeevKQ3m7FG5D2TGoZ86krqkwHHeQM,1876
|
|
2474
2565
|
xinference/web/ui/node_modules/.cache/babel-loader/2f45cf790b9bf2f826fcda3deba9e70946524b1a2b5d25507cd8dc632d1673db.json,sha256=pnnFpAyopv9mRlIY5FhZs_3Hk_E85Tq5VmLaNrs1hvU,26548
|
|
2475
2566
|
xinference/web/ui/node_modules/.cache/babel-loader/2f4888054f45db39120cffc39b262153d844febe05842dc4c73124e6f9b0f078.json,sha256=vZX-9UHCYEqHlgUikEDm-o2WsDwB5MlE-UiofNRanEk,1638
|
|
@@ -3509,7 +3600,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/446a53d3c43f8dbf1c00905246bb6
|
|
|
3509
3600
|
xinference/web/ui/node_modules/.cache/babel-loader/447296e291433715abe6074f2c9de32822fd763f976f34c4624a0fb66e3991dc.json,sha256=Eu7J3ufNQNXcGSfhCMAjjxBD1_gaJc467yWOy3O4NzE,1539
|
|
3510
3601
|
xinference/web/ui/node_modules/.cache/babel-loader/4473f8cc4ffd17c571550d0ff7f5071b89467be4785a9d481511a82ce182a608.json,sha256=D5QOxF1Wfo5K6PyeA8P7DDTVWklulYYlzVa0bC75pBA,1349
|
|
3511
3602
|
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
3603
|
xinference/web/ui/node_modules/.cache/babel-loader/4486bac33e40e83e2730730ffc02660c033e23c1428da2cf3e345bf87bddd66d.json,sha256=jpsOd3LpqPFiIFZ_YLT5T94nXHkh9Q_pUyMdV2p4VAE,38078
|
|
3514
3604
|
xinference/web/ui/node_modules/.cache/babel-loader/4489ee9372813f533a99906435462debf120a507f0b3bfd7a00799d7b3e11635.json,sha256=fM9DFvjt2_vD0JTA8OtT5uZe-3tHJPMkGF230A9dpaw,1124
|
|
3515
3605
|
xinference/web/ui/node_modules/.cache/babel-loader/4491d55776d45a03f801249521f1a2cc26bf10ece5ded1770b92985f013620f2.json,sha256=g1lb6TC-igd08FOPCNWr57SdX74qcqSQONMxhv6rv-w,1212
|
|
@@ -3934,6 +4024,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/4dde5b1a98cbd1f46965d40abcfda
|
|
|
3934
4024
|
xinference/web/ui/node_modules/.cache/babel-loader/4de35f342fb64c610c5f9b3817986698f38defc8f0e41b1e75f27b3f6d79a912.json,sha256=up__YhEd1JO0rdaDC9dKYKMHe88uI2wrZKSGRTezhSg,1507
|
|
3935
4025
|
xinference/web/ui/node_modules/.cache/babel-loader/4de4b0282a3d1ae02bec0bfe7d6658f039141406e8bfdbe86bf1dc5b115a2524.json,sha256=vqfFfoskLffaUTw2xEkTt3nEI9O61Zx-EZ0grmfuuMs,15148
|
|
3936
4026
|
xinference/web/ui/node_modules/.cache/babel-loader/4de90c3af82b41c0a7824b2197310fdce5c6a27e3884e3e080e804b87f121275.json,sha256=vkdAXfOe0fXOU2JvuTRDKRo-uuCLXe9Gx_ZHQPJymmY,1439
|
|
4027
|
+
xinference/web/ui/node_modules/.cache/babel-loader/4de9a6942c5f1749d6cbfdd54279699975f16016b182848bc253886f52ec2ec3.json,sha256=z5CfC6Su3CQ6mQVpWfRadjufaMp5FgcCWEN6uKRWNJQ,8738
|
|
3937
4028
|
xinference/web/ui/node_modules/.cache/babel-loader/4debf275167eb48c717464de9cd4f81837fe5aad0b5bd9788fcf920a123c744d.json,sha256=nmfGj8qpKAWj7f17-UOB3I-hrWYt4NI_hHzqtV-Hp30,6077
|
|
3938
4029
|
xinference/web/ui/node_modules/.cache/babel-loader/4df0db29f4d6297df1d67f816277f5287feea40861f9603339a8959bd3958457.json,sha256=moVb0BtmWbJt0ReqWOeKxzel9fcZlfkZuWUyXSVYUdw,1579
|
|
3939
4030
|
xinference/web/ui/node_modules/.cache/babel-loader/4df174457f9df3202cd7ac256bccc3a1e3f5d5e78a8733da57b9a4b8e4e617bf.json,sha256=4g54PcmHf6AdvKuQ-lMpoSzjr6krz_ea9iyBYlh9Qrg,1652
|
|
@@ -4163,7 +4254,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/52519e7ae612319a43ee74b453803
|
|
|
4163
4254
|
xinference/web/ui/node_modules/.cache/babel-loader/5251e3e98c9db4c5a0d719a41a1e7880a9adc1c2b4fe0d45c41eb7ae5ecf6c96.json,sha256=O1jlVRBq4KlES_sK86NCs80hzXkEnyLKRcocDPu6NyA,3333
|
|
4164
4255
|
xinference/web/ui/node_modules/.cache/babel-loader/525360f87cdad5ef701577619eaa86207f2ae2e5b2286ab3340193519c3db531.json,sha256=JMtvUQGf4pG2LKMYWDWkpSd6xN0TGdBW3n4giXtbYo0,1751
|
|
4165
4256
|
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
4257
|
xinference/web/ui/node_modules/.cache/babel-loader/5274c6a2e8f417ed2e9f42decb1eec20d3db67f1c933498710a81c51393dc948.json,sha256=RJRKueEP1CX4xYLymRMIDxvCUTe4sOhtkMTN-UthRLw,1890
|
|
4168
4258
|
xinference/web/ui/node_modules/.cache/babel-loader/5279d79627d4cc2418e52a9dc93f3d77df042eb0948d5e93d4066808e6092f82.json,sha256=kwb5kJsEmHqSy6bIEUN1TydOkHNAgPCaWSag_r_gmrg,1263
|
|
4169
4259
|
xinference/web/ui/node_modules/.cache/babel-loader/527a3d0bd6f849bb8724b5296cc863a28209eb582b0064e0b4f49516bd521941.json,sha256=sdNCPAEcYemZI0EvTvhpnoQB6t3uXd2fgIJFsQ2aea8,2206
|
|
@@ -4217,6 +4307,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/53756725ef11f97b1616fa01e4486
|
|
|
4217
4307
|
xinference/web/ui/node_modules/.cache/babel-loader/5376b7753a8a2550ee94e61b8d90718fb34537e4928e3a7814d42fc7d6be186a.json,sha256=7fqARyeYRRIkDZU8B22DacVfZhNGbpc3af1cDosLKSM,1192
|
|
4218
4308
|
xinference/web/ui/node_modules/.cache/babel-loader/537bbbd6a327cc20a826e54e0717f8d71e0ef33648409c512c8a6ed9760f680c.json,sha256=s7KlfGJSNUY1dP7IWhPSu4af0GQEEs8JTgNX-QI8VAw,20223
|
|
4219
4309
|
xinference/web/ui/node_modules/.cache/babel-loader/53867b68a0b49c920cf6cee6d3bd95e4796ba82dd5332a1d034affa09cc004cb.json,sha256=l2QlE-qR46ATwajq5qPT9iYe7xI6oRR5gINKwBeAF2Y,5554
|
|
4310
|
+
xinference/web/ui/node_modules/.cache/babel-loader/5391543180fead1eeef5364300301498d58a7d91d62de3841a32768b67f4552f.json,sha256=G_HEKnT2SdRrjSiki-K8GLmkDgl46ArKtGhItVUx9VI,9176
|
|
4220
4311
|
xinference/web/ui/node_modules/.cache/babel-loader/53948204cbb8006d746a9da05456c5b0b1677ea306318c43f3d3fec46c91c67c.json,sha256=mBFWUvbk5tVgrEEBwheW8NojMKSMn1xg1VDQNt1co3I,930
|
|
4221
4312
|
xinference/web/ui/node_modules/.cache/babel-loader/5394e2b265efd1be72a9030095e93976d88293e24ecf27f8556ffd0b5e5e4216.json,sha256=NZ2iX1zcCo4zR0T8oMKpxhtppOIwp7Q-MmAjXEGDz0s,1336
|
|
4222
4313
|
xinference/web/ui/node_modules/.cache/babel-loader/539f18646ec870ab1c5e42b7d78b2916cb743c5039e59bef57dc66994b37a7ab.json,sha256=NbMf6NStGj3OiAA8eSgbpw4GHeLD_4F-BUt2DVBAn7U,1811
|
|
@@ -4637,6 +4728,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/5c0c94a8c5ea216f513701ff66bb7
|
|
|
4637
4728
|
xinference/web/ui/node_modules/.cache/babel-loader/5c0fb1d13fcafcaec0933fd52e295a6ee59c67a5f5b5bfce9276693b16613c1e.json,sha256=KP_hG3aOfeEMKc13RwvxFedXKcwhrqy_neaa359gH6g,1074
|
|
4638
4729
|
xinference/web/ui/node_modules/.cache/babel-loader/5c15e88d541d44f7a82e24e0415fa49a7a308e9166b33e42a59c9b2db8c75704.json,sha256=B87R_lA-3zg7YrpQNAmhVfFSesBg2OROJ8GeU7tZauM,658
|
|
4639
4730
|
xinference/web/ui/node_modules/.cache/babel-loader/5c2307007caf7113727f4d99aed80bfd4c88a7398598b3acc25753471cf03046.json,sha256=iAo5B4KaBge4vDxXgvw2ge5aiRsVJXut41j9rDjCvrk,1161
|
|
4731
|
+
xinference/web/ui/node_modules/.cache/babel-loader/5c26a23b5eacf5b752a08531577ae3840bb247745ef9a39583dc2d05ba93a82a.json,sha256=5IH9YntoMuqLSXENJrsTwezn9Rq_f40ssO8_tQawL1Y,98489
|
|
4640
4732
|
xinference/web/ui/node_modules/.cache/babel-loader/5c2e7b8a81f8cdf0245cad55e5f24161dc6d2d9d87958929efaee83dd644a168.json,sha256=qWL5C4IuWph15wKW1FEUPVQt0n_hMdJCi8Ygaq8RuqI,1267
|
|
4641
4733
|
xinference/web/ui/node_modules/.cache/babel-loader/5c46789931671a7a2a50792a769f5f5c8de4a3f29c0200dd44dbd5b3d5c138e5.json,sha256=ySjnyhdVM4wi1PVFKpad94Y3ls5FtSZAZClAmo6x_tA,1435
|
|
4642
4734
|
xinference/web/ui/node_modules/.cache/babel-loader/5c4736ce0f6849573877bc016e6a4f9a3b98cc8e6382a37c730dd23be8edd585.json,sha256=qDV60Gy_nJuLDkXMebGQ-cJkWM6idVnT-lhWpbfNpk8,1177
|
|
@@ -5022,7 +5114,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/64440c77438544432a3ec1a333bee
|
|
|
5022
5114
|
xinference/web/ui/node_modules/.cache/babel-loader/6444141e9c144f48f8b27f5b5908228902f802812447f53f01b963dcdf992404.json,sha256=PN0T2vVuOG3rNCfivh7C_2PQbw4Qv2vxBGBnBSKjVn4,1472
|
|
5023
5115
|
xinference/web/ui/node_modules/.cache/babel-loader/64451d65f094dcbb672fbcf7eeed731ff184155b99738eb93bb6161c1b813ce8.json,sha256=eTbnPofRWPiaJlADYHiWRIfDG7dASVrQ2H3dZwxVU80,1330
|
|
5024
5116
|
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
5117
|
xinference/web/ui/node_modules/.cache/babel-loader/6456161fad7d8aede805a1c5ad82de47d7454bb803dfbc95152c494813202429.json,sha256=_C_2gcu3SPXOAexKdGZdv8g_HJ7z5gundJhvHwjUHa0,1310
|
|
5027
5118
|
xinference/web/ui/node_modules/.cache/babel-loader/64574e03e38034845f14a59e924c36f202e3955551a8699c0984e04b80924bef.json,sha256=OVi65y_tEwWyUITMCf9F3Aek6IS6dzJKAmdfFFUCuXA,1050
|
|
5028
5119
|
xinference/web/ui/node_modules/.cache/babel-loader/645b212189b74c52721a4a68f7480200dc30bd0d45bc6ed234fbeb3f75bef6c8.json,sha256=yFvN1DN3sWZigqZWPX260PQ_pi6V-ZKLYUzArF7FkOo,1420
|
|
@@ -5613,10 +5704,10 @@ xinference/web/ui/node_modules/.cache/babel-loader/713792c4a41823909c2c516de9064
|
|
|
5613
5704
|
xinference/web/ui/node_modules/.cache/babel-loader/713a7c6cbe1a51d369ea211dd81b8b07fa3ec3bd6b6804ba1664931220d730d1.json,sha256=wGa-fN0GMeKzD3HiP7egNWWWc98p6YG-VG1M1ElMwk4,62412
|
|
5614
5705
|
xinference/web/ui/node_modules/.cache/babel-loader/71439f02e5e54600c25ac8f9cef5747eb5bebb112b7c3648dc3515c87aeaa926.json,sha256=zY4FalKwA1Hq1ph-UevXtBbCgJ8NIa2jwV1IG8qox00,1262
|
|
5615
5706
|
xinference/web/ui/node_modules/.cache/babel-loader/714522557983b3f02995e5006d116b4762d83a2ce9bc45963ef13e7b5799862f.json,sha256=6h9s9hDohB_v-sDZLAtEl-GXcV9hE5GVc30TMR-E328,852
|
|
5707
|
+
xinference/web/ui/node_modules/.cache/babel-loader/714c37ce0ec5b5c591033f02be2f3f491fdd70da3ef568ee4a4f94689a3d5ca2.json,sha256=GFPrsWd9lQ0jORBF4rBasloI8JdVbroE6v29jIJCFjQ,16322
|
|
5616
5708
|
xinference/web/ui/node_modules/.cache/babel-loader/715706578b819e44279df76407d39a2acfcab9754e40e8365225463376fd7744.json,sha256=q83Vj32ygRBO8a0eyGVihPI29XU0hYHil6qaD1NtVH4,1383
|
|
5617
5709
|
xinference/web/ui/node_modules/.cache/babel-loader/715eca31da811b86eefa1f104059b758893ed40b3c87567eda97700a6580b854.json,sha256=_vtbzJ46JTTeHBGXkKh0lYTFFJ5AU_-F3TdNTolIX_M,1787
|
|
5618
5710
|
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
5711
|
xinference/web/ui/node_modules/.cache/babel-loader/716d3733cb4b722e518853aba885ca898f3bad65fad9833fa5a72ffddb201cee.json,sha256=P3HwpmEWNo3fl4vBl4rVIjPsKr-kolL3KgKtrhR1KAg,1436
|
|
5621
5712
|
xinference/web/ui/node_modules/.cache/babel-loader/7172210b45c3815593867b6f4581d62e6107b7b0c68b1a9d8821b3302d54701f.json,sha256=IzFHPZ88QHOFiQhBv3T7UQnoGRa14Qxa_wapLiPzhAQ,3145
|
|
5622
5713
|
xinference/web/ui/node_modules/.cache/babel-loader/7175f7508db91e31eb39c03b15b9dbf39577f554c287f2294a9cb1f0c55289d8.json,sha256=q9UdUN7ppaKZwJcEGX5BfVXF1idJwOH8v4mYA1LgEHc,1049
|
|
@@ -6379,7 +6470,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/80a0e522b645d231af0d11ca3ea8a
|
|
|
6379
6470
|
xinference/web/ui/node_modules/.cache/babel-loader/80a164dea81673c1a7481851cb5cf1317d82aee96ad9a351700eb448c5b1ec1d.json,sha256=Adz-TOR0s-FBEg6BFKTe0Tux1-pQj0HjPig29mtCZhk,2501
|
|
6380
6471
|
xinference/web/ui/node_modules/.cache/babel-loader/80a2de69e999367305e93de862c4df63af4bc7ed9564635e0f42cde44fe1c00b.json,sha256=GXMgK2b9GqGunOQzFOTyFocQgO2cDl8QWmgAzJbu8bg,1751
|
|
6381
6472
|
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
6473
|
xinference/web/ui/node_modules/.cache/babel-loader/80b2fc55a572b9ef6d00f3c4b01bf944927233d48f0919f4388faa2d224ae755.json,sha256=viwFkx_jtppQYlYwNz4sLDbCWY7Oz7V-Z-P2rcbGELQ,1205
|
|
6384
6474
|
xinference/web/ui/node_modules/.cache/babel-loader/80b701a572f6810eb303bdc0f9d75049a579555857e034c039b07a9389994303.json,sha256=K30BEWu9tZ7fWi6tsxKcF34ZyXiumJORlC_KngFHq8E,778
|
|
6385
6475
|
xinference/web/ui/node_modules/.cache/babel-loader/80bcd27700af94e18bc2e38634baf2b8afe3a05a5377a9a3fbd0efba6042ab55.json,sha256=r7seQUEfIU9i2mesDIin9nt6ejhtwAqTBqwpS6_M9Xw,1229
|
|
@@ -6446,6 +6536,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/820d6af6f69c6351bf1be6003ebb5
|
|
|
6446
6536
|
xinference/web/ui/node_modules/.cache/babel-loader/820f32b49da07859de991876c45f0f56386b1e70a068622633855807f46e287c.json,sha256=naWOwmxHXPsN7yzWxQH0G85A75K-m8DqHCGZ1X60D6w,1807
|
|
6447
6537
|
xinference/web/ui/node_modules/.cache/babel-loader/8210c89820991a05d4a94b2a56924dd0e0f635d70e7a07ca52899b538caf906d.json,sha256=83r0W3JmeLXRtgeP4qNaNlnt3FL5uIvodp-CHJTibrc,1609
|
|
6448
6538
|
xinference/web/ui/node_modules/.cache/babel-loader/8215785db426e6c57e23940c8e1589ce48932a87c87b69d87cf3f6c31532a5b1.json,sha256=wnRlQ_ZeCgA5rWhH3OBGVTu6s1By2Fzzy8_VkrlFg9w,1603
|
|
6539
|
+
xinference/web/ui/node_modules/.cache/babel-loader/822586ed1077201b64b954f12f25e3f9b45678c1acbabe53d8af3ca82ca71f33.json,sha256=YknLwWtFDFLOCZdNx5PAdqvUyHZw3XVoQEdkc6Kam1k,13870
|
|
6449
6540
|
xinference/web/ui/node_modules/.cache/babel-loader/822ad2ca7e442f2400b5e339681baa8effff51f88d8dcb23043f809b3386e2d4.json,sha256=_x3THcfp0D6zxTVsGEFqvuhdNqGnzMmRaopw4Wi2csg,1377
|
|
6450
6541
|
xinference/web/ui/node_modules/.cache/babel-loader/82309763dcac6139d41ea38166b7d50c0e5671ec2ed9613a7d5f8b80b2b04c94.json,sha256=K-Lx8lZytbXcw7-WpyoIJLRInG7NLn4N85r6lvZjinw,1891
|
|
6451
6542
|
xinference/web/ui/node_modules/.cache/babel-loader/823a141cb5bb91c87bec34e72078584fa58aa4de408ff3498eb1e51c767e3d96.json,sha256=-t8ddqRWVk1Kq8zLInkYRbxOxUWCcIFLUUKXhxO44to,2287
|
|
@@ -6860,7 +6951,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/8a8fb38a2de5aae6e68c1043cd5ce
|
|
|
6860
6951
|
xinference/web/ui/node_modules/.cache/babel-loader/8a915d479a6de7faebd93bda1e3649f579cbc93d776c95777a8ecb034950bbb4.json,sha256=k6CbqxY4GEKJ1tz-dHghiz2xWMJhH4LhGL1ZD6lGeDA,1166
|
|
6861
6952
|
xinference/web/ui/node_modules/.cache/babel-loader/8a936589024eb48a9c54d8bf46bb2abe5031242f4470438cade314fa8ae9eb65.json,sha256=bdeEfoBZgTbQCS01EgaI43wN3EpCzzdpzpxd4p-FTSM,1280
|
|
6862
6953
|
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
6954
|
xinference/web/ui/node_modules/.cache/babel-loader/8a9be74dbdcf97226654ac86a82b4e542c8c393f4d85cddb12345208135f8a6b.json,sha256=7Sg_53Dff4Aip5imP6zk_v8svqPHGi_4Vig5VMtXuYs,1069
|
|
6865
6955
|
xinference/web/ui/node_modules/.cache/babel-loader/8aa0182ad38a398995ec5c192f88d8526fe165673e488ca7d1a516141048345c.json,sha256=-O30bFkn7rpdsTjAHLjMPG1qxwfG_VJqoynYhZM39Wk,1075
|
|
6866
6956
|
xinference/web/ui/node_modules/.cache/babel-loader/8aae7e6d6ea86b48cea33ff88ffb5f539f0823b8f6f962ff7c2fe7b5e0ded5bb.json,sha256=tQ0LZ33vr2l5d3_m8k3ZpCmhNTJ_A_d7MZYrYvdQW8I,1811
|
|
@@ -7512,6 +7602,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/976a5b4143ec55a62511b11c67e73
|
|
|
7512
7602
|
xinference/web/ui/node_modules/.cache/babel-loader/9778428b3001a4f5b3e1b879d5e7ad9da03f934aaa2e0514f8a7e2f289bb6233.json,sha256=hZBcAN8cI-Glida1s4vz3-OT4ZfpvXp2bGkSJExkIYo,1703
|
|
7513
7603
|
xinference/web/ui/node_modules/.cache/babel-loader/977c629e83c6cc2b921e834e3123c489c55587a146d5e024994cf73acb04d166.json,sha256=HiqCyAQxad3-yBoYsjWyspmP0Sbhoz8bNgQ_XasAV_k,1295
|
|
7514
7604
|
xinference/web/ui/node_modules/.cache/babel-loader/9787c77f71841a2b5dfcd43487a24584616e7dc6ac75eded5a2809abead1f347.json,sha256=kCTaPNyJ1Tr7b7aV2HLxXNcUnLhS9W72YA0aKCztvjY,1212
|
|
7605
|
+
xinference/web/ui/node_modules/.cache/babel-loader/978b57d1a04a701bc3fcfebc511f5f274eed6ed7eade67f6fb76c27d5fd9ecc8.json,sha256=XYQi3I5erkTr3p8K0djX77kUEo5gOcgcyXi5XG77aFw,14704
|
|
7515
7606
|
xinference/web/ui/node_modules/.cache/babel-loader/979af993386f6e8af8ea16be73ab8d4083aef8eda684e21ee1df263ad024981b.json,sha256=1VD8AalJEA7k_keCuqkCV4Z6shpxbCB2Cn5cUga-oqY,1126
|
|
7516
7607
|
xinference/web/ui/node_modules/.cache/babel-loader/979e397d9fba3a2136493926f6058e95f2b965fb9f5a3b415124b61019262187.json,sha256=6R9IcVK4xB-_MJmEXQ-64fiTrsn936A2Zl5Xe_GU3oI,3889
|
|
7517
7608
|
xinference/web/ui/node_modules/.cache/babel-loader/979f5e9c38ecbe03ca306b99f8f2cae2df7e72520e7dad85241e08c69acc16c4.json,sha256=d_BJxnDkIMo-wfM8v7FlIK87463OKiEVSHzwcC1iySg,1452
|
|
@@ -8291,6 +8382,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/a77c2da712ee7e321694da004fd3f
|
|
|
8291
8382
|
xinference/web/ui/node_modules/.cache/babel-loader/a789c832bd3ec4ed6da41c2d0dc981bfa47a34e49f627a923ce222a62ddd0f35.json,sha256=cGeIbg36tYAAdyFOMUw98--YxwkuO2ZTIafIDXOps28,2477
|
|
8292
8383
|
xinference/web/ui/node_modules/.cache/babel-loader/a78e5207f262db865c7d3b3744e6ec412876ecfeef8a4df4cefdbe667111750e.json,sha256=JNIPNIIMo5tMRR_BFubgYDOilgGRelEibQO3KLvVdgg,1971
|
|
8293
8384
|
xinference/web/ui/node_modules/.cache/babel-loader/a796de0e7c83ec10c75a090aef56ae80a29c901086d7048fe79188fa2d829794.json,sha256=jzCcpXwzAPCrwqCem3pfi4S-EwfiM3WB2JDrWo97AFQ,1483
|
|
8385
|
+
xinference/web/ui/node_modules/.cache/babel-loader/a797831de0dc74897f4b50b3426555d748f328b4c2cc391de709eadaf6a5f3e3.json,sha256=RBsLuE0TBV5iH5A2adxES6Gl6nXIZcMbBJV7rr4YGqY,7085
|
|
8294
8386
|
xinference/web/ui/node_modules/.cache/babel-loader/a79dbd17ed829c97f592a8444824b3efc70d4c7e55fe1f3d8b7400c3b4473c42.json,sha256=dx_PqhYNBeErVlNXh_7oWGoTidodi7ZRmlv2jHqu2Ks,1632
|
|
8295
8387
|
xinference/web/ui/node_modules/.cache/babel-loader/a79eb3832a06b7d155602a828e98cc44d6400f69119aa9616a528a97a460b8c0.json,sha256=5Ur2Y8y8yILVkdIjmAeZAv_O7c8oGPJy_mb1q86zH0U,18748
|
|
8296
8388
|
xinference/web/ui/node_modules/.cache/babel-loader/a7a245ac2e4ba05903ae13c1290104a664f3c795ededb7921cbf5e41833cc69e.json,sha256=sSlag15eHMIpoVLihTlyMMgKUdUW86JUam_j_xJq7e8,1446
|
|
@@ -9308,6 +9400,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/bd5faddae8fd655cc1db76fb5119e
|
|
|
9308
9400
|
xinference/web/ui/node_modules/.cache/babel-loader/bd6254d64cd97a3fa5456e01e896e803275ea461980e7c2b6f22e7875a605e2f.json,sha256=4Imjadq6nfq1gn0M0UrR2iwr15WmFQ8YPpkL9U73uHM,807
|
|
9309
9401
|
xinference/web/ui/node_modules/.cache/babel-loader/bd64f9b6c6cde108f5f50d9706a3f0f8d17171fcb60d2f82f24cc8769e158a9c.json,sha256=WrD9M7UM7AvB0_vELS3fUk9e2OuQytu6_eAA-3gaoA0,35526
|
|
9310
9402
|
xinference/web/ui/node_modules/.cache/babel-loader/bd69f67515abb09f7746f74513f1094198c604ffc9a0bab4b4d328e9a6d44a1b.json,sha256=cP0-aLAH3o6k_Y_BNywyr-LGQTsGcKbMfYm9ciiYE9g,1263
|
|
9403
|
+
xinference/web/ui/node_modules/.cache/babel-loader/bd6ad8159341315a1764c397621a560809f7eb7219ab5174c801fca7e969d943.json,sha256=vK_50akBXt_n6RuP1yHaz71-pwUzDKkk6EsHNGLqPIM,65089
|
|
9311
9404
|
xinference/web/ui/node_modules/.cache/babel-loader/bd6e3b3cbee9f2d64bbc8c62da1a628a8a8ec2f5037697a950f5c363a619e7aa.json,sha256=7iquDU6fzG8wmI1-_ZuH9tphn_EgdNLqWkZszgqTa8w,1113
|
|
9312
9405
|
xinference/web/ui/node_modules/.cache/babel-loader/bd8d3849dddafa9e0c2d0a9b8cb6abb9aa2214a1f9cab47b2e35f655b6b05c56.json,sha256=kOsm2vF_N-b-58TsLyPSLSO9KT65YU4R65PLFxQ4XyY,2283
|
|
9313
9406
|
xinference/web/ui/node_modules/.cache/babel-loader/bd918644e0ecb7d99e41af695ac8a8d371eb497b9062c83fac3fceb8f903dff0.json,sha256=Akmf_Wc8uIU0Ba14mCw4ZYwMAoC_8Luxsi2eH4RbE_Y,1897
|
|
@@ -10233,7 +10326,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/d050f2d2a87b7407dbbed27a0291d
|
|
|
10233
10326
|
xinference/web/ui/node_modules/.cache/babel-loader/d05a6798190a109be5ee833aa994ca70ff4389c8402a232d10d0fd054f8c09e6.json,sha256=TNzeDqXJ-VXb5xp9rCEGrn2w8JDJLLa8Sivi7OTLGqw,1217
|
|
10234
10327
|
xinference/web/ui/node_modules/.cache/babel-loader/d062fa7496d592f2730ed595bf4daeb04fae36d451ef5ebe81e9bdca3eae9b2e.json,sha256=Qgobo_8gQz3NBv2Iy-YPSp_ydeCUiZATjUxJJkg3fzo,5482
|
|
10235
10328
|
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
10329
|
xinference/web/ui/node_modules/.cache/babel-loader/d06af85a84e5c5a29d3acf2dbb5b30c0cf75c8aec4ab5f975e6096f944ee4324.json,sha256=JeCuyngunHiV5IZ7q47QW-BMORb2UFsNpy26JbKkPXY,306
|
|
10238
10330
|
xinference/web/ui/node_modules/.cache/babel-loader/d06f05f05acbf0a5c2e486ef0ec386b35a76ae8c8aa3717a82a44d88b604caaf.json,sha256=0riCbLEaud-LvWtH93f4xvOC62EUJ3s5OKAi9wTPqZM,25077
|
|
10239
10331
|
xinference/web/ui/node_modules/.cache/babel-loader/d074bfe592a195f339acbcd8743f8b64cfd09b45ca1013598269227fc092f2db.json,sha256=heaTxZ8I6g7bvLMIC5ZIV6Kb3q4VDuFb1joHBP_pPMY,393
|
|
@@ -10681,7 +10773,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/d919cc09187461766a55f1c2b05ba
|
|
|
10681
10773
|
xinference/web/ui/node_modules/.cache/babel-loader/d91d6cae10e6b270c12b8fec5a28b9af7c4679bb1f16ee17c8cd99f1c7506a3c.json,sha256=H85rZkmLJLUDxswZS_CIcn7lPwO7goBuIgkCSYmK2vc,1443
|
|
10682
10774
|
xinference/web/ui/node_modules/.cache/babel-loader/d9208cf093b55e58d96b56aa6cefddbd935cab74783fc3daacd1e9fe877a2cfe.json,sha256=2vmbpe0zi_pPKjQ1q1GveJ0NLkugq-Wjr2Vn5vnqBSY,970
|
|
10683
10775
|
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
10776
|
xinference/web/ui/node_modules/.cache/babel-loader/d9379a52e4a758506fa012ba58b633907820c6bd1899aa4d795e472c8773a41a.json,sha256=8R9mKiGj1IdJhWNpHUNeVrqfCvDfBeRo2i5200pFhXI,1527
|
|
10686
10777
|
xinference/web/ui/node_modules/.cache/babel-loader/d93d2a4ded520be8493a02570527874f8a4862c50d08df514fb9719b1c2cd708.json,sha256=-pqST_LCO1XSjlRDBEG_GQDO1VWNbo2tyT3FoxEkiFA,1404
|
|
10687
10778
|
xinference/web/ui/node_modules/.cache/babel-loader/d93de9fa0eef845d7b208e03d06566c28df09835d001a658017ff96983835fc2.json,sha256=bA_tzWHoxr8S2Eu9RGPSFm0Sw23vyKMPsT9yRQvuIOg,1046
|
|
@@ -11341,9 +11432,9 @@ xinference/web/ui/node_modules/.cache/babel-loader/e63bbf4e2be4e290d0ab27ab726c5
|
|
|
11341
11432
|
xinference/web/ui/node_modules/.cache/babel-loader/e63bed6e2431a76d99ce23c459ac072cf2a600ad83a0cbc2ab70ccdb0b53ab19.json,sha256=CuCvhCZyvxvcaXU1_e886W9TYVxxw1HAZrij9dUEz-c,1548
|
|
11342
11433
|
xinference/web/ui/node_modules/.cache/babel-loader/e6414327e9907ff2a0d0220af37e43f5538c3fc667a8d4b889fc60801db6a138.json,sha256=SyvJeiYIkAH8-Kv6FVLcoBQq4hOKr4KgSN7K85fdKWY,1865
|
|
11343
11434
|
xinference/web/ui/node_modules/.cache/babel-loader/e6448192c1587bcf98d82d4982712b0bde2c260e77086708a662940dfddf702c.json,sha256=ExN7p6fiFkBRoVAwyCcVFWqkzx-uXet6IpTKKJbkKgg,309
|
|
11435
|
+
xinference/web/ui/node_modules/.cache/babel-loader/e64b7e8cedcf43d4c95deba60ec1341855c887705805bb62431693118b870c69.json,sha256=VEQxXkIGOkcu3d5MIWHheeBa7WtuCeLlCYYPG9YHnU0,5440
|
|
11344
11436
|
xinference/web/ui/node_modules/.cache/babel-loader/e64cac4631ac00f380657f80a294ec1747c2f7d6aef52c8578d728d15adf5b11.json,sha256=H7hKoTpT9ZxbPJAph0fLfVN1tR1PKnz3eg4oiV8Dsg0,1300
|
|
11345
11437
|
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
11438
|
xinference/web/ui/node_modules/.cache/babel-loader/e656fbc6dfee9104f9e23270405e1339fb4c4ba07dee613b82f27c1c08ba113f.json,sha256=aeSsyQh0wmHeZ5qS_tFwSsJvvBtUPvJkKniE4TWOV-8,1621
|
|
11348
11439
|
xinference/web/ui/node_modules/.cache/babel-loader/e6580b3ea561e0d37c74c3fd18a8642c9428cc9ed823ff7db6924ba70b9491d1.json,sha256=1DGGqf-TGVb692Who_uqJgtGxupQSyBBuwq4DkFNIKY,1076
|
|
11349
11440
|
xinference/web/ui/node_modules/.cache/babel-loader/e66d601288d3802bdc95267b16a19bb1cc8f7c8d338c5576fd0614b646dc6f15.json,sha256=94eY34Or467v39aUy-GrdzDzUKFLPipcCkhhBzCIeqo,2203
|
|
@@ -11483,6 +11574,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/e90b0b00baf95989020090b49380b
|
|
|
11483
11574
|
xinference/web/ui/node_modules/.cache/babel-loader/e91133bfaecacefa133d262a8cb7da39bff16c054b03d8b1be300bad2ceeb40d.json,sha256=6T1LxF3lQoFeKJ5np8OhMcMIz-uSZWLNdjPhgzMNOEU,1329
|
|
11484
11575
|
xinference/web/ui/node_modules/.cache/babel-loader/e917bfd02b03f8adb410784c77beff9ecedb5e38c4b29e1f3dc33820a9c412f9.json,sha256=VDk6u4q_gEHL0F5jSt-oaI8dY1tBp3tk7nymDcoA-78,2342
|
|
11485
11576
|
xinference/web/ui/node_modules/.cache/babel-loader/e917e04f6cc2017fef03fadb5f5895c89a4d7ac4972d99be2094e9e926866393.json,sha256=voNHdQlXr2GGBRy1GYnL5KIzVHPHFbi_IB-3mqdzJuY,1115
|
|
11577
|
+
xinference/web/ui/node_modules/.cache/babel-loader/e91938976f229ce986b2907e51e1f00540b584ced0a315d498c172d13220739d.json,sha256=ts6rKOm55lnIbGkmnfCOkJsxfoWLvORonoEMbOOfnRg,3806
|
|
11486
11578
|
xinference/web/ui/node_modules/.cache/babel-loader/e91e7aee2d411c0b7045389bd7311c5e0241cdbd9b6afb7eb72d19bcef41b1b6.json,sha256=6jVjrAD5sAdaTn2dLat9a28dppUA3fWbC_lkIFux6ZE,1240
|
|
11487
11579
|
xinference/web/ui/node_modules/.cache/babel-loader/e92330cf0206402e3bd7ecc8280b15fe8fe0c2eadc042a55d9d1289f2ec3f307.json,sha256=fro4w_SithubbjhcpUao5fxEtiDbPx6uON_forKkpt0,1810
|
|
11488
11580
|
xinference/web/ui/node_modules/.cache/babel-loader/e924d5665303ffa364a20e08cf6ebef1f5ee4197c76a46659af361f85e527709.json,sha256=sgPdINBTCS03rhQHn4hl1eyAL0bc2iSf_AT2k6aUtM4,1628
|
|
@@ -11912,7 +12004,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/f2755d4f1a0bea64ae01dd8cb86f9
|
|
|
11912
12004
|
xinference/web/ui/node_modules/.cache/babel-loader/f27a505514ff84a858a8006de4a63dd8d107a8d13182df51f6e0c252cca0d748.json,sha256=3c68-VkVa3gYcC-sbY5Mcx92f08W5Zybix30vIhdwTg,1467
|
|
11913
12005
|
xinference/web/ui/node_modules/.cache/babel-loader/f27c47684d6c24dd3b21cbe76aa4ce3d2f604ef0353f1f093be20236b7ecd4f5.json,sha256=yj2GCg8h1xWkkwEpj8Ia9_Biy6K2LiQ63IHVn26zV-k,1748
|
|
11914
12006
|
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
12007
|
xinference/web/ui/node_modules/.cache/babel-loader/f28dffbccd52089331082295c9c370c6bd86ca33adc2d9e738017c55b087b249.json,sha256=R2pL74fgY_ib1KgfMOedJ3wnbxeM2GPCI0cYdiIbt5k,1180
|
|
11917
12008
|
xinference/web/ui/node_modules/.cache/babel-loader/f28e976a8f672a89aa93fb79a73747b028d0cddb9c0a7827a4979bbe20b172f8.json,sha256=gtNi00xRR8NBYx9c5enpFhIshG6JUt3zv35OHQuwsHc,1816
|
|
11918
12009
|
xinference/web/ui/node_modules/.cache/babel-loader/f293c3308343f4ea675098255bac316e9aa7e8f8456752b54152726834b5be84.json,sha256=HXzroYLFTdjtEEGhMMezOQBuGKNno_HVm1SooU9vk3s,1182
|
|
@@ -11985,7 +12076,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/f3d82de80e6654040319d65a5b804
|
|
|
11985
12076
|
xinference/web/ui/node_modules/.cache/babel-loader/f3d8a21f34b7b99b62ccc3b59881419a8fcc8f903866e4e4ccf6f9696d84b082.json,sha256=P4TkaRfMeSwfUn-_GBejwWkIIjZ1oBoEndYjl5Yb8e0,1349
|
|
11986
12077
|
xinference/web/ui/node_modules/.cache/babel-loader/f3da6f41ad10652f31cd2ca1d53c0739a0c60934f2ff1d160a90f986c790985a.json,sha256=IYXopTLWLwyfriLeYMzESg_YZf3H28M_QEoyXsNGW_I,627
|
|
11987
12078
|
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
12079
|
xinference/web/ui/node_modules/.cache/babel-loader/f3eadf0b3bd2a99dfbc4f599112fc9a273e97b8b72d69098bbac5e475eaaa5fd.json,sha256=ihZqmcg88ttMHEciqrjxNs8rQi1GcvuKU1wmAFmZPu4,1701
|
|
11990
12080
|
xinference/web/ui/node_modules/.cache/babel-loader/f3eb19dd9376ba5733b8556f52c9d1730260ebe5269b9b4736245646d2c36520.json,sha256=nwrdddQVwT4myCUGQyk2XwLYZM-KGGlJre8MAB6gYc0,3484
|
|
11991
12081
|
xinference/web/ui/node_modules/.cache/babel-loader/f3ebe787cdb6bdfaa234056d24f6f406d1e0928e7235967ddffc2af4fdb316d5.json,sha256=ZJaoMuK5FYDMWKkYfCl4_AZBFVg0xEBYlsGh01vMoBI,1391
|
|
@@ -12148,6 +12238,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/f70f1d8ec5d018de3ce7b363d1ea0
|
|
|
12148
12238
|
xinference/web/ui/node_modules/.cache/babel-loader/f71419551f1c94ba50aa5d0a076697d8a282776fc982ee7954bb3a97ce82b066.json,sha256=7c1B0jy7uctlOtfmRYhn7MdvTyEMMHJqmLTFl4Uw8Hk,1265
|
|
12149
12239
|
xinference/web/ui/node_modules/.cache/babel-loader/f71c37113c7ff54dacd86a97719e795aec998fbac52e30864901b2a92222aa16.json,sha256=ascnsrlL2_Np-7bcJqGQny_UiXq1AJKQr7pbloXK6BY,1256
|
|
12150
12240
|
xinference/web/ui/node_modules/.cache/babel-loader/f721efe48ae867d730170b98c5d9329da7f6f5169a562ee2e2a6fe6995e52dc1.json,sha256=n7Y6FZL6OPXqliA__lR9gD1BZiYGZUzbMoKF18iv2Qg,1369
|
|
12241
|
+
xinference/web/ui/node_modules/.cache/babel-loader/f72f011744c4649fabddca6f7a9327861ac0a315a89b1a2e62a39774e7863845.json,sha256=NMgZ0Lk6tKkuJC5EOv7XwcF7HYDGrSYIZop8qxR2IDg,9786
|
|
12151
12242
|
xinference/web/ui/node_modules/.cache/babel-loader/f72f55720771ce53110ca40b8de2b354a2a277e2339d9b6093a0bdc8f4013a97.json,sha256=YWIeUTTNRB3U1aagaQ2G0--agug1D06FDrBQaYblQe4,1045
|
|
12152
12243
|
xinference/web/ui/node_modules/.cache/babel-loader/f72f67c0ba1025e917ab6ec6aff36250aede4418ad1fa8e3c4059bad7e1eb305.json,sha256=IeAIeGn-E8kE5LHDLJYTBGLK6ODhk-FU-fxWC3tHuug,2318
|
|
12153
12244
|
xinference/web/ui/node_modules/.cache/babel-loader/f7332c70db6530bb694071f0461bdcdb95812cc2455f9455d2a9deab06c2c5d5.json,sha256=qE2HWSobExOV_PdjHMK4UPfi74CoomEuI7NMAnAY0mE,1559
|
|
@@ -15479,9 +15570,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15479
15570
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15480
15571
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15481
15572
|
xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
|
|
15482
|
-
xinference-0.14.
|
|
15483
|
-
xinference-0.14.
|
|
15484
|
-
xinference-0.14.
|
|
15485
|
-
xinference-0.14.
|
|
15486
|
-
xinference-0.14.
|
|
15487
|
-
xinference-0.14.
|
|
15573
|
+
xinference-0.14.3.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
15574
|
+
xinference-0.14.3.dist-info/METADATA,sha256=-iZ6GGeMDQ6X1G3T6RoLj_tYI3N7UCl-8T7HfqjBiyM,18397
|
|
15575
|
+
xinference-0.14.3.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
15576
|
+
xinference-0.14.3.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
15577
|
+
xinference-0.14.3.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
15578
|
+
xinference-0.14.3.dist-info/RECORD,,
|
xinference/locale/utils.py
DELETED
|
@@ -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)
|