xinference 1.5.0.post1__py3-none-any.whl → 1.5.1__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 (89) hide show
  1. xinference/_version.py +3 -3
  2. xinference/api/restful_api.py +10 -3
  3. xinference/constants.py +5 -1
  4. xinference/core/supervisor.py +12 -3
  5. xinference/core/utils.py +1 -1
  6. xinference/core/worker.py +2 -2
  7. xinference/deploy/cmdline.py +17 -0
  8. xinference/model/audio/core.py +1 -1
  9. xinference/model/audio/model_spec.json +43 -43
  10. xinference/model/audio/model_spec_modelscope.json +13 -13
  11. xinference/model/llm/__init__.py +3 -5
  12. xinference/model/llm/core.py +14 -0
  13. xinference/model/llm/llama_cpp/core.py +15 -4
  14. xinference/model/llm/llm_family.json +3251 -4304
  15. xinference/model/llm/llm_family.py +62 -6
  16. xinference/model/llm/llm_family_csghub.json +0 -32
  17. xinference/model/llm/llm_family_modelscope.json +1161 -1789
  18. xinference/model/llm/llm_family_openmind_hub.json +19 -325
  19. xinference/model/llm/lmdeploy/core.py +7 -2
  20. xinference/model/llm/mlx/core.py +19 -6
  21. xinference/model/llm/sglang/core.py +25 -10
  22. xinference/model/llm/transformers/chatglm.py +8 -1
  23. xinference/model/llm/transformers/cogagent.py +10 -12
  24. xinference/model/llm/transformers/cogvlm2.py +6 -3
  25. xinference/model/llm/transformers/cogvlm2_video.py +3 -6
  26. xinference/model/llm/transformers/core.py +50 -58
  27. xinference/model/llm/transformers/deepseek_v2.py +4 -2
  28. xinference/model/llm/transformers/deepseek_vl.py +10 -4
  29. xinference/model/llm/transformers/deepseek_vl2.py +9 -4
  30. xinference/model/llm/transformers/gemma3.py +15 -7
  31. xinference/model/llm/transformers/glm4v.py +2 -20
  32. xinference/model/llm/transformers/glm_edge_v.py +3 -20
  33. xinference/model/llm/transformers/intern_vl.py +3 -6
  34. xinference/model/llm/transformers/internlm2.py +1 -1
  35. xinference/model/llm/transformers/minicpmv25.py +4 -2
  36. xinference/model/llm/transformers/minicpmv26.py +5 -3
  37. xinference/model/llm/transformers/omnilmm.py +1 -1
  38. xinference/model/llm/transformers/opt.py +1 -1
  39. xinference/model/llm/transformers/ovis2.py +302 -0
  40. xinference/model/llm/transformers/qwen-omni.py +2 -1
  41. xinference/model/llm/transformers/qwen2_audio.py +3 -1
  42. xinference/model/llm/transformers/qwen2_vl.py +5 -1
  43. xinference/model/llm/transformers/qwen_vl.py +5 -2
  44. xinference/model/llm/utils.py +28 -0
  45. xinference/model/llm/vllm/core.py +73 -9
  46. xinference/model/llm/vllm/distributed_executor.py +8 -7
  47. xinference/model/llm/vllm/xavier/allocator.py +1 -1
  48. xinference/model/llm/vllm/xavier/block_manager.py +1 -1
  49. xinference/model/llm/vllm/xavier/block_tracker.py +3 -3
  50. xinference/model/llm/vllm/xavier/executor.py +1 -1
  51. xinference/model/llm/vllm/xavier/test/test_xavier.py +1 -1
  52. xinference/model/video/diffusers.py +30 -3
  53. xinference/model/video/model_spec.json +46 -0
  54. xinference/model/video/model_spec_modelscope.json +48 -0
  55. xinference/types.py +2 -0
  56. xinference/web/ui/build/asset-manifest.json +6 -6
  57. xinference/web/ui/build/index.html +1 -1
  58. xinference/web/ui/build/static/css/{main.0f6523be.css → main.337afe76.css} +2 -2
  59. xinference/web/ui/build/static/css/main.337afe76.css.map +1 -0
  60. xinference/web/ui/build/static/js/main.91e77b5c.js +3 -0
  61. xinference/web/ui/build/static/js/main.91e77b5c.js.map +1 -0
  62. xinference/web/ui/node_modules/.cache/babel-loader/5c08e2cd07809ed3e41486b16652253404cbb63a3ff8d0366ee50f57e2413cea.json +1 -0
  63. xinference/web/ui/node_modules/.cache/babel-loader/5e6edb0fb87e3798f142e9abf8dd2dc46bab33a60d31dff525797c0c99887097.json +1 -0
  64. xinference/web/ui/node_modules/.cache/babel-loader/6087820be1bd5c02c42dff797e7df365448ef35ab26dd5d6bd33e967e05cbfd4.json +1 -0
  65. xinference/web/ui/node_modules/.cache/babel-loader/6798e126f3bc5f95a4c16a9c2ad52ffe77970c62406d83e20604dfda7ffd2247.json +1 -0
  66. xinference/web/ui/node_modules/.cache/babel-loader/b617f7d21a95045fc57b26a9373551740f1978a826134cbf705c3a1bf8714a93.json +1 -0
  67. xinference/web/ui/node_modules/.cache/babel-loader/c1506cb142151366074975f30fa1ff9cd6e5e978b62a4b074dfc16fe08d70d75.json +1 -0
  68. xinference/web/ui/node_modules/.cache/babel-loader/c5c7c2cd1b863ce41adff2c4737bba06eef3a1acf28288cb83d992060f6b8923.json +1 -0
  69. xinference/web/ui/src/locales/en.json +1 -0
  70. xinference/web/ui/src/locales/zh.json +1 -0
  71. {xinference-1.5.0.post1.dist-info → xinference-1.5.1.dist-info}/METADATA +1 -1
  72. {xinference-1.5.0.post1.dist-info → xinference-1.5.1.dist-info}/RECORD +77 -78
  73. {xinference-1.5.0.post1.dist-info → xinference-1.5.1.dist-info}/WHEEL +1 -1
  74. xinference/model/llm/transformers/compression.py +0 -258
  75. xinference/model/llm/transformers/yi_vl.py +0 -239
  76. xinference/web/ui/build/static/css/main.0f6523be.css.map +0 -1
  77. xinference/web/ui/build/static/js/main.58bd483c.js +0 -3
  78. xinference/web/ui/build/static/js/main.58bd483c.js.map +0 -1
  79. xinference/web/ui/node_modules/.cache/babel-loader/51709f5d3e53bcf19e613662ef9b91fb9174942c5518987a248348dd4e1e0e02.json +0 -1
  80. xinference/web/ui/node_modules/.cache/babel-loader/69081049f0c7447544b7cfd73dd13d8846c02fe5febe4d81587e95c89a412d5b.json +0 -1
  81. xinference/web/ui/node_modules/.cache/babel-loader/8f9af2979e45d4648f0cfae108363e58ee421c29a9d4e7329b6f06d9adfd4133.json +0 -1
  82. xinference/web/ui/node_modules/.cache/babel-loader/9c8b1a86e7c65b2b2599a205e30920652d6c2105f926508ef5bcf29a3ef4ce76.json +0 -1
  83. xinference/web/ui/node_modules/.cache/babel-loader/b8551e9775a01b28ae674125c688febe763732ea969ae344512e64ea01bf632e.json +0 -1
  84. xinference/web/ui/node_modules/.cache/babel-loader/efe7cd132c27a8f9fd5352a394c491fd5fb0da0348cf9fcbd923164a32365eab.json +0 -1
  85. xinference/web/ui/node_modules/.cache/babel-loader/f199e8173f6409a5802ed44acb95f218388131136504b2e9132129e150c92f9a.json +0 -1
  86. /xinference/web/ui/build/static/js/{main.58bd483c.js.LICENSE.txt → main.91e77b5c.js.LICENSE.txt} +0 -0
  87. {xinference-1.5.0.post1.dist-info → xinference-1.5.1.dist-info}/entry_points.txt +0 -0
  88. {xinference-1.5.0.post1.dist-info → xinference-1.5.1.dist-info}/licenses/LICENSE +0 -0
  89. {xinference-1.5.0.post1.dist-info → xinference-1.5.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1 @@
1
+ {"ast":null,"code":"import _createForOfIteratorHelper from\"/home/runner/work/inference/inference/xinference/web/ui/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelper.js\";import _slicedToArray from\"/home/runner/work/inference/inference/xinference/web/ui/node_modules/@babel/runtime/helpers/esm/slicedToArray.js\";import{Button,Dialog,DialogActions,DialogContent,DialogTitle,TextField}from'@mui/material';import React,{useState}from'react';import{useTranslation}from'react-i18next';import{jsx as _jsx}from\"react/jsx-runtime\";import{jsxs as _jsxs}from\"react/jsx-runtime\";var PasteDialog=function PasteDialog(_ref){var open=_ref.open,onHandleClose=_ref.onHandleClose,onHandleCommandLine=_ref.onHandleCommandLine;var _useTranslation=useTranslation(),t=_useTranslation.t;var _useState=useState(''),_useState2=_slicedToArray(_useState,2),command=_useState2[0],setCommand=_useState2[1];var handleClose=function handleClose(){onHandleClose();setCommand('');};var parseXinferenceCommand=function parseXinferenceCommand(){var params={};var peftModelConfig={lora_list:[],image_lora_load_kwargs:{},image_lora_fuse_kwargs:{}};var quantizationConfig={};var newcommand=command.replace('xinference launch','').trim();var args=newcommand.match(/--[\\w-]+(?:\\s+(?:\"[^\"]*\"|'[^']*'|(?:[^\\s-][^\\s]*\\s*)+))?/g)||[];var _iterator=_createForOfIteratorHelper(args),_step;try{for(_iterator.s();!(_step=_iterator.n()).done;){var arg=_step.value;var match=arg.trim().match(/^--([\\w-]+)\\s+(?:\"([^\"]+)\"|'([^']+)'|(.+))?$/);if(!match)continue;var key=match[1];var value=match[2]||match[3]||match[4]||'';var normalizedKey=key.replace(/-/g,'_');if(normalizedKey==='gpu_idx'){params[normalizedKey]=value.split(',').map(Number);}else if(normalizedKey==='lora_modules'){var loraPairs=value.split(/\\s+/);for(var i=0;i<loraPairs.length;i+=2){var lora_name=loraPairs[i];var local_path=loraPairs[i+1];if(lora_name&&local_path){peftModelConfig.lora_list.push({lora_name:lora_name,local_path:local_path});}}}else if(normalizedKey==='image_lora_load_kwargs'){var _value$split=value.split(/\\s+/),_value$split2=_slicedToArray(_value$split,2),load_param=_value$split2[0],load_value=_value$split2[1];peftModelConfig.image_lora_load_kwargs[load_param]=load_value;}else if(normalizedKey==='image_lora_fuse_kwargs'){var _value$split3=value.split(/\\s+/),_value$split4=_slicedToArray(_value$split3,2),fuse_param=_value$split4[0],fuse_value=_value$split4[1];peftModelConfig.image_lora_fuse_kwargs[fuse_param]=fuse_value;}else if(normalizedKey==='quantization_config'){var quantizationConfigPairs=value.split(/\\s+/);var k=quantizationConfigPairs[0];var v=quantizationConfigPairs[1];quantizationConfig[k]=v;}else{if(['cpu_offload','reasoning_content'].includes(normalizedKey)){params[normalizedKey]=value==='true'?true:false;}else if(normalizedKey==='size_in_billions'){params['model_size_in_billions']=value;}else{params[normalizedKey]=value;}}}}catch(err){_iterator.e(err);}finally{_iterator.f();}if(peftModelConfig.lora_list.length>0||Object.keys(peftModelConfig.image_lora_load_kwargs).length>0||Object.keys(peftModelConfig.image_lora_fuse_kwargs).length>0){params.peft_model_config=peftModelConfig;}if(quantizationConfig&&Object.keys(quantizationConfig).length>0){params.quantization_config=quantizationConfig;}onHandleCommandLine(params);handleClose();};return/*#__PURE__*/_jsxs(Dialog,{open:open,children:[/*#__PURE__*/_jsx(DialogTitle,{children:t('launchModel.commandLineParsing')}),/*#__PURE__*/_jsx(DialogContent,{children:/*#__PURE__*/_jsx(\"div\",{style:{width:'500px',height:'120px'},children:/*#__PURE__*/_jsx(TextField,{multiline:true,fullWidth:true,rows:5,placeholder:t('launchModel.placeholderTip'),value:command,onChange:function onChange(e){setCommand(e.target.value);}})})}),/*#__PURE__*/_jsxs(DialogActions,{children:[/*#__PURE__*/_jsx(Button,{onClick:handleClose,children:t('launchModel.cancel')}),/*#__PURE__*/_jsx(Button,{autoFocus:true,onClick:parseXinferenceCommand,children:t('launchModel.confirm')})]})]});};export default PasteDialog;","map":{"version":3,"names":["Button","Dialog","DialogActions","DialogContent","DialogTitle","TextField","React","useState","useTranslation","jsx","_jsx","jsxs","_jsxs","PasteDialog","_ref","open","onHandleClose","onHandleCommandLine","_useTranslation","t","_useState","_useState2","_slicedToArray","command","setCommand","handleClose","parseXinferenceCommand","params","peftModelConfig","lora_list","image_lora_load_kwargs","image_lora_fuse_kwargs","quantizationConfig","newcommand","replace","trim","args","match","_iterator","_createForOfIteratorHelper","_step","s","n","done","arg","value","key","normalizedKey","split","map","Number","loraPairs","i","length","lora_name","local_path","push","_value$split","_value$split2","load_param","load_value","_value$split3","_value$split4","fuse_param","fuse_value","quantizationConfigPairs","k","v","includes","err","e","f","Object","keys","peft_model_config","quantization_config","children","style","width","height","multiline","fullWidth","rows","placeholder","onChange","target","onClick","autoFocus"],"sources":["/home/runner/work/inference/inference/xinference/web/ui/src/scenes/launch_model/components/pasteDialog.js"],"sourcesContent":["import {\n Button,\n Dialog,\n DialogActions,\n DialogContent,\n DialogTitle,\n TextField,\n} from '@mui/material'\nimport React, { useState } from 'react'\nimport { useTranslation } from 'react-i18next'\n\nconst PasteDialog = ({ open, onHandleClose, onHandleCommandLine }) => {\n const { t } = useTranslation()\n const [command, setCommand] = useState('')\n\n const handleClose = () => {\n onHandleClose()\n setCommand('')\n }\n\n const parseXinferenceCommand = () => {\n const params = {}\n const peftModelConfig = {\n lora_list: [],\n image_lora_load_kwargs: {},\n image_lora_fuse_kwargs: {},\n }\n const quantizationConfig = {}\n let newcommand = command.replace('xinference launch', '').trim()\n const args =\n newcommand.match(\n /--[\\w-]+(?:\\s+(?:\"[^\"]*\"|'[^']*'|(?:[^\\s-][^\\s]*\\s*)+))?/g\n ) || []\n\n for (const arg of args) {\n const match = arg\n .trim()\n .match(/^--([\\w-]+)\\s+(?:\"([^\"]+)\"|'([^']+)'|(.+))?$/)\n if (!match) continue\n\n const key = match[1]\n const value = match[2] || match[3] || match[4] || ''\n const normalizedKey = key.replace(/-/g, '_')\n\n if (normalizedKey === 'gpu_idx') {\n params[normalizedKey] = value.split(',').map(Number)\n } else if (normalizedKey === 'lora_modules') {\n const loraPairs = value.split(/\\s+/)\n for (let i = 0; i < loraPairs.length; i += 2) {\n const lora_name = loraPairs[i]\n const local_path = loraPairs[i + 1]\n if (lora_name && local_path) {\n peftModelConfig.lora_list.push({ lora_name, local_path })\n }\n }\n } else if (normalizedKey === 'image_lora_load_kwargs') {\n const [load_param, load_value] = value.split(/\\s+/)\n peftModelConfig.image_lora_load_kwargs[load_param] = load_value\n } else if (normalizedKey === 'image_lora_fuse_kwargs') {\n const [fuse_param, fuse_value] = value.split(/\\s+/)\n peftModelConfig.image_lora_fuse_kwargs[fuse_param] = fuse_value\n } else if (normalizedKey === 'quantization_config') {\n const quantizationConfigPairs = value.split(/\\s+/)\n const k = quantizationConfigPairs[0]\n const v = quantizationConfigPairs[1]\n quantizationConfig[k] = v\n } else {\n if (['cpu_offload', 'reasoning_content'].includes(normalizedKey)) {\n params[normalizedKey] = value === 'true' ? true : false\n } else if (normalizedKey === 'size_in_billions') {\n params['model_size_in_billions'] = value\n } else {\n params[normalizedKey] = value\n }\n }\n }\n\n if (\n peftModelConfig.lora_list.length > 0 ||\n Object.keys(peftModelConfig.image_lora_load_kwargs).length > 0 ||\n Object.keys(peftModelConfig.image_lora_fuse_kwargs).length > 0\n ) {\n params.peft_model_config = peftModelConfig\n }\n\n if (quantizationConfig && Object.keys(quantizationConfig).length > 0) {\n params.quantization_config = quantizationConfig\n }\n\n onHandleCommandLine(params)\n handleClose()\n }\n\n return (\n <Dialog open={open}>\n <DialogTitle>{t('launchModel.commandLineParsing')}</DialogTitle>\n <DialogContent>\n <div style={{ width: '500px', height: '120px' }}>\n <TextField\n multiline\n fullWidth\n rows={5}\n placeholder={t('launchModel.placeholderTip')}\n value={command}\n onChange={(e) => {\n setCommand(e.target.value)\n }}\n />\n </div>\n </DialogContent>\n <DialogActions>\n <Button onClick={handleClose}>{t('launchModel.cancel')}</Button>\n <Button autoFocus onClick={parseXinferenceCommand}>\n {t('launchModel.confirm')}\n </Button>\n </DialogActions>\n </Dialog>\n )\n}\n\nexport default PasteDialog\n"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
@@ -0,0 +1 @@
1
+ {"ast":null,"code":"import{useTheme}from'@mui/material';import React,{useEffect}from'react';import{jsx as _jsx}from\"react/jsx-runtime\";import{jsxs as _jsxs}from\"react/jsx-runtime\";var Drawer=function Drawer(_ref){var isOpen=_ref.isOpen,onClose=_ref.onClose,children=_ref.children;var theme=useTheme();useEffect(function(){if(isOpen){document.body.style.overflow='hidden';}else{document.body.style.overflow='';}return function(){document.body.style.overflow='';};},[isOpen]);return/*#__PURE__*/_jsxs(\"div\",{className:\"drawer \".concat(isOpen?'open':''),children:[/*#__PURE__*/_jsx(\"div\",{className:\"drawer-overlay\",onClick:onClose}),/*#__PURE__*/_jsx(\"div\",{className:\"drawer-content\",style:theme.palette.mode==='dark'?{backgroundColor:'#272727'}:{},children:isOpen&&children})]});};export default Drawer;","map":{"version":3,"names":["useTheme","React","useEffect","jsx","_jsx","jsxs","_jsxs","Drawer","_ref","isOpen","onClose","children","theme","document","body","style","overflow","className","concat","onClick","palette","mode","backgroundColor"],"sources":["/home/runner/work/inference/inference/xinference/web/ui/src/scenes/launch_model/components/drawer.js"],"sourcesContent":["import { useTheme } from '@mui/material'\nimport React, { useEffect } from 'react'\n\nconst Drawer = ({ isOpen, onClose, children }) => {\n const theme = useTheme()\n\n useEffect(() => {\n if (isOpen) {\n document.body.style.overflow = 'hidden'\n } else {\n document.body.style.overflow = ''\n }\n\n return () => {\n document.body.style.overflow = ''\n }\n }, [isOpen])\n\n return (\n <div className={`drawer ${isOpen ? 'open' : ''}`}>\n <div className=\"drawer-overlay\" onClick={onClose}></div>\n <div\n className=\"drawer-content\"\n style={\n theme.palette.mode === 'dark' ? { backgroundColor: '#272727' } : {}\n }\n >\n {isOpen && children}\n </div>\n </div>\n )\n}\n\nexport default Drawer\n"],"mappings":"AAAA,OAASA,QAAQ,KAAQ,eAAe,CACxC,MAAO,CAAAC,KAAK,EAAIC,SAAS,KAAQ,OAAO,QAAAC,GAAA,IAAAC,IAAA,gCAAAC,IAAA,IAAAC,KAAA,yBAExC,GAAM,CAAAC,MAAM,CAAG,QAAT,CAAAA,MAAMA,CAAAC,IAAA,CAAsC,IAAhC,CAAAC,MAAM,CAAAD,IAAA,CAANC,MAAM,CAAEC,OAAO,CAAAF,IAAA,CAAPE,OAAO,CAAEC,QAAQ,CAAAH,IAAA,CAARG,QAAQ,CACzC,GAAM,CAAAC,KAAK,CAAGZ,QAAQ,CAAC,CAAC,CAExBE,SAAS,CAAC,UAAM,CACd,GAAIO,MAAM,CAAE,CACVI,QAAQ,CAACC,IAAI,CAACC,KAAK,CAACC,QAAQ,CAAG,QAAQ,CACzC,CAAC,IAAM,CACLH,QAAQ,CAACC,IAAI,CAACC,KAAK,CAACC,QAAQ,CAAG,EAAE,CACnC,CAEA,MAAO,WAAM,CACXH,QAAQ,CAACC,IAAI,CAACC,KAAK,CAACC,QAAQ,CAAG,EAAE,CACnC,CAAC,CACH,CAAC,CAAE,CAACP,MAAM,CAAC,CAAC,CAEZ,mBACEH,KAAA,QAAKW,SAAS,WAAAC,MAAA,CAAYT,MAAM,CAAG,MAAM,CAAG,EAAE,CAAG,CAAAE,QAAA,eAC/CP,IAAA,QAAKa,SAAS,CAAC,gBAAgB,CAACE,OAAO,CAAET,OAAQ,CAAM,CAAC,cACxDN,IAAA,QACEa,SAAS,CAAC,gBAAgB,CAC1BF,KAAK,CACHH,KAAK,CAACQ,OAAO,CAACC,IAAI,GAAK,MAAM,CAAG,CAAEC,eAAe,CAAE,SAAU,CAAC,CAAG,CAAC,CACnE,CAAAX,QAAA,CAEAF,MAAM,EAAIE,QAAQ,CAChB,CAAC,EACH,CAAC,CAEV,CAAC,CAED,cAAe,CAAAJ,MAAM","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
@@ -0,0 +1 @@
1
+ {"ast":null,"code":"import LinearProgress from'@mui/material/LinearProgress';import React from'react';import{jsx as _jsx}from\"react/jsx-runtime\";var Progress=function Progress(_ref){var progress=_ref.progress;return/*#__PURE__*/_jsx(\"div\",{style:{marginBottom:10},children:/*#__PURE__*/_jsx(LinearProgress,{variant:\"determinate\",value:progress*100})});};export default Progress;","map":{"version":3,"names":["LinearProgress","React","jsx","_jsx","Progress","_ref","progress","style","marginBottom","children","variant","value"],"sources":["/home/runner/work/inference/inference/xinference/web/ui/src/scenes/launch_model/components/progress.js"],"sourcesContent":["import LinearProgress from '@mui/material/LinearProgress'\nimport React from 'react'\n\nconst Progress = ({ progress }) => {\n return (\n <div style={{ marginBottom: 10 }}>\n <LinearProgress variant=\"determinate\" value={progress * 100} />\n </div>\n )\n}\n\nexport default Progress\n"],"mappings":"AAAA,MAAO,CAAAA,cAAc,KAAM,8BAA8B,CACzD,MAAO,CAAAC,KAAK,KAAM,OAAO,QAAAC,GAAA,IAAAC,IAAA,yBAEzB,GAAM,CAAAC,QAAQ,CAAG,QAAX,CAAAA,QAAQA,CAAAC,IAAA,CAAqB,IAAf,CAAAC,QAAQ,CAAAD,IAAA,CAARC,QAAQ,CAC1B,mBACEH,IAAA,QAAKI,KAAK,CAAE,CAAEC,YAAY,CAAE,EAAG,CAAE,CAAAC,QAAA,cAC/BN,IAAA,CAACH,cAAc,EAACU,OAAO,CAAC,aAAa,CAACC,KAAK,CAAEL,QAAQ,CAAG,GAAI,CAAE,CAAC,CAC5D,CAAC,CAEV,CAAC,CAED,cAAe,CAAAF,QAAQ","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
@@ -0,0 +1 @@
1
+ {"ast":null,"code":"import _toConsumableArray from\"/home/runner/work/inference/inference/xinference/web/ui/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js\";import _slicedToArray from\"/home/runner/work/inference/inference/xinference/web/ui/node_modules/@babel/runtime/helpers/esm/slicedToArray.js\";import FilterNoneIcon from'@mui/icons-material/FilterNone';import{Alert,Snackbar,Tooltip}from'@mui/material';import ClipboardJS from'clipboard';import React,{useEffect,useRef,useState}from'react';import{useTranslation}from'react-i18next';import{jsx as _jsx}from\"react/jsx-runtime\";import{jsxs as _jsxs}from\"react/jsx-runtime\";function CopyComponent(_ref){var modelData=_ref.modelData,predefinedKeys=_ref.predefinedKeys;var _useTranslation=useTranslation(),t=_useTranslation.t;var _useState=useState(false),_useState2=_slicedToArray(_useState,2),isCopySuccess=_useState2[0],setIsCopySuccess=_useState2[1];var copyRef=useRef(null);var generateCommandLineStatement=function generateCommandLineStatement(params){var args=Object.entries(params).filter(function(_ref2){var _ref3=_slicedToArray(_ref2,2),key=_ref3[0],value=_ref3[1];return predefinedKeys.includes(key)&&value!==null&&value!==undefined||!predefinedKeys.includes(key);}).map(function(_ref4){var _ref5=_slicedToArray(_ref4,2),key=_ref5[0],value=_ref5[1];if(key==='gpu_idx'&&Array.isArray(value)){return\"--gpu-idx \".concat(value.join(','));}else if(key==='peft_model_config'&&typeof value==='object'){var peftArgs=[];if(value.lora_list){peftArgs.push.apply(peftArgs,_toConsumableArray(value.lora_list.map(function(lora){return\"--lora-modules \".concat(lora.lora_name,\" \").concat(lora.local_path);})));}if(value.image_lora_load_kwargs){peftArgs.push.apply(peftArgs,_toConsumableArray(Object.entries(value.image_lora_load_kwargs).map(function(_ref6){var _ref7=_slicedToArray(_ref6,2),k=_ref7[0],v=_ref7[1];return\"--image-lora-load-kwargs \".concat(k,\" \").concat(v);})));}if(value.image_lora_fuse_kwargs){peftArgs.push.apply(peftArgs,_toConsumableArray(Object.entries(value.image_lora_fuse_kwargs).map(function(_ref8){var _ref9=_slicedToArray(_ref8,2),k=_ref9[0],v=_ref9[1];return\"--image-lora-fuse-kwargs \".concat(k,\" \").concat(v);})));}return peftArgs.join(' ');}else if(key==='quantization_config'&&typeof value==='object'){var _peftArgs=[];_peftArgs.push.apply(_peftArgs,_toConsumableArray(Object.entries(value).map(function(_ref10){var _ref11=_slicedToArray(_ref10,2),k=_ref11[0],v=_ref11[1];return\"--quantization-config \".concat(k,\" \").concat(v===null?'none':v);})));return _peftArgs.join(' ');}else if(predefinedKeys.includes(key)){var newKey;if(key==='model_size_in_billions'){newKey='--size-in-billions';}else{newKey=\"--\".concat(key.replace(/_/g,'-'));}return\"\".concat(newKey,\" \").concat(value===false?'false':value===null?'none':value);}else{return\"--\".concat(key,\" \").concat(value===false?'false':value===null?'none':value);}}).join(' ');return\"xinference launch \".concat(args);};useEffect(function(){var _text=generateCommandLineStatement(modelData);var clipboard=new ClipboardJS(copyRef.current,{text:function text(){return _text;}});clipboard.on('success',function(e){e.clearSelection();setIsCopySuccess(true);});var handleClick=function handleClick(event){event.stopPropagation();copyRef.current.focus();};var copy=copyRef.current;copy.addEventListener('click',handleClick);return function(){clipboard.destroy();copy.removeEventListener('click',handleClick);};},[modelData]);return/*#__PURE__*/_jsxs(\"div\",{style:{marginInline:'10px',lineHeight:'14px'},children:[/*#__PURE__*/_jsx(Tooltip,{title:t('launchModel.copyToCommandLine'),placement:\"top\",children:/*#__PURE__*/_jsx(\"div\",{ref:copyRef,children:/*#__PURE__*/_jsx(FilterNoneIcon,{className:\"copyToCommandLine\"})})}),/*#__PURE__*/_jsx(Snackbar,{anchorOrigin:{vertical:'top',horizontal:'center'},open:isCopySuccess,autoHideDuration:1500,onClose:function onClose(){return setIsCopySuccess(false);},children:/*#__PURE__*/_jsx(Alert,{severity:\"success\",variant:\"filled\",sx:{width:'100%'},children:t('components.copySuccess')})})]});}export default CopyComponent;","map":{"version":3,"names":["FilterNoneIcon","Alert","Snackbar","Tooltip","ClipboardJS","React","useEffect","useRef","useState","useTranslation","jsx","_jsx","jsxs","_jsxs","CopyComponent","_ref","modelData","predefinedKeys","_useTranslation","t","_useState","_useState2","_slicedToArray","isCopySuccess","setIsCopySuccess","copyRef","generateCommandLineStatement","params","args","Object","entries","filter","_ref2","_ref3","key","value","includes","undefined","map","_ref4","_ref5","Array","isArray","concat","join","peftArgs","lora_list","push","apply","_toConsumableArray","lora","lora_name","local_path","image_lora_load_kwargs","_ref6","_ref7","k","v","image_lora_fuse_kwargs","_ref8","_ref9","_ref10","_ref11","newKey","replace","text","clipboard","current","on","e","clearSelection","handleClick","event","stopPropagation","focus","copy","addEventListener","destroy","removeEventListener","style","marginInline","lineHeight","children","title","placement","ref","className","anchorOrigin","vertical","horizontal","open","autoHideDuration","onClose","severity","variant","sx","width"],"sources":["/home/runner/work/inference/inference/xinference/web/ui/src/scenes/launch_model/components/copyComponent.js"],"sourcesContent":["import FilterNoneIcon from '@mui/icons-material/FilterNone'\nimport { Alert, Snackbar, Tooltip } from '@mui/material'\nimport ClipboardJS from 'clipboard'\nimport React, { useEffect, useRef, useState } from 'react'\nimport { useTranslation } from 'react-i18next'\n\nfunction CopyComponent({ modelData, predefinedKeys }) {\n const { t } = useTranslation()\n const [isCopySuccess, setIsCopySuccess] = useState(false)\n const copyRef = useRef(null)\n\n const generateCommandLineStatement = (params) => {\n const args = Object.entries(params)\n .filter(\n ([key, value]) =>\n (predefinedKeys.includes(key) &&\n value !== null &&\n value !== undefined) ||\n !predefinedKeys.includes(key)\n )\n .map(([key, value]) => {\n if (key === 'gpu_idx' && Array.isArray(value)) {\n return `--gpu-idx ${value.join(',')}`\n } else if (key === 'peft_model_config' && typeof value === 'object') {\n let peftArgs = []\n if (value.lora_list) {\n peftArgs.push(\n ...value.lora_list.map(\n (lora) => `--lora-modules ${lora.lora_name} ${lora.local_path}`\n )\n )\n }\n if (value.image_lora_load_kwargs) {\n peftArgs.push(\n ...Object.entries(value.image_lora_load_kwargs).map(\n ([k, v]) => `--image-lora-load-kwargs ${k} ${v}`\n )\n )\n }\n if (value.image_lora_fuse_kwargs) {\n peftArgs.push(\n ...Object.entries(value.image_lora_fuse_kwargs).map(\n ([k, v]) => `--image-lora-fuse-kwargs ${k} ${v}`\n )\n )\n }\n return peftArgs.join(' ')\n } else if (key === 'quantization_config' && typeof value === 'object') {\n let peftArgs = []\n peftArgs.push(\n ...Object.entries(value).map(\n ([k, v]) =>\n `--quantization-config ${k} ${v === null ? 'none' : v}`\n )\n )\n return peftArgs.join(' ')\n } else if (predefinedKeys.includes(key)) {\n let newKey\n if (key === 'model_size_in_billions') {\n newKey = '--size-in-billions'\n } else {\n newKey = `--${key.replace(/_/g, '-')}`\n }\n return `${newKey} ${\n value === false ? 'false' : value === null ? 'none' : value\n }`\n } else {\n return `--${key} ${\n value === false ? 'false' : value === null ? 'none' : value\n }`\n }\n })\n .join(' ')\n\n return `xinference launch ${args}`\n }\n\n useEffect(() => {\n const text = generateCommandLineStatement(modelData)\n const clipboard = new ClipboardJS(copyRef.current, {\n text: () => text,\n })\n\n clipboard.on('success', (e) => {\n e.clearSelection()\n setIsCopySuccess(true)\n })\n\n const handleClick = (event) => {\n event.stopPropagation()\n copyRef.current.focus()\n }\n\n const copy = copyRef.current\n copy.addEventListener('click', handleClick)\n\n return () => {\n clipboard.destroy()\n copy.removeEventListener('click', handleClick)\n }\n }, [modelData])\n\n return (\n <div style={{ marginInline: '10px', lineHeight: '14px' }}>\n <Tooltip title={t('launchModel.copyToCommandLine')} placement=\"top\">\n <div ref={copyRef}>\n <FilterNoneIcon className=\"copyToCommandLine\" />\n </div>\n </Tooltip>\n <Snackbar\n anchorOrigin={{ vertical: 'top', horizontal: 'center' }}\n open={isCopySuccess}\n autoHideDuration={1500}\n onClose={() => setIsCopySuccess(false)}\n >\n <Alert severity=\"success\" variant=\"filled\" sx={{ width: '100%' }}>\n {t('components.copySuccess')}\n </Alert>\n </Snackbar>\n </div>\n )\n}\n\nexport default CopyComponent\n"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
@@ -73,6 +73,7 @@
73
73
  "CPUOffload.tip": "Unload the model to the CPU. Recommend to enable this when resources are limited or when using the GGUF option.",
74
74
  "loraConfig": "Lora Config",
75
75
  "loraModelConfig": "Lora Model Config",
76
+ "additionalQuantizationParametersForInferenceEngine": "Additional quantization parameters passed to the inference engine",
76
77
  "additionalParametersForInferenceEngine": "Additional parameters passed to the inference engine",
77
78
  "enterIntegerGreaterThanZero": "Please enter an integer greater than 0.",
78
79
  "enterCommaSeparatedNumbers": "Please enter numeric data separated by commas, for example: 0,1,2",
@@ -73,6 +73,7 @@
73
73
  "CPUOffload.tip": "将模型卸载到CPU。当资源有限或使用GGUF选项时,建议启用此功能。",
74
74
  "loraConfig": "Lora 配置",
75
75
  "loraModelConfig": "Lora 模型配置",
76
+ "additionalQuantizationParametersForInferenceEngine": "传递给推理引擎的量化参数",
76
77
  "additionalParametersForInferenceEngine": "传递给推理引擎的附加参数",
77
78
  "enterIntegerGreaterThanZero": "请输入大于 0 的整数。",
78
79
  "enterCommaSeparatedNumbers": "请输入以逗号分隔的数字数据,例如:0,1,2",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xinference
3
- Version: 1.5.0.post1
3
+ Version: 1.5.1
4
4
  Summary: Model Serving Made Easy
5
5
  Home-page: https://github.com/xorbitsai/inference
6
6
  Author: Qin Xuye
@@ -1,15 +1,15 @@
1
1
  xinference/__init__.py,sha256=nmTTrYbIpj964ZF6ojtgOM7E85JBOj1EyQbmYjbj1jw,915
2
2
  xinference/_compat.py,sha256=YF-lS6tX06zkFi2oFS0yq_LBn4hX_8u0Ft0vKxGALwA,4238
3
- xinference/_version.py,sha256=kH-zuUjm8RFim21mUz4V4oSx0QxYz1Z5ZHgSqvbgrEE,503
3
+ xinference/_version.py,sha256=-Vg5x8hUae0FYgerC97m3LJU-VCDL1K7Ak-0ryeYsB4,497
4
4
  xinference/conftest.py,sha256=ZB7li77s4_H4ZEQpDo2PX-b4zrs8-bIpvh59P_CaSoo,9691
5
- xinference/constants.py,sha256=tKdiCDPK1ilx-2fg-w_wf8OqTmwzfYOsg8MtqzXxT6I,4125
5
+ xinference/constants.py,sha256=-QqMRJo1MvTgnLmRZLF3DVj3PMXUzg1rV-XIsuN_nGI,4319
6
6
  xinference/device_utils.py,sha256=ELsqvnjvz9wYthTyQFzKSV4mZsaASz6hj_IsfMmfMWc,4447
7
7
  xinference/fields.py,sha256=0UtBFaDNzn1n9MRjyTkNrolsIML-TpZfudWOejqjni8,5245
8
8
  xinference/isolation.py,sha256=gTU1em5fxg1m-7hxieWBMZvVkXZX4GZYmeT7XxXsYrU,2699
9
- xinference/types.py,sha256=C2sWumkGaof_rDIE-_P7Jgaua-RpWV5TvgGy6OL6SPo,13533
9
+ xinference/types.py,sha256=8WeTlh724f36jopIf3HqzzofINxDCRrnvxNtKePP13g,13639
10
10
  xinference/utils.py,sha256=xMuOg3LZhTUf7inEhm-HmXCIoly0pHaWtMKMnnf8XGk,2273
11
11
  xinference/api/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
12
- xinference/api/restful_api.py,sha256=tfplJVY9hhkN_ZP8PlEyGvPkFoOX1iNdnDGFOGWKh4c,94888
12
+ xinference/api/restful_api.py,sha256=GKQUlN2q1O_sQgDErIR1fMk1klZ_ddjAqaGniXptkeE,95160
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
@@ -30,11 +30,11 @@ xinference/core/progress_tracker.py,sha256=CNCc1ZVscvp-JJznPTYJDPuis7ya6ZothZUIa
30
30
  xinference/core/resource.py,sha256=aTV89dmuKxw5JnwQglRkA2Wxu1EBLM5WjmLxITSXYgs,1808
31
31
  xinference/core/scheduler.py,sha256=0rbbaVYQ4g2W8P3tbbHonmFjFkllmoPB3OtkVPr5crA,15650
32
32
  xinference/core/status_guard.py,sha256=VLhyqpobdclfyzcROqf4bmGDiKpuHllto316X3Z6Hrc,2860
33
- xinference/core/supervisor.py,sha256=NrJEPGZhQWBkGkUdnng4-A1A01qS7MU7qS5BaBs6gVs,71454
34
- xinference/core/utils.py,sha256=TpUHNFcA4pEXq084Quz-ilIccuDMUAsdLrEJxj0Zn6I,10414
35
- xinference/core/worker.py,sha256=2SLMDDFtSST2IZl8fOlitZ1toXoyrzHJO4hOkaSDzEc,61874
33
+ xinference/core/supervisor.py,sha256=uEmVyYFMCpec6MDNnEf3J3aWDqA2BYI1yOxnCuwRn_w,71711
34
+ xinference/core/utils.py,sha256=VgcvxpTr2Q8am3MoHp7JPjC7jLYlKX2kLVdBo2Q_fRo,10430
35
+ xinference/core/worker.py,sha256=gvl9mJyuoIhyakAZDWs81wJxUfVV8F9cX9uG9LmSY4s,61874
36
36
  xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
37
- xinference/deploy/cmdline.py,sha256=Zn43Hl2tdQ5ac-PSO2hVodZSZOkCH2aLdlHy4B5Ptaw,50466
37
+ xinference/deploy/cmdline.py,sha256=zUyfEwCpcyWpE3xHgfq-QAuO3YBZm1zM1Vrp9CqOM3A,50968
38
38
  xinference/deploy/local.py,sha256=sO3BcpEH9oCF87CxWVA4AXAYcfHGnrcop40ew5NOA2g,3979
39
39
  xinference/deploy/supervisor.py,sha256=68rB2Ey5KFeF6zto9YGbw3P8QLZmF_KSh1NwH_pNP4w,2986
40
40
  xinference/deploy/utils.py,sha256=jdL7i2WV6u_BZ8IiE1d3YktvCARcB3ntzMQ5rHGD5DM,6756
@@ -46,7 +46,7 @@ xinference/model/core.py,sha256=FKiT0D2-FGbxLtaf4C01Yrn8t3n6AYHXGY9WowycxZc,5057
46
46
  xinference/model/utils.py,sha256=xsu1TIj2ATyA1h2okEl2rdtdjytFsFCDnwLgPdd_KjQ,14947
47
47
  xinference/model/audio/__init__.py,sha256=KasWsaNPeij6sGpHKqXaUc_bxUw1yYbD7-fwxkcoAVE,3731
48
48
  xinference/model/audio/chattts.py,sha256=ny3DZTCTt2MzdkLw994_QHZ_4qIEUZcNexNJkCejCyo,4998
49
- xinference/model/audio/core.py,sha256=CSpzGdThG5Ic5qJgR9DOFD-T1QGU8HBNJITJSVPBDT0,8041
49
+ xinference/model/audio/core.py,sha256=yXv4ftVY0Q-ysGG7_7oxAXiizOy8Sg9K0ASS7v1u7_8,8047
50
50
  xinference/model/audio/cosyvoice.py,sha256=vw7OR2t7zNimQn3Q74iiL1-2en5o6gvdcZsDgkmYpy4,7796
51
51
  xinference/model/audio/custom.py,sha256=8GXBRmTtR-GY03-E91nlRGTIuabCRzlt20ecU6Un6Y8,4985
52
52
  xinference/model/audio/f5tts.py,sha256=RyfEYVvKhV7JygIv4F45C8wBr-u0mx9WpXj3gIOtL7o,6809
@@ -56,8 +56,8 @@ xinference/model/audio/funasr.py,sha256=65z7U7_F14CCP-jg6BpeY3_49FK7Y5OCRSzrhhsk
56
56
  xinference/model/audio/kokoro.py,sha256=7gqMqsW9NW3xm9zOXbqB4y_1UmMnI5JCub14K3iyLL4,3729
57
57
  xinference/model/audio/megatts.py,sha256=fA2_vbEZ1ggIh2xSGacnyp72Kn2TyQGfjxFlO_w-oGw,3369
58
58
  xinference/model/audio/melotts.py,sha256=lJdOsce2mMOTQIslv6xq1JTEO7vC6Q9ga2xjY-_E7uw,3493
59
- xinference/model/audio/model_spec.json,sha256=vYxBd1ZQ6eanRMEFcKn0bUXo_dyxxhXHiYKZejrk8Ao,11126
60
- xinference/model/audio/model_spec_modelscope.json,sha256=gc5o9kMLmo5vEeP7A1DXwvMoOclS5I2M7S7QP8UyBr0,3706
59
+ xinference/model/audio/model_spec.json,sha256=tgKvbG4FaEslHYUFe8Sgb_8ro3COZuWLN_C4S1A0a-U,11083
60
+ xinference/model/audio/model_spec_modelscope.json,sha256=-ypcw_TqwZ4ShnXbexcTn1viLovCbmVOT2QwQumDqdU,3693
61
61
  xinference/model/audio/utils.py,sha256=fnnQfZlhH6DRw6beXPUIO28u6qu2GgCONrWDIsTCNkw,1591
62
62
  xinference/model/audio/whisper.py,sha256=NePQOYy2CnVqi7g6uY9hq5tlUIxZ995FOIOPsPZCfJ8,9058
63
63
  xinference/model/audio/whisper_mlx.py,sha256=zBuCd7GUlsN9FC_-J11gqIkOCicihfbqxoabiXTvH2Q,7237
@@ -87,67 +87,66 @@ xinference/model/image/scheduler/flux.py,sha256=GHlpPfU5UxsiQWNyvNe9SaVZceNg_2Ci
87
87
  xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
88
88
  xinference/model/image/stable_diffusion/core.py,sha256=V3BaASwx8q1YERb4jhhaYEDFiwh3BuPAz8pVZTuktAQ,24717
89
89
  xinference/model/image/stable_diffusion/mlx.py,sha256=GZsozzGB04NfHAdU9MI6gwWE1t_A-s_Ddn_ic8DlkKQ,7476
90
- xinference/model/llm/__init__.py,sha256=zcxTHIT0Fn-KJOpfTH6PXIqGBvuQInyPmxf1Su5_uL8,14281
91
- xinference/model/llm/core.py,sha256=nQ6j-VH9hVypDbrbv84tpZUp9IRM-gGYbCbTYvznEoQ,8740
92
- xinference/model/llm/llm_family.json,sha256=z1BnVqqu-YUFwUqWwO6uhNL88M50vLsLCceL0Nue3XI,402947
93
- xinference/model/llm/llm_family.py,sha256=WXSqCY14TM38HujFU7bhPPGDZ47JRgqPvmFr_bG42Tk,39894
94
- xinference/model/llm/llm_family_csghub.json,sha256=zMKWbihsxQNVB1u5iKJbZUkbOfQ4IPNq1KQ-8IDPQQA,8759
95
- xinference/model/llm/llm_family_modelscope.json,sha256=_l9Is2WQY1iR9F-BJz6x4KnpNmQAZPptVhDJsa0gSnQ,336562
96
- xinference/model/llm/llm_family_openmind_hub.json,sha256=jl9pfbe5DztoxgEwKBxDk1Wd7TziTiJ48_Ie_lJdYjA,67872
90
+ xinference/model/llm/__init__.py,sha256=M3IG-PSl9lGSu2FjCXa8mef62HlLCalyEInZHq8idTk,14192
91
+ xinference/model/llm/core.py,sha256=bXBpunUfnHaLEq4oUG2bI5mtvIjzA2t_aDRVVd2NrZE,9121
92
+ xinference/model/llm/llm_family.json,sha256=nSCgX1-f8rQA2FXmAIPt_4K9PFOYc2y7LLBeqq83qx4,377496
93
+ xinference/model/llm/llm_family.py,sha256=woVDD2vEoGpyGOC9Ptm6qjh8RKT698ccwkcmgFlgUgs,42029
94
+ xinference/model/llm/llm_family_csghub.json,sha256=OYve65CgLVHdyTC3UMe7vqhFwC09OR7XhzDsVEpkJhY,6908
95
+ xinference/model/llm/llm_family_modelscope.json,sha256=w1hOBmF-O7bRARRFlEzl3QG8tqI7MTzeaoDZ58SWgtc,323673
96
+ xinference/model/llm/llm_family_openmind_hub.json,sha256=siUXCbVjhh781Vdd7iTPpnobz61NOTiG01WLvx6eZ34,59604
97
97
  xinference/model/llm/memory.py,sha256=GLNmXBI-AtMbuaJfEf50fnhN4rdbOZjLyT6L_Vjqa5g,10206
98
98
  xinference/model/llm/reasoning_parser.py,sha256=Vms1G8I_ujakATjMxBbnWt0e-Zuky86HBqu05T1KiCU,6386
99
- xinference/model/llm/utils.py,sha256=XCpb-HmfUScecBDMII6xe4ZCy12X9-oymc6uLXLrEqM,34132
99
+ xinference/model/llm/utils.py,sha256=atHK86axQ2bjS0lvzqWPdh-hWJ4XQgkC9CqMN16CvGo,35151
100
100
  xinference/model/llm/llama_cpp/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
101
- xinference/model/llm/llama_cpp/core.py,sha256=GiFP47xCJc2saNoTJXcIGaG3jvN5gQzuvDz77fHNo5I,23596
101
+ xinference/model/llm/llama_cpp/core.py,sha256=OLBZ7qFTiuMBb5a_Q1CJBgCmYyKxBaJRlUFCcPheTFc,23975
102
102
  xinference/model/llm/lmdeploy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
- xinference/model/llm/lmdeploy/core.py,sha256=WvSP3x6t-HBv6hKh1qWZatFAzlcZCyyKqvc3ua8yPTI,19835
103
+ xinference/model/llm/lmdeploy/core.py,sha256=sLYhIzmIFv7IdPh2Ft8cC2_jCdJMQ2bBAzPpktDB3bA,19981
104
104
  xinference/model/llm/mlx/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
105
- xinference/model/llm/mlx/core.py,sha256=D4dvRLRbHhdGe-sQ-x25APy11y-ZxQtLLsIZKB1qpyI,24144
105
+ xinference/model/llm/mlx/core.py,sha256=xU3wyEI1ETKsNjZiB1TGUqLsqM-8mcAeuULr3eKfbWc,24653
106
106
  xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
107
- xinference/model/llm/sglang/core.py,sha256=NuwUIz-u3F6LRcB_DIn173jRbzJG8L-0E8ROqxEQoPM,24152
107
+ xinference/model/llm/sglang/core.py,sha256=mliNXGFDEarSff3TA2xIjSY_3T6dCo-dOLDCd6zv0ok,24794
108
108
  xinference/model/llm/transformers/__init__.py,sha256=RZKVW6N_S6XlFEFN0Krf_QcGkTUAj-k3-FXKC7aKDu0,1103
109
- xinference/model/llm/transformers/chatglm.py,sha256=pIBPhR4cpeOR6ok5dKPK1633M1RMHCzrxB2fpDRaCuY,22426
110
- xinference/model/llm/transformers/cogagent.py,sha256=JbIiqVW-S9MA3d4CN2DlI7-WDB_nuCbX8JSypR5TmVU,10080
111
- xinference/model/llm/transformers/cogvlm2.py,sha256=I5Ftm0VYjbTAv5ZARZCo32Ggpw58PJfHs5B_nX_BIlU,15972
112
- xinference/model/llm/transformers/cogvlm2_video.py,sha256=ZGkpC4x2uEtjwoMrLSODmAUYTjOeSNYxZi9VpQrpnhU,11857
113
- xinference/model/llm/transformers/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
114
- xinference/model/llm/transformers/core.py,sha256=YAFCKo0n8YrPmHL2Bi8JI8MB3_0sDCFGd-mXnrVjOXg,29805
115
- xinference/model/llm/transformers/deepseek_v2.py,sha256=-RKlI3mhja730md4evQ2vfIxBnZD5vWyrgmg_3eovms,4096
116
- xinference/model/llm/transformers/deepseek_vl.py,sha256=efbuqo5hKPZOVdiWkl2DXPd0Ml9bIAatcJNFVOeZSjQ,10453
117
- xinference/model/llm/transformers/deepseek_vl2.py,sha256=2rgHBH9P_N0pMe17SeC7Ga_OATNYhdnZ64-VLNpRfWI,10990
118
- xinference/model/llm/transformers/gemma3.py,sha256=qemxbr_QHNhcSfqrJbdSepbhtuBLDLsoyPPQPoD6JsA,6803
119
- xinference/model/llm/transformers/glm4v.py,sha256=goph2HhpV8gUm2t8-T1P-jTF2r_kPeH6QNe64lmlm0g,13871
120
- xinference/model/llm/transformers/glm_edge_v.py,sha256=sedHB4iRd37UC__1MeXs33NLMQQKFYBIFf3A71rMEZU,8159
121
- xinference/model/llm/transformers/intern_vl.py,sha256=hPykgXAP9fkogjCA3DPEVqHTCDV_357YM8OZ76sq698,19216
122
- xinference/model/llm/transformers/internlm2.py,sha256=3mjRgqU0RgCFF0F46ieVH0NO2JCKGsQkmkoVlWJrh8E,3221
123
- xinference/model/llm/transformers/minicpmv25.py,sha256=mr80-OlSlK_opSuAO3cz_QlkqujLr6V-OsTP0ebwpE8,6814
124
- xinference/model/llm/transformers/minicpmv26.py,sha256=t9y5H83H2iu5RgVg4yAarwvyDjuvZJs80uE44ZoonTo,14130
125
- xinference/model/llm/transformers/omnilmm.py,sha256=2ZLW979ETqDDKo9CaTNwi9uLBZ2d6itHAYqjUA4jdro,5172
126
- xinference/model/llm/transformers/opt.py,sha256=dkZFNwtw_sUuVaz9He6LWfEojRGfOQFQ5atvC5OYPuY,2429
127
- xinference/model/llm/transformers/qwen-omni.py,sha256=y-mS1ubwHXo5v2mCs3P7D9P_vLcskzJut_o_KD0cvI4,10252
128
- xinference/model/llm/transformers/qwen2_audio.py,sha256=e0uU5HFPesb1sszDJcG0WRd-v9GfJF7AbK7w847oYbg,6278
129
- xinference/model/llm/transformers/qwen2_vl.py,sha256=DbSQGhay0uRFAZgEDDLwa4fBYCKl04NBAmhVezQxJmY,9269
130
- xinference/model/llm/transformers/qwen_vl.py,sha256=LG19qJW30bFiZOS-t9OM3JP6K1KCLj_Sv3nKSCLvyts,14058
109
+ xinference/model/llm/transformers/chatglm.py,sha256=lrk7VaHRMHFyk7-ZhOQx1TACtdc-CYL1IvvdbW_Y2Kc,22723
110
+ xinference/model/llm/transformers/cogagent.py,sha256=tycThGh1NbbUqzXj-HxR8iLzeOhlmHOsvFBoI85_AaY,9971
111
+ xinference/model/llm/transformers/cogvlm2.py,sha256=MOh1reF2ni-KGFAtEdWeNBH4EtNqTBFEf2t4nlTlbm8,16052
112
+ xinference/model/llm/transformers/cogvlm2_video.py,sha256=2lnKlJSMnGzyexbAgy759Yoav1b628TMZqykgsHI54Q,11715
113
+ xinference/model/llm/transformers/core.py,sha256=7FjnFBxzE_edyGdKk1rDua7piL-8orveVllew27FtVc,29358
114
+ xinference/model/llm/transformers/deepseek_v2.py,sha256=8N4sFDBe19i2sWhS-4EJm1s-QGcHJN7Uh9-p8ftMU_I,4150
115
+ xinference/model/llm/transformers/deepseek_vl.py,sha256=IrmAueiFJB7-hhuOwqJKbm2aqWXDjo4fQ8uhEQCePrY,10579
116
+ xinference/model/llm/transformers/deepseek_vl2.py,sha256=eRN8hJoOD-M9sRvi-BgH7kU28OTsbCeuwRSW-2dThmU,11062
117
+ xinference/model/llm/transformers/gemma3.py,sha256=sYQSJNA8OEv7jX6tuBd11Rputz3nuP_xxeolQwCAEjI,7159
118
+ xinference/model/llm/transformers/glm4v.py,sha256=ByekPX7Z4aseUn8tbcExRtMNcKCXgBLKlf5kFrBA_p8,13118
119
+ xinference/model/llm/transformers/glm_edge_v.py,sha256=qpLihGAzAONL15LRS2-NDyrttiUF0hhTaKNNOfqPGuU,7427
120
+ xinference/model/llm/transformers/intern_vl.py,sha256=YaOQBXkc8MoE2sr8c5pSmp1LD8ZrsiXJiwoGOXrQxdA,19080
121
+ xinference/model/llm/transformers/internlm2.py,sha256=pkL32jkATCVvsH8wwsIb4LUdgqOnBwX35UsukBETkPQ,3226
122
+ xinference/model/llm/transformers/minicpmv25.py,sha256=WssG5N4VZqoLD18Po6_d5JFqTaPUztm_zwppIntIyy8,6885
123
+ xinference/model/llm/transformers/minicpmv26.py,sha256=_P7ObAz0WtOzCp9vTZWNmWpk3AYLUz6g-jT1mEj6Rpk,14218
124
+ xinference/model/llm/transformers/omnilmm.py,sha256=3JthdEbvJuZCJXdVexDAkDlEmU72Gv0dVznh14K-dWk,5177
125
+ xinference/model/llm/transformers/opt.py,sha256=RLmKlhkHORPcNqAdlh8Snf_3bZAan9FUz39Id6SUsdI,2434
126
+ xinference/model/llm/transformers/ovis2.py,sha256=Da_8u0Hv-2TywPYmXrxLI55N0tKie6xPAY_wAVXX3W8,10811
127
+ xinference/model/llm/transformers/qwen-omni.py,sha256=m17KxHfKJ1hnf_ql36ZYU6RxtvCXPWyaEso6eZMnkpw,10310
128
+ xinference/model/llm/transformers/qwen2_audio.py,sha256=3fjgDIgTw4-CuA0GKNoRnPArdMxW1YNxaTmSPYmv0_Y,6352
129
+ xinference/model/llm/transformers/qwen2_vl.py,sha256=xbbRoVHPCqcjghVh7TS0BVCwaDUId-kkypJJkj6Z-Hk,9378
130
+ xinference/model/llm/transformers/qwen_vl.py,sha256=U38vdC_3c73vm6-0GA51IUAUMiHCFQY9u4oRekWa-e8,14149
131
131
  xinference/model/llm/transformers/tensorizer_utils.py,sha256=VXSYbPZtCbd8lVvsnjDLPZjfCMil67Pkywd_Ze4dTx4,11362
132
132
  xinference/model/llm/transformers/utils.py,sha256=KETjuVR_RpF--fno0KxT068fD1v4REFhe-0wy_sCwRs,19584
133
- xinference/model/llm/transformers/yi_vl.py,sha256=iCdRLw-wizbU-qXXc8CT4DhC0Pt-uYg0vFwXEhAZjQg,8961
134
133
  xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
135
- xinference/model/llm/vllm/core.py,sha256=OHUxo5iqXzYg0zaUbT4iI5Xl1xl0A8CSRqsPdIjTbXs,45985
136
- xinference/model/llm/vllm/distributed_executor.py,sha256=r_dftypuuLGYVf2Z6YmU6oCB9e3vLTi-rCegfVQRP1I,11669
134
+ xinference/model/llm/vllm/core.py,sha256=m95lpWHV0pdlcCqVWsd_YiEI7NlaqHUGqsWFnCJ1AM4,48456
135
+ xinference/model/llm/vllm/distributed_executor.py,sha256=wxIjZ9-TAr6kHqQAHInY3ZWJsLuno_CU0lXl1xP3W6I,11735
137
136
  xinference/model/llm/vllm/utils.py,sha256=LKOmwfFRrlSecawxT-uE39tC2RQbf1UIiSH9Uz90X6w,1313
138
137
  xinference/model/llm/vllm/xavier/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
139
- xinference/model/llm/vllm/xavier/allocator.py,sha256=SJ2eCOxF6CWTBZIP39FRxeK6fxIE8pRshOPnSRc72d4,2691
138
+ xinference/model/llm/vllm/xavier/allocator.py,sha256=5YGAvbbA77gEQMRByJRkyjQhpW-yv4TPl4gS6im2dKY,2707
140
139
  xinference/model/llm/vllm/xavier/block.py,sha256=cdxHi-dqojbdng9tt3lMcc8AfL6gkT4lRXqqGUO5G8M,4457
141
- xinference/model/llm/vllm/xavier/block_manager.py,sha256=9rJaTWGf6mPny78D0YdfhWt2vovEUyP1C2C974npGXI,2822
142
- xinference/model/llm/vllm/xavier/block_tracker.py,sha256=h4kqWhnLVol2hPykN7yxMbpFcWhCgye9D7LJXiPj1s8,5599
140
+ xinference/model/llm/vllm/xavier/block_manager.py,sha256=vdOmTDc0V-Ev9q3VdX-ZLzKM_OVqbP488uN9c-lt-8Y,2838
141
+ xinference/model/llm/vllm/xavier/block_tracker.py,sha256=yzLSt9fGDdTM63ctaKMyYSgmGPAI0izgNg6mLApdQz0,5647
143
142
  xinference/model/llm/vllm/xavier/collective.py,sha256=_yENFr-SJ38TywSYW2MgnEsagkTxarQOjLTacrdriYs,2563
144
143
  xinference/model/llm/vllm/xavier/collective_manager.py,sha256=oyenv3OziB1sUZylVpdi7piGbOIEgxtVWwuHa-y0vuc,5584
145
144
  xinference/model/llm/vllm/xavier/engine.py,sha256=WlKoxnE8HTUMVHr-PC9x-5emwZAjsMMxUBxUgcn0fQg,10443
146
- xinference/model/llm/vllm/xavier/executor.py,sha256=Dy_H3etFMoCCtqYYlJUUylxLZaSDrMsPUxnD-u7kRXc,5692
145
+ xinference/model/llm/vllm/xavier/executor.py,sha256=RSTjuSgYbp8baCoU36rqEC75-4Z7qW0wlAaK8YoeSJ4,5708
147
146
  xinference/model/llm/vllm/xavier/scheduler.py,sha256=yoD15TaqRprEg_4weuU0HECMTTi__wNCXplL_ytNjoc,20328
148
147
  xinference/model/llm/vllm/xavier/transfer.py,sha256=2IbaiAhRnJMwa9qsMa5bowngqfjxDeht0JS1BMbRmyA,11319
149
148
  xinference/model/llm/vllm/xavier/test/__init__.py,sha256=CyLLkbImZouAk4lePIgKXT4WQoqyauIEwdqea5IOUVU,581
150
- xinference/model/llm/vllm/xavier/test/test_xavier.py,sha256=E7MDGTeGJMaULoIKez6lt2Vhz0w6FJlPyAELUjE0Chw,4890
149
+ xinference/model/llm/vllm/xavier/test/test_xavier.py,sha256=ZA5OFV6_Qu0iLwateTeW5b2pIw9ky-i8CrfFMlBSSQA,4906
151
150
  xinference/model/rerank/__init__.py,sha256=wRpf1bOMfmAsuEKEGczMTB5fWEvuqltlJbIbRb-x8Ko,3483
152
151
  xinference/model/rerank/core.py,sha256=tKNKx8df8l4BIu77I4YFhx9l7bkFkcXEFx6rppRmXSM,14849
153
152
  xinference/model/rerank/custom.py,sha256=wPKF3bHbGap9dHz9yYvXMXhozh4hRzS78RQijqvaRq8,3846
@@ -156,9 +155,9 @@ xinference/model/rerank/model_spec_modelscope.json,sha256=pf5hX4g0HdVjk2-ibHTl_m
156
155
  xinference/model/rerank/utils.py,sha256=MJAFL47G3r3zLVGXKoi0QLTgU3Xr4Ffv72Ipn--psew,713
157
156
  xinference/model/video/__init__.py,sha256=mRhOhzMxzcPFdA5j4niAxH_j9dXLtT9HmchuICrdET8,2160
158
157
  xinference/model/video/core.py,sha256=uyWjVPEN_AUUgnjV68BQw4RhNjO1OSg-6MBaRGa1AJM,6205
159
- xinference/model/video/diffusers.py,sha256=P6GCKY5TFvLaMKyVBACXPUB-IVNo8-9HCRwfnqHPfoY,6982
160
- xinference/model/video/model_spec.json,sha256=ubTQsEfEVIzHz7O8XZOSgo-PtQRLz_qctv965ChI7gY,1218
161
- xinference/model/video/model_spec_modelscope.json,sha256=sjKMD-qRQMZ2NWTL7NxrclSljIVtwPFmgRKjObJmYtY,1198
158
+ xinference/model/video/diffusers.py,sha256=YJkhOR_ARA8SaQbKxJg7CJd80QPa_v2sjMWMzlgcoD8,7859
159
+ xinference/model/video/model_spec.json,sha256=NFQ9tfeYzQ5dmlk09IWATCvqiI1lpHh5V_gtem_fivg,2242
160
+ xinference/model/video/model_spec_modelscope.json,sha256=QMSOAGeU6oUyT45Dzqeo8Jbk3HXozJ97RIqObmgTT7E,2216
162
161
  xinference/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
163
162
  xinference/thirdparty/cosyvoice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
163
  xinference/thirdparty/cosyvoice/bin/average_model.py,sha256=5x2fXo-HX6r_3aBoXfyGYG6w1Qp9l_XUcxesYZqGUyA,3143
@@ -632,14 +631,14 @@ xinference/thirdparty/whisper/normalizers/english.json,sha256=Zgf5SL6YJNLhsvoiI8
632
631
  xinference/thirdparty/whisper/normalizers/english.py,sha256=KJjkZyru_J9Ey03jjBFc3yhvWzWuMhQzRnp2dM6IQdA,20868
633
632
  xinference/web/ui/package-lock.json,sha256=Q3gwsjjCFtDjVg5Yk7s4jfMAZ1wiyFfS_TJCw3ECB64,762407
634
633
  xinference/web/ui/package.json,sha256=iitsROb4-TLzxbOftXJqUGpp38TuPhzfLKy5n9THQYg,2081
635
- xinference/web/ui/build/asset-manifest.json,sha256=DRIzL170KftMLAnHjPx0iUWwbDW7gjvqyJwST1pE1Fs,453
634
+ xinference/web/ui/build/asset-manifest.json,sha256=ScdNuEBourC63hVi_WZOnVGKl9r9hVVnpdqzYNMEH7U,453
636
635
  xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
637
- xinference/web/ui/build/index.html,sha256=4YY7u797xddX6d0grtAwJDwEqVAGsgCJ7F38ynNEtkA,650
638
- xinference/web/ui/build/static/css/main.0f6523be.css,sha256=vR2US4TjBZi1ltn1p5SXFaISOf7fs4Tu0UGD3GhTPY0,5191
639
- xinference/web/ui/build/static/css/main.0f6523be.css.map,sha256=5K7_iKz10aejOxbQvgjum9MjfngiMPTvskAjZcu0FCg,9786
640
- xinference/web/ui/build/static/js/main.58bd483c.js,sha256=EFbx8vZo4TqRXrjKkWHvW_dBDgZAslnk8DzjVQbCcWA,1238296
641
- xinference/web/ui/build/static/js/main.58bd483c.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
642
- xinference/web/ui/build/static/js/main.58bd483c.js.map,sha256=yUo3v2OVsuzFiCFotsP5ExsOMoyu28Gvm1sU4JeQIAg,5228013
636
+ xinference/web/ui/build/index.html,sha256=d90oBWywLuR16XealXJG3zZloC1nlpuuyj6WYFHBhio,650
637
+ xinference/web/ui/build/static/css/main.337afe76.css,sha256=2gpwMegLjHVlFTO6g0bp9f1NPMbiycoZS0RKeQB25ko,5273
638
+ xinference/web/ui/build/static/css/main.337afe76.css.map,sha256=qg8_Ykb0_Zo1QXgq3Vm0nMv01_AgL8hxxk84sFfqlg8,9920
639
+ xinference/web/ui/build/static/js/main.91e77b5c.js,sha256=SdG9aQfGioZiVsasWWHX-be7nWuw9azMFANHweaHJlQ,1237889
640
+ xinference/web/ui/build/static/js/main.91e77b5c.js.LICENSE.txt,sha256=d8ETWF_wyLDtaMx4LKhmJjBONXs3Onu4YucCXopqPK0,2321
641
+ xinference/web/ui/build/static/js/main.91e77b5c.js.map,sha256=pVH_XGslnmIc5hnt18vW5SwkL17rYiKaGdlP9pnvhys,5224123
643
642
  xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
644
643
  xinference/web/ui/node_modules/.package-lock.json,sha256=2kL1sQ4ZuDQilki9DnRFFM8CxT13fyGl3chLK6i3DQY,760261
645
644
  xinference/web/ui/node_modules/.cache/babel-loader/00012b59e7dc64a18400bdddb660faa295258241c0b9cd15c78cdba63b858ed8.json,sha256=FhiSQ9MQv6bT7TkLBlXXskoaG2HCKhsuTXXlkDV-pM4,668
@@ -4496,7 +4495,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/51548cdcd9dc83266096e58c17eaa
4496
4495
  xinference/web/ui/node_modules/.cache/babel-loader/5164d5a1d6d84d1a2a85ce7ee6fa37412ab29ebd7a082e99c3fae1ff08a6361b.json,sha256=eGYgrVI9UGPObQe1llxLC4VFumD9Yis_ZsbC901r71I,7775
4497
4496
  xinference/web/ui/node_modules/.cache/babel-loader/5168c8f4e90b1a3b4eaf8aa78f1f40a4cdc07a6e586eb74d2cec8ca3524565e4.json,sha256=1RV7ErzSwTMQNnOWN7jnLWe5UUHZTXRDcLjAMT-a32A,1049
4498
4497
  xinference/web/ui/node_modules/.cache/babel-loader/516f82615733837f2f595a67a462f702d003ad1485d2cc382c3a240f97436210.json,sha256=6ZrQa7wWoO90QjahGTj6OC2KqnN1sIC-IZ_yY9qw5uU,3019
4499
- xinference/web/ui/node_modules/.cache/babel-loader/51709f5d3e53bcf19e613662ef9b91fb9174942c5518987a248348dd4e1e0e02.json,sha256=h0jp0n9YJ8c9v1019ldHZiZPlHq9RuH8oRwK3u4SRoE,5888
4500
4498
  xinference/web/ui/node_modules/.cache/babel-loader/51730f62e3d10c5c48addb53713c2a6feffb47287ab47323faf98c5c0b2a26a9.json,sha256=1KsuqowIOEv4_M81j310dO9OmTpjzJ_MZu70ROwddHE,1169
4501
4499
  xinference/web/ui/node_modules/.cache/babel-loader/5176b521b7eeed18755621b7f8938d5e87f8c29819906d55ccea85a0e496e078.json,sha256=CpwN9HnN9DGwG94Eh-0D20BupBtGI2-vxn-yfc-8oB0,1024
4502
4500
  xinference/web/ui/node_modules/.cache/babel-loader/51791bea0919b1d5e43cad813dffb96ea165888a89806e748504f2112cf1c393.json,sha256=qkKnZHhjpfq4SCluwWiuvq9dJWCFBLhyZf9E0N9TuuI,1344
@@ -5010,6 +5008,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/5bfb820f69dfc04a4993b7090bf47
5010
5008
  xinference/web/ui/node_modules/.cache/babel-loader/5c00283a6fbb0e6ae22b666ccb37c986a6b269bbc1cbe962d6f40a5df75b11af.json,sha256=etGzllHfNXIWGoIlAtS53yvp0PCiTnKR1TOKv3iSN-o,1556
5011
5009
  xinference/web/ui/node_modules/.cache/babel-loader/5c05e11fc5a7475ebd3427f20a7a2feb7f42ddbb1f48a13f3a236a1dcaf00831.json,sha256=aahh_1EGeWSqVOLU2iwybu72Id8SpozpkG6n0VvAzu8,1603
5012
5010
  xinference/web/ui/node_modules/.cache/babel-loader/5c07a46affaa31bbea5d19eecfcbd656af5ce9dd7c7a3a9a8384d7210d21c180.json,sha256=OSRP5iAGwyuzJTk4PiCSAOjprgXzvxFOJwRRsAVDeD4,1364
5011
+ xinference/web/ui/node_modules/.cache/babel-loader/5c08e2cd07809ed3e41486b16652253404cbb63a3ff8d0366ee50f57e2413cea.json,sha256=soGI3_kUtbGbV6t8TG3Nug3wTll-Xahi9ZdzISsLHgM,17191
5013
5012
  xinference/web/ui/node_modules/.cache/babel-loader/5c0c94a8c5ea216f513701ff66bb717096e4f08c9d1133dc8c04f6fe0a86027e.json,sha256=BNXhy34ndO0Q6RhD42JWc3D6T6nOwCB225uoYQI4o0I,1383
5014
5013
  xinference/web/ui/node_modules/.cache/babel-loader/5c0fb1d13fcafcaec0933fd52e295a6ee59c67a5f5b5bfce9276693b16613c1e.json,sha256=KP_hG3aOfeEMKc13RwvxFedXKcwhrqy_neaa359gH6g,1074
5015
5014
  xinference/web/ui/node_modules/.cache/babel-loader/5c2307007caf7113727f4d99aed80bfd4c88a7398598b3acc25753471cf03046.json,sha256=iAo5B4KaBge4vDxXgvw2ge5aiRsVJXut41j9rDjCvrk,1161
@@ -5120,6 +5119,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/5e4d615382054b36735a3a29820c1
5120
5119
  xinference/web/ui/node_modules/.cache/babel-loader/5e5dd610f8ae32f89ef4f2a92fb743c55fd726fafe1f63be4e66e6a691872289.json,sha256=Jv2eTjq-mVSgwlNBkB4WK5vsf18A2TFLFSMpbe0_gDs,1509
5121
5120
  xinference/web/ui/node_modules/.cache/babel-loader/5e5ea6e0eec799591f9bbdf42c4695f1a890a9adcabc1a2f73cbade00ad25865.json,sha256=JRfSxd8_9tM-pj0J2xw36flOP83r-cCNYzw5PUTnAng,1250
5122
5121
  xinference/web/ui/node_modules/.cache/babel-loader/5e61e49bd464277ccdc8a48fe7e03a92950a5f8af190fc9f856c2cc4b8e84dd2.json,sha256=74abBOl5YGvS_nZoCrulUDWjqjUz4sXnRp2XogM1Ubw,1710
5122
+ xinference/web/ui/node_modules/.cache/babel-loader/5e6edb0fb87e3798f142e9abf8dd2dc46bab33a60d31dff525797c0c99887097.json,sha256=2Le5DqAESuvEuzkYiqNZqlApy0wE0GqBNGg_fkcgbAM,6696
5123
5123
  xinference/web/ui/node_modules/.cache/babel-loader/5e7740a54e51d087b144e50a91d2cc85ff05e9218ad4366ad07aedef7219cf42.json,sha256=YRWRoR_umWgNdHAFcVyxJLCjKt0NG4sHBP2-xlJKR5c,4204
5124
5124
  xinference/web/ui/node_modules/.cache/babel-loader/5e7cd8824e18856ecead8a4da6bcf10bcb11ec7dee24b7f2099d534e18dbdb4b.json,sha256=ctB4H6r63ePeJBccygLYvTtI_G-DMn7FVlyGb7UG9xc,1418
5125
5125
  xinference/web/ui/node_modules/.cache/babel-loader/5e83d1e377620edc03b2f6e352f40cb19029bcf26c21b13a8673c3b8fa0b3e45.json,sha256=3kEkUIup3cRPqtxStwx32OwR-_0Eeyeg3PHWUssqgLE,1329
@@ -5218,6 +5218,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/6070502dba1b4bbe5dfee18f7c10e
5218
5218
  xinference/web/ui/node_modules/.cache/babel-loader/60792491586ec74e42c07de05e95c710b827ffb5992575546e45e7c8117c5d6a.json,sha256=LVo6Yh-RQmymTAvNP1GXACua7tPIcU2AwLWNcRynu-w,1565
5219
5219
  xinference/web/ui/node_modules/.cache/babel-loader/6082dd58ba39d30f6c7d50dbf4c49b7839ac0b6cd5de0799f358325e0ebddf34.json,sha256=o_4olTwfk0yFD53ExOujz788kcHw8cUwhGJI3djEUAY,1566
5220
5220
  xinference/web/ui/node_modules/.cache/babel-loader/6086c46dc4418599a45f770f6e4015668eee893159b8e17c2121fb4642936aa8.json,sha256=49p9AcYjasbPrXohYETUX7livpPt6XoiTUyPqlyAiAg,1278
5221
+ xinference/web/ui/node_modules/.cache/babel-loader/6087820be1bd5c02c42dff797e7df365448ef35ab26dd5d6bd33e967e05cbfd4.json,sha256=Ks-QwwVmSY5mN4oPPck-1PasasJxWSwSk9Xdd9nhcvs,234733
5221
5222
  xinference/web/ui/node_modules/.cache/babel-loader/60951451f419aba808d167f2ee92743b2b0283b57ab8e2b18ed5babb9ac9a4e9.json,sha256=2slycAgsNQu6juCTF3it6j3mOA1GynCdPtwkMGVfQDw,951
5222
5223
  xinference/web/ui/node_modules/.cache/babel-loader/609625d03c7fa9ce3dcaa0a98bbe92bbc643337dca3bafc849146458ed965992.json,sha256=Ogt5VujNA-3wj-uPUkIyZGLPjqZMou1dcgmrJhKdRiM,1426
5223
5224
  xinference/web/ui/node_modules/.cache/babel-loader/609e817393a84b4c0a9ceec5d68e1c5ef816c4cc11cba69678c4777d1ca224a5.json,sha256=7LhUl1kRm9S3GMg55Lmd8KhvvBKMvdbME8jGHK8U1Vo,1023
@@ -5565,6 +5566,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/6787f58bf89cc8ee822b4e38ae8e2
5565
5566
  xinference/web/ui/node_modules/.cache/babel-loader/67904e597b0e59e63d781539384eafc75fd7fde386c3be9c7287c0c89ff8740b.json,sha256=XbxLVCDqUcW3yHPl_hp8AWmF9NuJCC01ZRIJgzDVVLY,1458
5566
5567
  xinference/web/ui/node_modules/.cache/babel-loader/67921acc335e590fdec5f7ed60ade97ac903fc9a776b016f0b6465dc903edd20.json,sha256=hbq5Ad9X3HB3SxFi14xaRyt_5kX7e7gbuMWHhdL3lts,669
5567
5568
  xinference/web/ui/node_modules/.cache/babel-loader/679580048cda0f4f3e8efdeabe9845d948921cd3e12ac2a8cbc48a9fce7a2777.json,sha256=TXZbb5TWDowgYrnYOyoEYaNwslCbL_06pfb-Hb706U8,1212
5569
+ xinference/web/ui/node_modules/.cache/babel-loader/6798e126f3bc5f95a4c16a9c2ad52ffe77970c62406d83e20604dfda7ffd2247.json,sha256=uSOGHG22MvzpU1RljzCBhnTXgzDTA6h0ZgQO2Idn76E,13824
5568
5570
  xinference/web/ui/node_modules/.cache/babel-loader/67a2b78605ab98beae7c8e767a124ba95928dfa5a825c45a483ac5c18eff5d67.json,sha256=JrY6R1DrO3jJQYuMSK211NLT9QDJH2Vtm0jC9VQeZ5o,1074
5569
5571
  xinference/web/ui/node_modules/.cache/babel-loader/67a615733b8c3767eaee7ecb1073669c76e0a3baf2b144034ff95f4e8764be2c.json,sha256=I6c4ZBMnjHUsu0O-m-lW3UURB7w0Wz7slD0ZnYBhMtc,417
5570
5572
  xinference/web/ui/node_modules/.cache/babel-loader/67aa5fd2bf85c5c9b45c76cf6e11f91df772ba27b63d626a72b35ddfba386c2d.json,sha256=fmYaGiqnEP5SwHnz-I0r4CSco2vxFZ1VbRWblCl2AqU,2081
@@ -5623,7 +5625,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/68e3e2f7e4cee68b3f64a9c0fd7e8
5623
5625
  xinference/web/ui/node_modules/.cache/babel-loader/68eab16920bb0e9ee7787a3733c8c1814d7098330fbd362ae4559d458955b503.json,sha256=P9-6dlELdsYWNQe1MmgV57-tQEDGYIqg0SUHAncTZOg,1392
5624
5626
  xinference/web/ui/node_modules/.cache/babel-loader/68f9417749ee545ca7d6e021e30940ab3ab31a9a7e2394b98c08234b19e0920e.json,sha256=RjsMvAa9Gg1geUB3EaE5wLdvZgRdNDuvKK6QyOlF8xk,1431
5625
5627
  xinference/web/ui/node_modules/.cache/babel-loader/69015563be0fb910c2d24a453000ab4ef27086b46f40a1ffc5bbe012544b44c6.json,sha256=RSv-ZPWe2d6fHJbuKtAgbichkPbKuu6ksc2e8kyf5iA,1115
5626
- xinference/web/ui/node_modules/.cache/babel-loader/69081049f0c7447544b7cfd73dd13d8846c02fe5febe4d81587e95c89a412d5b.json,sha256=LcvJIEse3CRPRl2-tHIAYUvNsmLTjIURA6u3LG4xBE4,225899
5627
5628
  xinference/web/ui/node_modules/.cache/babel-loader/690a8dfa23b4e82554d7e69dc164ed87605c764c37285b7b90a9f594462e84ec.json,sha256=M_cKXnRyM4A-NrxFDToq2Nwti5bxLcVlpayk2-b5I28,491
5628
5629
  xinference/web/ui/node_modules/.cache/babel-loader/690d02d49d0647563db57ba809fe63e7ef1e398c27d60e61e2f95c81f53f89d9.json,sha256=YyDB_SMYZQ6Lm380HxnyMmWsda43FYivnCmyQ995M5I,2536
5629
5630
  xinference/web/ui/node_modules/.cache/babel-loader/691182c58e7360de46bb9fb98c7f2f3dd74d35032530f4615f1dab7a88556bf7.json,sha256=zK8wZWPqyY25YPgeywNIOuMKcekFicqhzWDFrUhd7Og,1174
@@ -7513,7 +7514,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/8f80825f6d64872d4a6b4320382b2
7513
7514
  xinference/web/ui/node_modules/.cache/babel-loader/8f817b65d67e4f8d4cf30d844b3147404d4780db7371bb1e89dfc7024873f0ed.json,sha256=ogNW2JiKejpBA4BZU02aHnM9YA9zk1Ujd65yDX_EXRU,1346
7514
7515
  xinference/web/ui/node_modules/.cache/babel-loader/8f879bccfa2c4d94fe80a2288e5f7823acb528219b894b44bb7f1790a985c163.json,sha256=atljFEbGzWsVWmqAfa_uSbkJYu9Y2BEN_mpUeIBayeM,1579
7515
7516
  xinference/web/ui/node_modules/.cache/babel-loader/8f8ff3e98dadc8dc532c189d0cae42422a459a4ad8e972de4abd619245a935ac.json,sha256=e0eSlO910iCv67ceA5XP8w8eccMP6WXoCBzGMJA4DOQ,2892
7516
- xinference/web/ui/node_modules/.cache/babel-loader/8f9af2979e45d4648f0cfae108363e58ee421c29a9d4e7329b6f06d9adfd4133.json,sha256=sBL0OIXnlU6Bzouz5VwIXfH0mg4pGGY8AnMG6nDNY1k,16796
7517
7517
  xinference/web/ui/node_modules/.cache/babel-loader/8fac6f9bd697c0b9c51da075c398deb20d5ba4060b1c9b4736696d954cf6e45f.json,sha256=ZVuAck-As0dWy9M78N_Rk3RtlgUZ8qC3PmC9YrPcYfw,1053
7518
7518
  xinference/web/ui/node_modules/.cache/babel-loader/8fad51f2c920895c5dc8b0203ba3dde9450b1faa042f07031fa7cccdc93cbd93.json,sha256=W6xQUO_mswqeTdl9T67tMBVOP4dpG94I7RGJvvic3DA,1755
7519
7519
  xinference/web/ui/node_modules/.cache/babel-loader/8fb87438d22de01015a58bad547a760319d06002faaf2295a412f888cf59fb72.json,sha256=hVoJ4oajxHwEAWw0Fn9Og5CPGuIOCqe9Jtr22F--qOg,9169
@@ -8140,7 +8140,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/9c66b74bcfcaca60e466026eceb80
8140
8140
  xinference/web/ui/node_modules/.cache/babel-loader/9c68165e2826626b57788d35ff06107d190740e8f0ebb27cf6e57742d59b5f46.json,sha256=hcwDwARoPxenfxs2M5vrLAiyXiLz-Lsq4YzXj6WoHyU,5768
8141
8141
  xinference/web/ui/node_modules/.cache/babel-loader/9c69a44e61ed7ea858874f26fbb64d780717a2633c79346fd13bda07cb712ddd.json,sha256=iaB9NmmLtX4N2VcJaA957YpDYumODD2Las4fpB91NpE,1890
8142
8142
  xinference/web/ui/node_modules/.cache/babel-loader/9c73a86f025daf9473460d4416c486c39e0c3a47cf9fb055d67e0f1951d89927.json,sha256=W6Tz1V3I5Ji6sArulO5vi423xyvFqTWb6P0zBxxvOio,1502
8143
- xinference/web/ui/node_modules/.cache/babel-loader/9c8b1a86e7c65b2b2599a205e30920652d6c2105f926508ef5bcf29a3ef4ce76.json,sha256=fFDj0kPoxIYoBBkdtioGNfvnuXYx3LI3xxXULEGQ9SM,12641
8144
8143
  xinference/web/ui/node_modules/.cache/babel-loader/9c8b3603004b778bdfc748ac451bd8177638aee95c314cbc2b1e7b10b1840a43.json,sha256=CchK7zHKncxgoeEgQZ4GgAi1EEDhenZ7JCn31FAK9Kk,1789
8145
8144
  xinference/web/ui/node_modules/.cache/babel-loader/9c8d93447911be11b24f7d14b2aff6c636a75ac4eb5e5c777a95626b4b649b00.json,sha256=cuvdh-fbUz6SUWzc05IJML3Dx18KtRrvNHWW7NUZTz0,3586
8146
8145
  xinference/web/ui/node_modules/.cache/babel-loader/9c8e5139b576cb0ed721c8e58f99e612d8312ce2d66fde7b82dd3ea0b08ae02a.json,sha256=PEEXkDgIN4bMF7_dVzX1XIO17ihaefl74Ak2TnFZAwI,1546
@@ -9331,6 +9330,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/b5fe93ed1dbccea08a4e179a8ba7e
9331
9330
  xinference/web/ui/node_modules/.cache/babel-loader/b6073c036323f672b0bf138aec9258de0064a67f040e2af3e68fc3fc2285c431.json,sha256=KgZuFOLzSy7bkkhxDHMVhd07JxkuU0a3ec2XVgjNmYc,1364
9332
9331
  xinference/web/ui/node_modules/.cache/babel-loader/b61054d920f25ff3a9245b8ad7e02ec9dbdf7513ad07d3c574384652243661f2.json,sha256=De5pMGA_Mfxa2NexLkccwaHDzkmqWdGEMLgEt1JA3-0,1843
9333
9332
  xinference/web/ui/node_modules/.cache/babel-loader/b612fc17f01872f9b7f91a5ebe49098f1ecb43f5c6cb301d964e99f56dfcfa18.json,sha256=YUk-h1VxbP_Of8HnAHiQ7kb91Wd2DHZU5mKjx84qwI4,1159
9333
+ xinference/web/ui/node_modules/.cache/babel-loader/b617f7d21a95045fc57b26a9373551740f1978a826134cbf705c3a1bf8714a93.json,sha256=pmKFRR08FCRz4LJzVSNlsu0DVuS5hSPQLkFK1bOofRk,3078
9334
9334
  xinference/web/ui/node_modules/.cache/babel-loader/b618069a3dcff5fe68d12bcc2e3c56cd0fc98944582474b329dfa031902744ff.json,sha256=6afToXHSdPI7pCRx7dJ7ljtSRHXYtzuHXBHG7A7ACJw,2432
9335
9335
  xinference/web/ui/node_modules/.cache/babel-loader/b61e2ade4c5658dae5a128b8273fa24d7c0916fe9bf4739533ebae873e3e8e5e.json,sha256=qBMPeaGWD3360vJRpRD30ghf3FUq9IZZSrAGxTRJEu0,558
9336
9336
  xinference/web/ui/node_modules/.cache/babel-loader/b6221b0a2614a383a507bbaaf93322b3cf86ca834f0287a0077b7a1904a3fb2b.json,sha256=46asD1KrHf0CWA0UGbPfIXvkR9Y2lesmkO6zO-dg20s,1255
@@ -9434,7 +9434,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/b84024367e25497f2c8138ddf6d64
9434
9434
  xinference/web/ui/node_modules/.cache/babel-loader/b841ca803b4502a792489ad73297aa9dfdba66f298cef7bfd9e6a79d038305f1.json,sha256=pEh1_6vqs2LCJabWPh9sMZcMLU0ixG0M-ZR9bLGKxbo,1254
9435
9435
  xinference/web/ui/node_modules/.cache/babel-loader/b84428be4437d7b6f23e1091070b17beb2ed0a0de3857a51c60cc0db0d6dfa91.json,sha256=16xAjwm4Kwdu_FqprZJ4geHT_0ajmYo9CADaE_Cw2cs,1220
9436
9436
  xinference/web/ui/node_modules/.cache/babel-loader/b847399de707e46b815e7e722a25eb18952fd32f313af7647538ed7f6dc7c478.json,sha256=6ydN_kCgCSVN0xI9dfPn2zmMDJDrUxLrC9_NNTQ0ZE0,1267
9437
- xinference/web/ui/node_modules/.cache/babel-loader/b8551e9775a01b28ae674125c688febe763732ea969ae344512e64ea01bf632e.json,sha256=4bAslDBWxSafPjwysSC9LBxwhJZykmPNJgLRRP3AxQ4,1635
9438
9437
  xinference/web/ui/node_modules/.cache/babel-loader/b859cbd02593af8ff23305b1138748f928d7980c62691e532ba3f91fe456fdbc.json,sha256=eG_US8_i_Ublpge9XAatIE9Uz0owaVHfR7lKJOnuUt0,1305
9439
9438
  xinference/web/ui/node_modules/.cache/babel-loader/b85e80c2a2b0b0624751e55c27b6610db1af59806d1343808910ffe53062f326.json,sha256=JrwNv_5UtQqkqzVDxJktnh3xyP2dbOq9f4g8eCeJBmc,1940
9440
9439
  xinference/web/ui/node_modules/.cache/babel-loader/b86ba0ee2ab72f064c2db342ac077166919452235b2a5a97d39ef34f9baacbb4.json,sha256=iWl6OmYs6jKbe9mZ4hZ-PVAsNcRxej3suKLMx0EzEgo,2042
@@ -9847,6 +9846,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/c140b55a7766a12a23707cb0ebdbf
9847
9846
  xinference/web/ui/node_modules/.cache/babel-loader/c14314c1c97f643544dd0029c7f8caa28fe25674478f9cce855d91500022b101.json,sha256=wPN2hR6dSP9vQmfxhI6WaNJYlvSXvk0AfYaK1-Ljn-I,1751
9848
9847
  xinference/web/ui/node_modules/.cache/babel-loader/c14e13813229d3aa0145e57b38b5a1a15058ce36f0beb60954dd51fe3d3edcbc.json,sha256=7acWpRK232dyqk9SkM-gYgE--alqnR1aHwp4bm2WNUg,1854
9849
9848
  xinference/web/ui/node_modules/.cache/babel-loader/c14fcd013599df564b66c521ce32f65db25577a7f233b267e1cd7ab9a488e94f.json,sha256=8ER62vYXJ_sG-wll2pkHA6Fj-4Y_-rnyf3AVskyv5Ng,1815
9849
+ xinference/web/ui/node_modules/.cache/babel-loader/c1506cb142151366074975f30fa1ff9cd6e5e978b62a4b074dfc16fe08d70d75.json,sha256=5KFcnTWFDHyK5o6Fu7T0jQJZCQDu3Y1urdOB2Przv_E,1449
9850
9850
  xinference/web/ui/node_modules/.cache/babel-loader/c152f4d1ccb679f1fca29f798a82dfbfce7413f0733e5224cd561de0c0ce7770.json,sha256=Pifqq0AaHlhCv_xSOYw2WTcg5iGxpD2BZDIx_6eDqfg,1070
9851
9851
  xinference/web/ui/node_modules/.cache/babel-loader/c1544f05f5518327276099e63727b834e44175b2b71abd14169a1778a25e013d.json,sha256=t05iHWzA41tFj3161pOh5-DSIl-BVAdoARzGqBHep8s,1326
9852
9852
  xinference/web/ui/node_modules/.cache/babel-loader/c15608a3fce9f156ac9e55d46e9981c0c712c717e69de231256a2e790ecb0c03.json,sha256=QaNkVZUgdJhbBeYGDVFgGr5P5lJtuPB4XPpLd9jkbjA,1032
@@ -10045,6 +10045,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/c5bc5a91d9fa32a1b18527549791d
10045
10045
  xinference/web/ui/node_modules/.cache/babel-loader/c5c2790c776a41100739fef93e3deec3309e83a39d427276016bcf0ed950ed50.json,sha256=IhGkvYOwlFsG0kmtgiYT6rE4KZuO47DKZxvo8OeZaTs,1159
10046
10046
  xinference/web/ui/node_modules/.cache/babel-loader/c5c4416f324a2d5366f3852367f303946eed7deeb93d67cdff5c97b2533a5fbd.json,sha256=pAOJtRvUse8_U4LdBlv6zp_oFf62ELb6ePXkLrmNUqs,1241
10047
10047
  xinference/web/ui/node_modules/.cache/babel-loader/c5c4a89f089e811188d1c692760ac3ec46fd0c0a5974f1cd3a68baebc308926c.json,sha256=57HGpqlzTSSSoVOP5izSaMlZ9lKzRkWCAKjtpKoG0uU,1262
10048
+ xinference/web/ui/node_modules/.cache/babel-loader/c5c7c2cd1b863ce41adff2c4737bba06eef3a1acf28288cb83d992060f6b8923.json,sha256=vaC0tQPmh9a_pB-J60v5lw8BBUbB_0jF5o9ihgs3Mgc,14238
10048
10049
  xinference/web/ui/node_modules/.cache/babel-loader/c5c8653f5a1d257d01b65a1619d77886f2d1496f39cf4dbd28a3a0e81d0b3879.json,sha256=iV6nNvtSm4RMzdZyMElHuJQDuc5OyImVZocuHaQ-s7E,2107
10049
10050
  xinference/web/ui/node_modules/.cache/babel-loader/c5d0d618974d3d53ab912c106adcbc1612c1e960c6331ee302774741f9b8db09.json,sha256=_5bfCcOCu-PjsOLRx52P299ht-CwE-QWpPV2Hx8GQa8,1381
10050
10051
  xinference/web/ui/node_modules/.cache/babel-loader/c5d5aafa0dc7f71216fa003bd047de830b5e033cea8e0613869c7fb670090762.json,sha256=50xB0CybhPWHnL02LkDuSwA26bZl7CZ5zxHXTMI0bEk,1186
@@ -12132,7 +12133,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/efd06c9b72302b6b58b3563d82d45
12132
12133
  xinference/web/ui/node_modules/.cache/babel-loader/efd90630b30899f1f75400c2fae3b571c18ed6294840859b8a39595df6e6978f.json,sha256=uZgR_vvec1oaq8GfnvZzJKJIQ9vAm6MANBq-7I34ZXo,737
12133
12134
  xinference/web/ui/node_modules/.cache/babel-loader/efda6a63c1848c0ce167e1b973dc4f7f9592eca1162c90645b03bd98d321ba70.json,sha256=KMi7VGHfajydwYL8yBUhnOaXdP30Jbk1Pcx6z93PY5A,1762
12134
12135
  xinference/web/ui/node_modules/.cache/babel-loader/efe4b1c80ad6358eb47fa8b6d2caf49f9b2296348bc4cdd712ca1758f8f55b0d.json,sha256=fSBSIWmn-d3WczyNVUnrgkKyUzrdTONmyTbGpZha314,1324
12135
- xinference/web/ui/node_modules/.cache/babel-loader/efe7cd132c27a8f9fd5352a394c491fd5fb0da0348cf9fcbd923164a32365eab.json,sha256=Myq5ZxeTVXrcDy1WBR4HMcUy35mzzYaqFyqh-t6lC2A,2302
12136
12136
  xinference/web/ui/node_modules/.cache/babel-loader/efea6594182cee0d93c801f2910632919e3552042fef51d3ebea79aa51b76e25.json,sha256=gQosRxYmYBCwuCrRIF1SBgPezsHeroXmcPMA4sLzCoM,2086
12137
12137
  xinference/web/ui/node_modules/.cache/babel-loader/efeaaadb07d6dcf8a039b42072d72840a568c63cfad8953b191af9b20701dc6b.json,sha256=BJAxjH9znwnXoJCf70zdZNKtKVNvNuqYmYUqtYb3DeU,1987
12138
12138
  xinference/web/ui/node_modules/.cache/babel-loader/eff683273a9fddddb4d220a0ee3ddd832687dadef5cdd63a2a5d5a0d80d55ce3.json,sha256=7_r-lLmKca1p7WkubkeBLI01cBJpTonI0WK_7yb1ckQ,1775
@@ -12217,7 +12217,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/f187d297f29bc381bc5efecb585b1
12217
12217
  xinference/web/ui/node_modules/.cache/babel-loader/f18b3ea9c0f7d13b80c5c1297279436e82915572aca6be88bbc3b95fed22274d.json,sha256=hNS1b2pXKoYtv9PXAdnH_h0Ly2Tc2M6R-6ijR9ULmcw,1214
12218
12218
  xinference/web/ui/node_modules/.cache/babel-loader/f18f328401042cf85d296c5cae3094ec5842107e41e8ef94c67c0e5cf2c4e4c4.json,sha256=s1DxjaAQ5l6ggFtMv_pJAypmCWSKCFe4UAMhLmfpVIo,1424
12219
12219
  xinference/web/ui/node_modules/.cache/babel-loader/f1984065fd21377830668930bec02aa5dcefebaffba4c3e41ecd0fcc45a101eb.json,sha256=LNhOUlbV6hb18ZYSEuGORuu10DnNVTsk5R60BoO_d2E,2096
12220
- xinference/web/ui/node_modules/.cache/babel-loader/f199e8173f6409a5802ed44acb95f218388131136504b2e9132129e150c92f9a.json,sha256=wAQTqHDnF0pFv87urp7bg6fvvWr5n-LecjPdDXdAVLM,12573
12221
12220
  xinference/web/ui/node_modules/.cache/babel-loader/f1a47a618b4a3acf242f8c8e7d781468d2e09033d8487cf6e7fca222117bf810.json,sha256=0qVUc2X2Jv4CVDC9JlvNv9iYjpIVvThs8mycAie-qhM,907
12222
12221
  xinference/web/ui/node_modules/.cache/babel-loader/f1a8ac4d6fbf7c5d6366b8238061d664907cb4078a1166315ab9e441a1f469b2.json,sha256=Q0ZIp2YNp5FGxNGaLkbdZ9WHQjzmKL27JV-J4B35iIk,1382
12223
12222
  xinference/web/ui/node_modules/.cache/babel-loader/f1a9946d0952779f611ebf19eabcf728b34de2d81373a49f24207f0e5d2b00ee.json,sha256=EDE_rzWaDd41rc6UJfgw28-HQ3077zq6QX023KdhXhk,1099
@@ -15784,11 +15783,11 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
15784
15783
  xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
15785
15784
  xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
15786
15785
  xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
15787
- xinference/web/ui/src/locales/en.json,sha256=yXLbaCDzurwn0YIYjGbThkG9n-G5BPDpf10hndO3gnc,8993
15788
- xinference/web/ui/src/locales/zh.json,sha256=smH85pmHLN7Vo3uunNRCo29mJaIkt-xlYYPbXZjlPWQ,8727
15789
- xinference-1.5.0.post1.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15790
- xinference-1.5.0.post1.dist-info/METADATA,sha256=ZZFJ0tbki6Ba1ZtjnsAOGpinC0y_ZzAJOkXowuM5YY0,24840
15791
- xinference-1.5.0.post1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
15792
- xinference-1.5.0.post1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15793
- xinference-1.5.0.post1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15794
- xinference-1.5.0.post1.dist-info/RECORD,,
15786
+ xinference/web/ui/src/locales/en.json,sha256=Ih7GWhYYlg7W9rvOOJJE2v9m3rv8qepktNIm0osxP40,9120
15787
+ xinference/web/ui/src/locales/zh.json,sha256=nxABiAfWz9TlRhB9UTP-qG3k10ykOgRvYf-lso97bzQ,8825
15788
+ xinference-1.5.1.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
15789
+ xinference-1.5.1.dist-info/METADATA,sha256=dBA_5xPxXTHnpeCqQ2jI9PximBuMf7jLIGZq8EJhQT0,24834
15790
+ xinference-1.5.1.dist-info/WHEEL,sha256=ooBFpIzZCPdw3uqIQsOo4qqbA4ZRPxHnOH7peeONza0,91
15791
+ xinference-1.5.1.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
15792
+ xinference-1.5.1.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
15793
+ xinference-1.5.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (78.1.0)
2
+ Generator: setuptools (80.0.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5