xinference 0.12.0__py3-none-any.whl → 0.12.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of xinference might be problematic. Click here for more details.
- xinference/_version.py +3 -3
- xinference/api/restful_api.py +108 -14
- xinference/client/restful/restful_client.py +78 -5
- xinference/constants.py +1 -0
- xinference/core/cache_tracker.py +48 -28
- xinference/core/event.py +5 -6
- xinference/core/model.py +59 -42
- xinference/core/scheduler.py +46 -18
- xinference/core/supervisor.py +73 -24
- xinference/core/worker.py +68 -2
- xinference/deploy/cmdline.py +86 -2
- xinference/deploy/test/test_cmdline.py +19 -10
- xinference/model/audio/__init__.py +14 -1
- xinference/model/audio/core.py +12 -1
- xinference/model/audio/custom.py +6 -4
- xinference/model/audio/model_spec_modelscope.json +20 -0
- xinference/model/llm/__init__.py +34 -2
- xinference/model/llm/llm_family.json +8 -2
- xinference/model/llm/llm_family.py +86 -1
- xinference/model/llm/llm_family_csghub.json +66 -0
- xinference/model/llm/llm_family_modelscope.json +8 -2
- xinference/model/llm/pytorch/chatglm.py +41 -12
- xinference/model/llm/pytorch/core.py +128 -88
- xinference/model/llm/pytorch/glm4v.py +24 -3
- xinference/model/llm/pytorch/internlm2.py +15 -0
- xinference/model/llm/pytorch/qwen_vl.py +1 -1
- xinference/model/llm/pytorch/utils.py +69 -189
- xinference/model/llm/utils.py +27 -14
- xinference/model/llm/vllm/core.py +10 -4
- xinference/model/rerank/core.py +35 -6
- xinference/model/utils.py +8 -2
- xinference/thirdparty/ChatTTS/experimental/__init__.py +0 -0
- xinference/thirdparty/ChatTTS/experimental/llm.py +40 -0
- xinference/thirdparty/ChatTTS/infer/__init__.py +0 -0
- xinference/thirdparty/ChatTTS/infer/api.py +125 -0
- xinference/thirdparty/ChatTTS/model/__init__.py +0 -0
- xinference/thirdparty/ChatTTS/model/dvae.py +155 -0
- xinference/thirdparty/ChatTTS/model/gpt.py +265 -0
- xinference/thirdparty/ChatTTS/utils/__init__.py +0 -0
- xinference/thirdparty/ChatTTS/utils/gpu_utils.py +23 -0
- xinference/thirdparty/ChatTTS/utils/infer_utils.py +141 -0
- xinference/thirdparty/ChatTTS/utils/io_utils.py +14 -0
- xinference/types.py +28 -0
- xinference/web/ui/build/asset-manifest.json +6 -6
- xinference/web/ui/build/index.html +1 -1
- xinference/web/ui/build/static/css/main.4bafd904.css +2 -0
- xinference/web/ui/build/static/css/main.4bafd904.css.map +1 -0
- xinference/web/ui/build/static/js/main.b80d9c08.js +3 -0
- xinference/web/ui/build/static/js/main.b80d9c08.js.map +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/0c2fb5375667931c4a331c99e0d87dc145e8f327cea3f44d6e56f54c7c1d4020.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/131091b25d26b17cdca187d7542a21475c211138d900cf667682260e76ef9463.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/16537795de12c61903b6110c241f62a7855b2d0fc1e7c3d1faa347267f3a6893.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/17b8f071491402d70b146532358b1a612226e5dc7b3e8755a1322d27b4680cee.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/395409bd005e19d48b437c48d88e5126c7865ba9631fe98535333c952e383dc5.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/3da7d55e87882a4af923e187b1351160e34ca102f589086439c15131a227fb6e.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/43991bb67c3136863e6fb37f796466b12eb547a1465408cc77820fddafb3bed3.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/72bcecc71c5267250edeb89608859d449b586f13ff9923a5e70e7172976ec403.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/{15e2cf8cd8d0989719b6349428ff576f9009ff4c2dcc52378be0bd938e82495e.json → 935efd2867664c58230378fdf2ff1ea85e58d853b7214014e20dfbca8dab7b05.json} +1 -1
- xinference/web/ui/node_modules/.cache/babel-loader/a7109d4425e3d94ca2726fc7020fd33bf5030afd4c9cf4bf71e21776cd70646a.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/c2abe75f04ad82fba68f35ed9cbe2e287762c876684fddccccfa73f739489b65.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/f28b83886159d83b84f099b05d607a822dca4dd7f2d8aa6d56fe08bab0b5b086.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/f51bf63ddaa7afd125ef2254a105789333eecc1c94fdf5157a9b88ef7ad0a5bd.json +1 -0
- {xinference-0.12.0.dist-info → xinference-0.12.2.dist-info}/METADATA +1 -1
- {xinference-0.12.0.dist-info → xinference-0.12.2.dist-info}/RECORD +69 -56
- xinference/web/ui/build/static/css/main.54bca460.css +0 -2
- xinference/web/ui/build/static/css/main.54bca460.css.map +0 -1
- xinference/web/ui/build/static/js/main.551aa479.js +0 -3
- xinference/web/ui/build/static/js/main.551aa479.js.map +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/1e86938a0cdf706d21e99b21f5d868fa247c0c88b26807047e26dcdc4d9a9db3.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/1fa824d82b2af519de7700c594e50bde4bbca60d13bd3fabff576802e4070304.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/2c63e940b945fd5817157e08a42b889b30d668ea4c91332f48ef2b1b9d26f520.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/3c2f277c93c5f1638e08db38df0d0fb4e58d1c5571aea03241a5c04ff4094704.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/3e737bcdbcbc407ccd65b90e199ef0c3214b261e8e41dbf14d921384a717d9ee.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/4135fe8745434cbce6438d1ebfa47422e0c77d884db4edc75c8bf32ea1d50621.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/46b6dd1f6d1109cd0e2455a0ea0be3e9bda1097cd4ebec9c4040070372671cfc.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/4de0a71074f9cbe1e7862750dcdd08cbc1bae7d9d9849a78b1783ca670017b3c.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/59ce49eae0f486af4c5034d4d2f9ca77c3ec3a32ecc560085caf5ef482b5f4c9.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/9cfd33238ca43e5bf9fc7e442690e8cc6027c73553db36de87e3597ed524ee4b.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/a6da6bc3d0d2191adebee87fb58ecebe82d071087bd2f7f3a9c7fdd2ada130f2.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/e6eccc9aa641e7da833492e27846dc965f9750281420977dc84654ca6ed221e4.json +0 -1
- /xinference/web/ui/build/static/js/{main.551aa479.js.LICENSE.txt → main.b80d9c08.js.LICENSE.txt} +0 -0
- {xinference-0.12.0.dist-info → xinference-0.12.2.dist-info}/LICENSE +0 -0
- {xinference-0.12.0.dist-info → xinference-0.12.2.dist-info}/WHEEL +0 -0
- {xinference-0.12.0.dist-info → xinference-0.12.2.dist-info}/entry_points.txt +0 -0
- {xinference-0.12.0.dist-info → xinference-0.12.2.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"ast":null,"code":"import _defineProperty from\"/home/runner/work/inference/inference/xinference/web/ui/node_modules/@babel/runtime/helpers/esm/defineProperty.js\";import _toConsumableArray from\"/home/runner/work/inference/inference/xinference/web/ui/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js\";import _objectSpread from\"/home/runner/work/inference/inference/xinference/web/ui/node_modules/@babel/runtime/helpers/esm/objectSpread2.js\";import _slicedToArray from\"/home/runner/work/inference/inference/xinference/web/ui/node_modules/@babel/runtime/helpers/esm/slicedToArray.js\";import AddIcon from'@mui/icons-material/Add';import DeleteIcon from'@mui/icons-material/Delete';import{Alert,Box,Button,FormControlLabel,Radio,RadioGroup,TextField,Tooltip}from'@mui/material';import React,{useEffect,useState}from'react';import{jsx as _jsx}from\"react/jsx-runtime\";import{jsxs as _jsxs}from\"react/jsx-runtime\";import{Fragment as _Fragment}from\"react/jsx-runtime\";var modelFormatArr=[{value:'pytorch',label:'PyTorch'},{value:'ggmlv3',label:'GGML'},{value:'ggufv2',label:'GGUF'},{value:'gptq',label:'GPTQ'},{value:'awq',label:'AWQ'}];var AddModelSpecs=function AddModelSpecs(_ref){var isJump=_ref.isJump,formData=_ref.formData,specsDataArr=_ref.specsDataArr,onGetArr=_ref.onGetArr,scrollRef=_ref.scrollRef;var _useState=useState(0),_useState2=_slicedToArray(_useState,2),count=_useState2[0],setCount=_useState2[1];var _useState3=useState([]),_useState4=_slicedToArray(_useState3,2),specsArr=_useState4[0],setSpecsArr=_useState4[1];var _useState5=useState([]),_useState6=_slicedToArray(_useState5,2),pathArr=_useState6[0],setPathArr=_useState6[1];var _useState7=useState([]),_useState8=_slicedToArray(_useState7,2),modelSizeAlertId=_useState8[0],setModelSizeAlertId=_useState8[1];var _useState9=useState([]),_useState10=_slicedToArray(_useState9,2),quantizationAlertId=_useState10[0],setQuantizationAlertId=_useState10[1];var _useState11=useState(false),_useState12=_slicedToArray(_useState11,2),isError=_useState12[0],setIsError=_useState12[1];var _useState13=useState(false),_useState14=_slicedToArray(_useState13,2),isAdd=_useState14[0],setIsAdd=_useState14[1];useEffect(function(){if(isJump){var dataArr=specsDataArr.map(function(item,index){var model_uri=item.model_uri,model_size_in_billions=item.model_size_in_billions,model_format=item.model_format,quantizations=item.quantizations,model_file_name_template=item.model_file_name_template;var size=model_size_in_billions;if(typeof size!=='number')size=size.split('_').join('.');return{id:index,model_uri:model_uri,model_size_in_billions:size,model_format:model_format,quantizations:quantizations,model_file_name_template:model_file_name_template};});setCount(dataArr.length);setSpecsArr(dataArr);var subPathArr=[];specsDataArr.forEach(function(item){if(item.model_format!=='ggmlv3'&&item.model_format!=='ggufv2'){subPathArr.push(item.model_uri);}else{subPathArr.push(item.model_uri+'/'+item.model_file_name_template);}});setPathArr(subPathArr);}else{setSpecsArr([_objectSpread({id:count},formData)]);setCount(count+1);setPathArr([formData.model_uri]);}},[]);useEffect(function(){var arr=specsArr.map(function(item){var uri=item.model_uri,size=item.model_size_in_billions,modelFormat=item.model_format,quantizations=item.quantizations,model_file_name_template=item.model_file_name_template;var handleSize=parseInt(size)===parseFloat(size)?Number(size):size.split('.').join('_');var handleQuantization=quantizations;if(modelFormat==='pytorch'){handleQuantization=['none'];}else if(handleQuantization[0]===''&&(modelFormat==='ggmlv3'||modelFormat==='ggufv2')){handleQuantization=['default'];}return{model_uri:uri,model_size_in_billions:handleSize,model_format:modelFormat,quantizations:handleQuantization,model_file_name_template:model_file_name_template};});setIsError(true);if(modelSizeAlertId.length===0&&quantizationAlertId.length===0){setIsError(false);}onGetArr(arr,isError);isAdd&&handleScrollBottom();setIsAdd(false);},[specsArr,isError]);var handleAddSpecs=function handleAddSpecs(){setCount(count+1);var item={id:count,model_uri:'/path/to/llama-1',model_size_in_billions:7,model_format:'pytorch',quantizations:[]};setSpecsArr([].concat(_toConsumableArray(specsArr),[item]));setIsAdd(true);setPathArr([].concat(_toConsumableArray(pathArr),['/path/to/llama-1']));};var handleUpdateSpecsArr=function handleUpdateSpecsArr(index,type,newValue){if(type==='model_format'){var subPathArr=_toConsumableArray(pathArr);if(specsArr[index].model_format!=='ggmlv3'&&specsArr[index].model_format!=='ggufv2'){pathArr[index]=specsArr[index].model_uri;}else{pathArr[index]=specsArr[index].model_uri+'/'+specsArr[index].model_file_name_template;}setPathArr(subPathArr);}setSpecsArr(specsArr.map(function(item,subIndex){if(subIndex===index){if(type==='quantizations'){return _objectSpread(_objectSpread({},item),{},_defineProperty({},type,[newValue]));}else if(type==='model_format'){if(newValue==='ggmlv3'||newValue==='ggufv2'){var _getPathComponents=getPathComponents(pathArr[index]),baseDir=_getPathComponents.baseDir,filename=_getPathComponents.filename;var obj=_objectSpread(_objectSpread({},item),{},{model_format:newValue,quantizations:[''],model_uri:baseDir,model_file_name_template:filename});return obj;}else{var _ref2;var id=item.id,model_size_in_billions=item.model_size_in_billions,model_format=item.model_format;return _ref2={id:id,model_uri:pathArr[index],model_size_in_billions:model_size_in_billions,model_format:model_format},_defineProperty(_ref2,type,newValue),_defineProperty(_ref2,\"quantizations\",['']),_ref2;}}else if(type==='model_uri'){var _subPathArr=_toConsumableArray(pathArr);_subPathArr[index]=newValue;setPathArr(_subPathArr);if(item.model_format==='ggmlv3'||item.model_format==='ggufv2'){var _getPathComponents2=getPathComponents(newValue),_baseDir=_getPathComponents2.baseDir,_filename=_getPathComponents2.filename;var _obj=_objectSpread(_objectSpread({},item),{},{model_uri:_baseDir,model_file_name_template:_filename});return _obj;}else{return _objectSpread(_objectSpread({},item),{},_defineProperty({},type,newValue));}}else{return _objectSpread(_objectSpread({},item),{},_defineProperty({},type,newValue));}}return item;}));};var handleDeleteSpecs=function handleDeleteSpecs(index){setSpecsArr(specsArr.filter(function(_,subIndex){return index!==subIndex;}));};var getPathComponents=function getPathComponents(path){var normalizedPath=path.replace(/\\\\/g,'/');var baseDir=normalizedPath.substring(0,normalizedPath.lastIndexOf('/'));var filename=normalizedPath.substring(normalizedPath.lastIndexOf('/')+1);return{baseDir:baseDir,filename:filename};};var handleModelSize=function handleModelSize(index,value,id){setModelSizeAlertId(modelSizeAlertId.filter(function(item){return item!==id;}));handleUpdateSpecsArr(index,'model_size_in_billions',value);if(value!==''&&(!Number(value)||Number(value)<=0)){var modelSizeAlertIdArr=Array.from(new Set([].concat(_toConsumableArray(modelSizeAlertId),[id])));setModelSizeAlertId(modelSizeAlertIdArr);}};var handleQuantization=function handleQuantization(model_format,index,value,id){setQuantizationAlertId(quantizationAlertId.filter(function(item){return item!==id;}));handleUpdateSpecsArr(index,'quantizations',value);if((model_format==='gptq'||model_format==='awq')&&value===''){var quantizationAlertIdArr=Array.from(new Set([].concat(_toConsumableArray(quantizationAlertId),[id])));setQuantizationAlertId(quantizationAlertIdArr);}};var handleScrollBottom=function handleScrollBottom(){scrollRef.current.scrollTo({top:scrollRef.current.scrollHeight,behavior:'smooth'});};return/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{children:[/*#__PURE__*/_jsx(\"label\",{style:{marginBottom:'20px'},children:\"Model Specs\"}),/*#__PURE__*/_jsx(Button,{variant:\"contained\",size:\"small\",endIcon:/*#__PURE__*/_jsx(AddIcon,{}),className:\"addBtn\",onClick:handleAddSpecs,children:\"more\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"specs_container\",children:specsArr.map(function(item,index){return/*#__PURE__*/_jsxs(\"div\",{className:\"item\",children:[/*#__PURE__*/_jsx(\"label\",{style:{paddingLeft:5},children:\"Model Format\"}),/*#__PURE__*/_jsx(RadioGroup,{value:item.model_format,onChange:function onChange(e){handleUpdateSpecsArr(index,'model_format',e.target.value);if(e.target.value==='gptq'||e.target.value==='awq'){var quantizationAlertIdArr=Array.from(new Set([].concat(_toConsumableArray(quantizationAlertId),[item.id])));setQuantizationAlertId(quantizationAlertIdArr);}},children:/*#__PURE__*/_jsx(Box,{sx:styles.checkboxWrapper,children:modelFormatArr.map(function(item){return/*#__PURE__*/_jsx(Box,{sx:{marginLeft:'10px'},children:/*#__PURE__*/_jsx(FormControlLabel,{value:item.value,control:/*#__PURE__*/_jsx(Radio,{}),label:item.label})},item.value);})})}),/*#__PURE__*/_jsx(Box,{padding:\"15px\"}),/*#__PURE__*/_jsx(TextField,{error:item.model_uri!==''?false:true,style:{minWidth:'60%'},label:\"Model Path\",size:\"small\",value:item.model_format!=='ggmlv3'&&item.model_format!=='ggufv2'?item.model_uri:item.model_uri+'/'+item.model_file_name_template,onChange:function onChange(e){handleUpdateSpecsArr(index,'model_uri',e.target.value);},helperText:\"For PyTorch, provide the model directory. For GGML/GGUF, provide the model file path.\"}),/*#__PURE__*/_jsx(Box,{padding:\"15px\"}),/*#__PURE__*/_jsx(TextField,{error:Number(item.model_size_in_billions)>0?false:true,label:\"Model Size in Billions\",size:\"small\",value:item.model_size_in_billions,onChange:function onChange(e){handleModelSize(index,e.target.value,item.id);}}),modelSizeAlertId.includes(item.id)&&/*#__PURE__*/_jsx(Alert,{severity:\"error\",children:\"Please enter a number greater than 0.\"}),/*#__PURE__*/_jsx(Box,{padding:\"15px\"}),item.model_format!=='pytorch'&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(TextField,{style:{minWidth:'60%'},label:item.model_format==='gptq'||item.model_format==='awq'?'Quantization':'Quantization (Optional)',size:\"small\",value:item.quantizations[0],onChange:function onChange(e){handleQuantization(item.model_format,index,e.target.value,item.id);},helperText:item.model_format==='gptq'||item.model_format==='awq'?'For GPTQ/AWQ models, please be careful to fill in the quantization corresponding to the model you want to register.':''}),item.model_format!=='ggmlv3'&&item.model_format!=='ggufv2'&&quantizationAlertId.includes(item.id)&&item.quantizations[0]==''&&/*#__PURE__*/_jsx(Alert,{severity:\"error\",children:\"Quantization cannot be left empty.\"})]}),specsArr.length>1&&/*#__PURE__*/_jsx(Tooltip,{title:\"Delete specs\",placement:\"top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"deleteBtn\",onClick:function onClick(){return handleDeleteSpecs(index);},children:/*#__PURE__*/_jsx(DeleteIcon,{className:\"deleteIcon\"})})})]},item.id);})})]});};export default AddModelSpecs;var styles={baseFormControl:{width:'100%',margin:'normal',size:'small'},checkboxWrapper:{display:'flex',flexWrap:'wrap',alignItems:'center',width:'100%'}};","map":{"version":3,"names":["AddIcon","DeleteIcon","Alert","Box","Button","FormControlLabel","Radio","RadioGroup","TextField","Tooltip","React","useEffect","useState","jsx","_jsx","jsxs","_jsxs","Fragment","_Fragment","modelFormatArr","value","label","AddModelSpecs","_ref","isJump","formData","specsDataArr","onGetArr","scrollRef","_useState","_useState2","_slicedToArray","count","setCount","_useState3","_useState4","specsArr","setSpecsArr","_useState5","_useState6","pathArr","setPathArr","_useState7","_useState8","modelSizeAlertId","setModelSizeAlertId","_useState9","_useState10","quantizationAlertId","setQuantizationAlertId","_useState11","_useState12","isError","setIsError","_useState13","_useState14","isAdd","setIsAdd","dataArr","map","item","index","model_uri","model_size_in_billions","model_format","quantizations","model_file_name_template","size","split","join","id","length","subPathArr","forEach","push","_objectSpread","arr","uri","modelFormat","handleSize","parseInt","parseFloat","Number","handleQuantization","handleScrollBottom","handleAddSpecs","concat","_toConsumableArray","handleUpdateSpecsArr","type","newValue","subIndex","_defineProperty","_getPathComponents","getPathComponents","baseDir","filename","obj","_ref2","_getPathComponents2","handleDeleteSpecs","filter","_","path","normalizedPath","replace","substring","lastIndexOf","handleModelSize","modelSizeAlertIdArr","Array","from","Set","quantizationAlertIdArr","current","scrollTo","top","scrollHeight","behavior","children","style","marginBottom","variant","endIcon","className","onClick","paddingLeft","onChange","e","target","sx","styles","checkboxWrapper","marginLeft","control","padding","error","minWidth","helperText","includes","severity","title","placement","baseFormControl","width","margin","display","flexWrap","alignItems"],"sources":["/home/runner/work/inference/inference/xinference/web/ui/src/scenes/register_model/components/addModelSpecs.js"],"sourcesContent":["import AddIcon from '@mui/icons-material/Add'\nimport DeleteIcon from '@mui/icons-material/Delete'\nimport {\n Alert,\n Box,\n Button,\n FormControlLabel,\n Radio,\n RadioGroup,\n TextField,\n Tooltip,\n} from '@mui/material'\nimport React, { useEffect, useState } from 'react'\n\nconst modelFormatArr = [\n { value: 'pytorch', label: 'PyTorch' },\n { value: 'ggmlv3', label: 'GGML' },\n { value: 'ggufv2', label: 'GGUF' },\n { value: 'gptq', label: 'GPTQ' },\n { value: 'awq', label: 'AWQ' },\n]\n\nconst AddModelSpecs = ({\n isJump,\n formData,\n specsDataArr,\n onGetArr,\n scrollRef,\n}) => {\n const [count, setCount] = useState(0)\n const [specsArr, setSpecsArr] = useState([])\n const [pathArr, setPathArr] = useState([])\n const [modelSizeAlertId, setModelSizeAlertId] = useState([])\n const [quantizationAlertId, setQuantizationAlertId] = useState([])\n const [isError, setIsError] = useState(false)\n const [isAdd, setIsAdd] = useState(false)\n\n useEffect(() => {\n if (isJump) {\n const dataArr = specsDataArr.map((item, index) => {\n const {\n model_uri,\n model_size_in_billions,\n model_format,\n quantizations,\n model_file_name_template,\n } = item\n let size = model_size_in_billions\n if (typeof size !== 'number') size = size.split('_').join('.')\n\n return {\n id: index,\n model_uri,\n model_size_in_billions: size,\n model_format,\n quantizations,\n model_file_name_template,\n }\n })\n setCount(dataArr.length)\n setSpecsArr(dataArr)\n\n const subPathArr = []\n specsDataArr.forEach((item) => {\n if (item.model_format !== 'ggmlv3' && item.model_format !== 'ggufv2') {\n subPathArr.push(item.model_uri)\n } else {\n subPathArr.push(item.model_uri + '/' + item.model_file_name_template)\n }\n })\n setPathArr(subPathArr)\n } else {\n setSpecsArr([\n {\n id: count,\n ...formData,\n },\n ])\n setCount(count + 1)\n setPathArr([formData.model_uri])\n }\n }, [])\n\n useEffect(() => {\n const arr = specsArr.map((item) => {\n const {\n model_uri: uri,\n model_size_in_billions: size,\n model_format: modelFormat,\n quantizations,\n model_file_name_template,\n } = item\n const handleSize =\n parseInt(size) === parseFloat(size)\n ? Number(size)\n : size.split('.').join('_')\n\n let handleQuantization = quantizations\n if (modelFormat === 'pytorch') {\n handleQuantization = ['none']\n } else if (\n handleQuantization[0] === '' &&\n (modelFormat === 'ggmlv3' || modelFormat === 'ggufv2')\n ) {\n handleQuantization = ['default']\n }\n\n return {\n model_uri: uri,\n model_size_in_billions: handleSize,\n model_format: modelFormat,\n quantizations: handleQuantization,\n model_file_name_template,\n }\n })\n setIsError(true)\n if (modelSizeAlertId.length === 0 && quantizationAlertId.length === 0) {\n setIsError(false)\n }\n onGetArr(arr, isError)\n isAdd && handleScrollBottom()\n setIsAdd(false)\n }, [specsArr, isError])\n\n const handleAddSpecs = () => {\n setCount(count + 1)\n const item = {\n id: count,\n model_uri: '/path/to/llama-1',\n model_size_in_billions: 7,\n model_format: 'pytorch',\n quantizations: [],\n }\n setSpecsArr([...specsArr, item])\n setIsAdd(true)\n setPathArr([...pathArr, '/path/to/llama-1'])\n }\n\n const handleUpdateSpecsArr = (index, type, newValue) => {\n if (type === 'model_format') {\n const subPathArr = [...pathArr]\n if (\n specsArr[index].model_format !== 'ggmlv3' &&\n specsArr[index].model_format !== 'ggufv2'\n ) {\n pathArr[index] = specsArr[index].model_uri\n } else {\n pathArr[index] =\n specsArr[index].model_uri +\n '/' +\n specsArr[index].model_file_name_template\n }\n setPathArr(subPathArr)\n }\n\n setSpecsArr(\n specsArr.map((item, subIndex) => {\n if (subIndex === index) {\n if (type === 'quantizations') {\n return { ...item, [type]: [newValue] }\n } else if (type === 'model_format') {\n if (newValue === 'ggmlv3' || newValue === 'ggufv2') {\n const { baseDir, filename } = getPathComponents(pathArr[index])\n const obj = {\n ...item,\n model_format: newValue,\n quantizations: [''],\n model_uri: baseDir,\n model_file_name_template: filename,\n }\n return obj\n } else {\n const { id, model_size_in_billions, model_format } = item\n return {\n id,\n model_uri: pathArr[index],\n model_size_in_billions,\n model_format,\n [type]: newValue,\n quantizations: [''],\n }\n }\n } else if (type === 'model_uri') {\n const subPathArr = [...pathArr]\n subPathArr[index] = newValue\n setPathArr(subPathArr)\n if (\n item.model_format === 'ggmlv3' ||\n item.model_format === 'ggufv2'\n ) {\n const { baseDir, filename } = getPathComponents(newValue)\n const obj = {\n ...item,\n model_uri: baseDir,\n model_file_name_template: filename,\n }\n return obj\n } else {\n return { ...item, [type]: newValue }\n }\n } else {\n return { ...item, [type]: newValue }\n }\n }\n return item\n })\n )\n }\n\n const handleDeleteSpecs = (index) => {\n setSpecsArr(specsArr.filter((_, subIndex) => index !== subIndex))\n }\n\n const getPathComponents = (path) => {\n const normalizedPath = path.replace(/\\\\/g, '/')\n const baseDir = normalizedPath.substring(0, normalizedPath.lastIndexOf('/'))\n const filename = normalizedPath.substring(\n normalizedPath.lastIndexOf('/') + 1\n )\n return { baseDir, filename }\n }\n\n const handleModelSize = (index, value, id) => {\n setModelSizeAlertId(modelSizeAlertId.filter((item) => item !== id))\n handleUpdateSpecsArr(index, 'model_size_in_billions', value)\n if (value !== '' && (!Number(value) || Number(value) <= 0)) {\n const modelSizeAlertIdArr = Array.from(new Set([...modelSizeAlertId, id]))\n setModelSizeAlertId(modelSizeAlertIdArr)\n }\n }\n\n const handleQuantization = (model_format, index, value, id) => {\n setQuantizationAlertId(quantizationAlertId.filter((item) => item !== id))\n handleUpdateSpecsArr(index, 'quantizations', value)\n if ((model_format === 'gptq' || model_format === 'awq') && value === '') {\n const quantizationAlertIdArr = Array.from(\n new Set([...quantizationAlertId, id])\n )\n setQuantizationAlertId(quantizationAlertIdArr)\n }\n }\n\n const handleScrollBottom = () => {\n scrollRef.current.scrollTo({\n top: scrollRef.current.scrollHeight,\n behavior: 'smooth',\n })\n }\n\n return (\n <>\n <div>\n <label style={{ marginBottom: '20px' }}>Model Specs</label>\n <Button\n variant=\"contained\"\n size=\"small\"\n endIcon={<AddIcon />}\n className=\"addBtn\"\n onClick={handleAddSpecs}\n >\n more\n </Button>\n </div>\n <div className=\"specs_container\">\n {specsArr.map((item, index) => (\n <div className=\"item\" key={item.id}>\n <label\n style={{\n paddingLeft: 5,\n }}\n >\n Model Format\n </label>\n <RadioGroup\n value={item.model_format}\n onChange={(e) => {\n handleUpdateSpecsArr(index, 'model_format', e.target.value)\n if (e.target.value === 'gptq' || e.target.value === 'awq') {\n const quantizationAlertIdArr = Array.from(\n new Set([...quantizationAlertId, item.id])\n )\n setQuantizationAlertId(quantizationAlertIdArr)\n }\n }}\n >\n <Box sx={styles.checkboxWrapper}>\n {modelFormatArr.map((item) => (\n <Box key={item.value} sx={{ marginLeft: '10px' }}>\n <FormControlLabel\n value={item.value}\n control={<Radio />}\n label={item.label}\n />\n </Box>\n ))}\n </Box>\n </RadioGroup>\n <Box padding=\"15px\"></Box>\n\n <TextField\n error={item.model_uri !== '' ? false : true}\n style={{ minWidth: '60%' }}\n label=\"Model Path\"\n size=\"small\"\n value={\n item.model_format !== 'ggmlv3' && item.model_format !== 'ggufv2'\n ? item.model_uri\n : item.model_uri + '/' + item.model_file_name_template\n }\n onChange={(e) => {\n handleUpdateSpecsArr(index, 'model_uri', e.target.value)\n }}\n helperText=\"For PyTorch, provide the model directory. For GGML/GGUF, provide the model file path.\"\n />\n <Box padding=\"15px\"></Box>\n\n <TextField\n error={Number(item.model_size_in_billions) > 0 ? false : true}\n label=\"Model Size in Billions\"\n size=\"small\"\n value={item.model_size_in_billions}\n onChange={(e) => {\n handleModelSize(index, e.target.value, item.id)\n }}\n />\n {modelSizeAlertId.includes(item.id) && (\n <Alert severity=\"error\">\n Please enter a number greater than 0.\n </Alert>\n )}\n <Box padding=\"15px\"></Box>\n\n {item.model_format !== 'pytorch' && (\n <>\n <TextField\n style={{ minWidth: '60%' }}\n label={\n item.model_format === 'gptq' || item.model_format === 'awq'\n ? 'Quantization'\n : 'Quantization (Optional)'\n }\n size=\"small\"\n value={item.quantizations[0]}\n onChange={(e) => {\n handleQuantization(\n item.model_format,\n index,\n e.target.value,\n item.id\n )\n }}\n helperText={\n item.model_format === 'gptq' || item.model_format === 'awq'\n ? 'For GPTQ/AWQ models, please be careful to fill in the quantization corresponding to the model you want to register.'\n : ''\n }\n />\n {item.model_format !== 'ggmlv3' &&\n item.model_format !== 'ggufv2' &&\n quantizationAlertId.includes(item.id) &&\n item.quantizations[0] == '' && (\n <Alert severity=\"error\">\n Quantization cannot be left empty.\n </Alert>\n )}\n </>\n )}\n\n {specsArr.length > 1 && (\n <Tooltip title=\"Delete specs\" placement=\"top\">\n <div\n className=\"deleteBtn\"\n onClick={() => handleDeleteSpecs(index)}\n >\n <DeleteIcon className=\"deleteIcon\" />\n </div>\n </Tooltip>\n )}\n </div>\n ))}\n </div>\n </>\n )\n}\n\nexport default AddModelSpecs\n\nconst styles = {\n baseFormControl: {\n width: '100%',\n margin: 'normal',\n size: 'small',\n },\n checkboxWrapper: {\n display: 'flex',\n flexWrap: 'wrap',\n alignItems: 'center',\n width: '100%',\n },\n}\n"],"mappings":"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"},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"ast":null,"code":"import{Box}from'@mui/material';import Paper from'@mui/material/Paper';import Grid from'@mui/material/Unstable_Grid2';import React,{useContext}from'react';import{ApiContext}from'../../components/apiContext';import TableTitle from'../../components/tableTitle';import Title from'../../components/Title';import NodeInfo from'./nodeInfo';import{jsx as _jsx}from\"react/jsx-runtime\";import{jsxs as _jsxs}from\"react/jsx-runtime\";var ClusterInfo=function ClusterInfo(){var endPoint=useContext(ApiContext).endPoint;return/*#__PURE__*/_jsxs(Box,{sx:{height:'100%',width:'100%',paddingLeft:'20px',paddingTop:'20px'},children:[/*#__PURE__*/_jsx(Title,{title:\"Cluster Information\"}),/*#__PURE__*/_jsxs(Grid,{container:true,spacing:3,style:{width:'100%'},children:[/*#__PURE__*/_jsx(Grid,{item:true,xs:12,children:/*#__PURE__*/_jsxs(Paper,{sx:{padding:2,display:'flex',overflow:'auto',flexDirection:'column'},children:[/*#__PURE__*/_jsx(TableTitle,{children:\"Supervisor\"}),/*#__PURE__*/_jsx(NodeInfo,{nodeRole:\"Supervisor\",endpoint:endPoint})]})}),/*#__PURE__*/_jsx(Grid,{item:true,xs:12,children:/*#__PURE__*/_jsxs(Paper,{sx:{padding:2,display:'flex',overflow:'auto',flexDirection:'column'},children:[/*#__PURE__*/_jsx(TableTitle,{children:\"Workers\"}),/*#__PURE__*/_jsx(NodeInfo,{nodeRole:\"Worker\",endpoint:endPoint})]})}),/*#__PURE__*/_jsx(Grid,{item:true,xs:12,children:/*#__PURE__*/_jsxs(Paper,{sx:{padding:2,display:'flex',overflow:'auto',flexDirection:'column'},children:[/*#__PURE__*/_jsx(TableTitle,{children:\"Worker Details\"}),/*#__PURE__*/_jsx(NodeInfo,{nodeRole:\"Worker-Details\",endpoint:endPoint})]})})]})]});};export default ClusterInfo;","map":{"version":3,"names":["Box","Paper","Grid","React","useContext","ApiContext","TableTitle","Title","NodeInfo","jsx","_jsx","jsxs","_jsxs","ClusterInfo","endPoint","sx","height","width","paddingLeft","paddingTop","children","title","container","spacing","style","item","xs","padding","display","overflow","flexDirection","nodeRole","endpoint"],"sources":["/home/runner/work/inference/inference/xinference/web/ui/src/scenes/cluster_info/index.js"],"sourcesContent":["import { Box } from '@mui/material'\nimport Paper from '@mui/material/Paper'\nimport Grid from '@mui/material/Unstable_Grid2'\nimport React, { useContext } from 'react'\n\nimport { ApiContext } from '../../components/apiContext'\nimport TableTitle from '../../components/tableTitle'\nimport Title from '../../components/Title'\nimport NodeInfo from './nodeInfo'\n\nconst ClusterInfo = () => {\n const endPoint = useContext(ApiContext).endPoint\n\n return (\n <Box\n sx={{\n height: '100%',\n width: '100%',\n paddingLeft: '20px',\n paddingTop: '20px',\n }}\n >\n <Title title=\"Cluster Information\" />\n <Grid container spacing={3} style={{ width: '100%' }}>\n <Grid item xs={12}>\n <Paper\n sx={{\n padding: 2,\n display: 'flex',\n overflow: 'auto',\n flexDirection: 'column',\n }}\n >\n <TableTitle>Supervisor</TableTitle>\n <NodeInfo nodeRole=\"Supervisor\" endpoint={endPoint} />\n </Paper>\n </Grid>\n <Grid item xs={12}>\n <Paper\n sx={{\n padding: 2,\n display: 'flex',\n overflow: 'auto',\n flexDirection: 'column',\n }}\n >\n <TableTitle>Workers</TableTitle>\n <NodeInfo nodeRole=\"Worker\" endpoint={endPoint} />\n </Paper>\n </Grid>\n <Grid item xs={12}>\n <Paper\n sx={{\n padding: 2,\n display: 'flex',\n overflow: 'auto',\n flexDirection: 'column',\n }}\n >\n <TableTitle>Worker Details</TableTitle>\n <NodeInfo nodeRole=\"Worker-Details\" endpoint={endPoint} />\n </Paper>\n </Grid>\n </Grid>\n </Box>\n )\n}\n\nexport default ClusterInfo\n"],"mappings":"AAAA,OAASA,GAAG,KAAQ,eAAe,CACnC,MAAO,CAAAC,KAAK,KAAM,qBAAqB,CACvC,MAAO,CAAAC,IAAI,KAAM,8BAA8B,CAC/C,MAAO,CAAAC,KAAK,EAAIC,UAAU,KAAQ,OAAO,CAEzC,OAASC,UAAU,KAAQ,6BAA6B,CACxD,MAAO,CAAAC,UAAU,KAAM,6BAA6B,CACpD,MAAO,CAAAC,KAAK,KAAM,wBAAwB,CAC1C,MAAO,CAAAC,QAAQ,KAAM,YAAY,QAAAC,GAAA,IAAAC,IAAA,gCAAAC,IAAA,IAAAC,KAAA,yBAEjC,GAAM,CAAAC,WAAW,CAAG,QAAd,CAAAA,WAAWA,CAAA,CAAS,CACxB,GAAM,CAAAC,QAAQ,CAAGV,UAAU,CAACC,UAAU,CAAC,CAACS,QAAQ,CAEhD,mBACEF,KAAA,CAACZ,GAAG,EACFe,EAAE,CAAE,CACFC,MAAM,CAAE,MAAM,CACdC,KAAK,CAAE,MAAM,CACbC,WAAW,CAAE,MAAM,CACnBC,UAAU,CAAE,MACd,CAAE,CAAAC,QAAA,eAEFV,IAAA,CAACH,KAAK,EAACc,KAAK,CAAC,qBAAqB,CAAE,CAAC,cACrCT,KAAA,CAACV,IAAI,EAACoB,SAAS,MAACC,OAAO,CAAE,CAAE,CAACC,KAAK,CAAE,CAAEP,KAAK,CAAE,MAAO,CAAE,CAAAG,QAAA,eACnDV,IAAA,CAACR,IAAI,EAACuB,IAAI,MAACC,EAAE,CAAE,EAAG,CAAAN,QAAA,cAChBR,KAAA,CAACX,KAAK,EACJc,EAAE,CAAE,CACFY,OAAO,CAAE,CAAC,CACVC,OAAO,CAAE,MAAM,CACfC,QAAQ,CAAE,MAAM,CAChBC,aAAa,CAAE,QACjB,CAAE,CAAAV,QAAA,eAEFV,IAAA,CAACJ,UAAU,EAAAc,QAAA,CAAC,YAAU,CAAY,CAAC,cACnCV,IAAA,CAACF,QAAQ,EAACuB,QAAQ,CAAC,YAAY,CAACC,QAAQ,CAAElB,QAAS,CAAE,CAAC,EACjD,CAAC,CACJ,CAAC,cACPJ,IAAA,CAACR,IAAI,EAACuB,IAAI,MAACC,EAAE,CAAE,EAAG,CAAAN,QAAA,cAChBR,KAAA,CAACX,KAAK,EACJc,EAAE,CAAE,CACFY,OAAO,CAAE,CAAC,CACVC,OAAO,CAAE,MAAM,CACfC,QAAQ,CAAE,MAAM,CAChBC,aAAa,CAAE,QACjB,CAAE,CAAAV,QAAA,eAEFV,IAAA,CAACJ,UAAU,EAAAc,QAAA,CAAC,SAAO,CAAY,CAAC,cAChCV,IAAA,CAACF,QAAQ,EAACuB,QAAQ,CAAC,QAAQ,CAACC,QAAQ,CAAElB,QAAS,CAAE,CAAC,EAC7C,CAAC,CACJ,CAAC,cACPJ,IAAA,CAACR,IAAI,EAACuB,IAAI,MAACC,EAAE,CAAE,EAAG,CAAAN,QAAA,cAChBR,KAAA,CAACX,KAAK,EACJc,EAAE,CAAE,CACFY,OAAO,CAAE,CAAC,CACVC,OAAO,CAAE,MAAM,CACfC,QAAQ,CAAE,MAAM,CAChBC,aAAa,CAAE,QACjB,CAAE,CAAAV,QAAA,eAEFV,IAAA,CAACJ,UAAU,EAAAc,QAAA,CAAC,gBAAc,CAAY,CAAC,cACvCV,IAAA,CAACF,QAAQ,EAACuB,QAAQ,CAAC,gBAAgB,CAACC,QAAQ,CAAElB,QAAS,CAAE,CAAC,EACrD,CAAC,CACJ,CAAC,EACH,CAAC,EACJ,CAAC,CAEV,CAAC,CAED,cAAe,CAAAD,WAAW"},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
xinference/__init__.py,sha256=0LgIveLP6CXxoIaSrxhlFyOh0lOqPgJBVcBe0tkWJjc,987
|
|
2
2
|
xinference/_compat.py,sha256=SQAjZMGxtBIce45qtW7ob7RWzA0zhv2yB3AxT0rb0uU,1778
|
|
3
|
-
xinference/_version.py,sha256=
|
|
3
|
+
xinference/_version.py,sha256=zwuM7eROhusOEKsTLc2UykBmc5g2-YLkkGxG55s4if4,498
|
|
4
4
|
xinference/conftest.py,sha256=Qus4KWCeaKS7c5UgNCTpPNucD2bjV8P7u1_qRosgGno,9743
|
|
5
|
-
xinference/constants.py,sha256=
|
|
5
|
+
xinference/constants.py,sha256=30ZsGKQ7-dCsQLbI5NgbgYLQFPsoHxcojWtrFwzX1LQ,3300
|
|
6
6
|
xinference/device_utils.py,sha256=zswJiws3VyTIaNO8z-MOcsJH_UiPoePPiKK5zoNrjTA,3285
|
|
7
7
|
xinference/fields.py,sha256=0UtBFaDNzn1n9MRjyTkNrolsIML-TpZfudWOejqjni8,5245
|
|
8
8
|
xinference/isolation.py,sha256=uhkzVyL3fSYZSuFexkG6Jm-tRTC5I607uNg000BXAnE,1949
|
|
9
|
-
xinference/types.py,sha256=
|
|
9
|
+
xinference/types.py,sha256=QhStQTujUuw-6ps9LFC9VbceAopTBW_4gmuCv92HUwg,14237
|
|
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=eu3v9R9w-gyq5Azp3zeJvrdpYc_NqVAprTbhREpyMXg,66922
|
|
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,39 +18,40 @@ xinference/client/__init__.py,sha256=Gc4HOzAy_1cic5kXlso7hahYgw89CKvZSJDicEU461k
|
|
|
18
18
|
xinference/client/common.py,sha256=iciZRs5YjM2gYsXnwACPMaiBZp4_XpawWwfym0Iyu40,1617
|
|
19
19
|
xinference/client/handlers.py,sha256=3gd9C7u4URbcVdR6Eyv8cpEZ175Ll4q_jGL07CnEIpg,648
|
|
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=yUYrDAAy6FrJ-pAPO8BW_dmasf5wjFbQYmMf3XcABmA,48338
|
|
22
22
|
xinference/core/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
23
|
-
xinference/core/cache_tracker.py,sha256=
|
|
23
|
+
xinference/core/cache_tracker.py,sha256=2hk8ANOYruhxAt4MPz482tYEQcvYBh_B7sq0eYd0rTU,6963
|
|
24
24
|
xinference/core/chat_interface.py,sha256=7SOm6Qi-iFh1otycHpn6CpISq2wTLlJzEUngJtOwMIk,19558
|
|
25
|
-
xinference/core/event.py,sha256=
|
|
25
|
+
xinference/core/event.py,sha256=Lkx_-Ohwyzyt-MBbkrZy9N-7aeYs-wux0fDtZpa2SJY,1632
|
|
26
26
|
xinference/core/image_interface.py,sha256=G2iK24auEN4MrLkPlu1CAA_gf-BQrGQTjazi_FYqIxE,8825
|
|
27
27
|
xinference/core/metrics.py,sha256=ScmTG15Uq3h_ob72ybZSMWdnk8P4sUZFcm60f4ikSXc,2631
|
|
28
|
-
xinference/core/model.py,sha256=
|
|
28
|
+
xinference/core/model.py,sha256=9Fj7lQY9TZVU-PlsrN6VjQdISmRQk3gNfT8Y4PMl_-8,23730
|
|
29
29
|
xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
|
|
30
|
-
xinference/core/scheduler.py,sha256=
|
|
30
|
+
xinference/core/scheduler.py,sha256=3C3FT0CEF4dmKQvWnMQH1Ars0QrnJq_Eyb0w3a0WtVc,15514
|
|
31
31
|
xinference/core/status_guard.py,sha256=fF5hisvfn6es9DV6Z6RRD6V_S_uLcb8lHM6PArGgb04,2820
|
|
32
|
-
xinference/core/supervisor.py,sha256=
|
|
32
|
+
xinference/core/supervisor.py,sha256=Phrp6H20eKSS6FZZCLKzd78vRg4PeFqCsZ9TEJiNMIg,44836
|
|
33
33
|
xinference/core/utils.py,sha256=LqPrez5dGELRQDSwOD5EP8XHb-aUKAdyszS-QpNouuw,6401
|
|
34
|
-
xinference/core/worker.py,sha256=
|
|
34
|
+
xinference/core/worker.py,sha256=NRzkr92H0D4msLGciwSz7pyE2Uwt7Bw4kKFE7TY9A9k,35566
|
|
35
35
|
xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
36
|
-
xinference/deploy/cmdline.py,sha256=
|
|
36
|
+
xinference/deploy/cmdline.py,sha256=YtKyivl78n4LX2uFtblpXCcHSgAE0r8XWGC_UWSq-Jw,47088
|
|
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=PYdxLRARG-oZoQZtC-1t2Xve6ehjfuEITwAuDglDMIA,5377
|
|
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=
|
|
42
|
+
xinference/deploy/test/test_cmdline.py,sha256=6sONdu5lKYE-F-0fWaujFUvuy87KZl8IJv0kr0jVDI0,7666
|
|
43
43
|
xinference/locale/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
44
44
|
xinference/locale/utils.py,sha256=w-G1DAJGw1UUQVVtq6khOZn7ZjobUmTw6qwHMm2eWIs,1312
|
|
45
45
|
xinference/locale/zh_CN.json,sha256=YA55G9s1p05Bt5RBoDo5SV12dd-CMJI0ABap6RpCp4M,1097
|
|
46
46
|
xinference/model/__init__.py,sha256=IRC3ojiqYkVLIK_xsIxYeKypEeeTTdrovnVzK_4L4eg,663
|
|
47
47
|
xinference/model/core.py,sha256=nENyctnKtEBMakd_BpTbgCtLUeci3ak7QIwEk-pq4IM,3546
|
|
48
|
-
xinference/model/utils.py,sha256=
|
|
49
|
-
xinference/model/audio/__init__.py,sha256=
|
|
48
|
+
xinference/model/utils.py,sha256=NGIXgpkUY0dXGxnh-FsfeNq6OS9SPwBzNfASLXWCqUo,15146
|
|
49
|
+
xinference/model/audio/__init__.py,sha256=QyQwELIYk7DuD5Hen2q45pLMJ4K8iAnto8zlOA9QUSY,2839
|
|
50
50
|
xinference/model/audio/chattts.py,sha256=5ZFrRAh0dMLLGsXUUJVac6eh1LySJv7Eoe7cXx-eOdk,2606
|
|
51
|
-
xinference/model/audio/core.py,sha256=
|
|
52
|
-
xinference/model/audio/custom.py,sha256=
|
|
51
|
+
xinference/model/audio/core.py,sha256=oG9Ge-5-cOoOgvU9Q8Ndm3bD9-uJGNAg6UR2W9uXR6M,5215
|
|
52
|
+
xinference/model/audio/custom.py,sha256=01NTD927pairIBWOo9At6Bjqpo1kdcIn3AVijbOdp7Y,5056
|
|
53
53
|
xinference/model/audio/model_spec.json,sha256=ueOHO14d8lIzuiExJyPUgC3swYA3CfgOgMiDu5L1cOA,3205
|
|
54
|
+
xinference/model/audio/model_spec_modelscope.json,sha256=W40W8vxtumGbV-M07TqPVS-Hr8RJ4oZlYsnp_EnGC4Q,474
|
|
54
55
|
xinference/model/audio/utils.py,sha256=pwo5cHh8nvhyBa9f-17QaVpXMSjmbpGbPYKwBBtEhGM,717
|
|
55
56
|
xinference/model/audio/whisper.py,sha256=NjtaSAJcj_IpJX3drT9NPWNrprVbeLlsDq4uH8AZE8M,7772
|
|
56
57
|
xinference/model/embedding/__init__.py,sha256=0FLzOZyOuMctxFvhobkLXRUepwHck6RPbtjCct1eMI8,2854
|
|
@@ -67,13 +68,14 @@ xinference/model/image/model_spec_modelscope.json,sha256=KMI-2YOJoLUtN93LZiqqETW
|
|
|
67
68
|
xinference/model/image/utils.py,sha256=gxg8jJ2nYaDknzCcSC53WCy1slbB5aWU14AbJbfm6Z4,906
|
|
68
69
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
69
70
|
xinference/model/image/stable_diffusion/core.py,sha256=ib_ZeSg7hzynmRqSnhjtrVuhoLOgZPrR1ZH2LjBmH2E,6063
|
|
70
|
-
xinference/model/llm/__init__.py,sha256=
|
|
71
|
+
xinference/model/llm/__init__.py,sha256=JU6FggWUHuV6auwBkTMdsf8WCUhabIWFOyPrbj-1fHQ,11369
|
|
71
72
|
xinference/model/llm/core.py,sha256=CZJrbW3HaV8vJj5mxSnBD8ssABALG_xyXyPS0hHVBPY,7982
|
|
72
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
73
|
-
xinference/model/llm/llm_family.py,sha256=
|
|
74
|
-
xinference/model/llm/
|
|
73
|
+
xinference/model/llm/llm_family.json,sha256=8b2LyJB7at7Eop05Ib792KQGmiwjtqswBTsWb9IosTs,172236
|
|
74
|
+
xinference/model/llm/llm_family.py,sha256=lZ9xpuN1Koc9DOE0H6noOz3fYLYVqjmwWX_KXTMqe0M,40176
|
|
75
|
+
xinference/model/llm/llm_family_csghub.json,sha256=zWiMlX0mbCvuaR7gZh0qDPRPaswFJ-zKssuN6XuAQ6s,1417
|
|
76
|
+
xinference/model/llm/llm_family_modelscope.json,sha256=rTH8HYQxIhQItJS8sHW7fDTiQ5rgpNFj_ejK9J3D5Ng,107689
|
|
75
77
|
xinference/model/llm/memory.py,sha256=PTD8m6TCZVU1zrwc9wepX9cUjCqAXBENj6X7tjua0to,10207
|
|
76
|
-
xinference/model/llm/utils.py,sha256=
|
|
78
|
+
xinference/model/llm/utils.py,sha256=C04Z4OOmVAXegqil0WqdEardXGo3aeMDborrFi7wglk,32071
|
|
77
79
|
xinference/model/llm/ggml/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
78
80
|
xinference/model/llm/ggml/chatglm.py,sha256=qqCxVvPp4CZq0z6MuwTcVUMEkQJDjjXm6naJ6WfGOl0,16208
|
|
79
81
|
xinference/model/llm/ggml/llamacpp.py,sha256=7Fvt2h7AJ8P6xVRztcw0aJgteagjCeOZJ7RniN6VYqs,13345
|
|
@@ -82,28 +84,28 @@ xinference/model/llm/ggml/tools/convert_ggml_to_gguf.py,sha256=92To8eoVQBkDZD52_
|
|
|
82
84
|
xinference/model/llm/ggml/tools/gguf.py,sha256=Hv2haR-UN7NdB1N8YId32hFoEPd-JX6_aUNWRJhyJZc,30277
|
|
83
85
|
xinference/model/llm/pytorch/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
84
86
|
xinference/model/llm/pytorch/baichuan.py,sha256=TpCfi37Ou87VA8S5siGRUK5JWC5SjGbZYkZoTe9VSA8,2883
|
|
85
|
-
xinference/model/llm/pytorch/chatglm.py,sha256=
|
|
87
|
+
xinference/model/llm/pytorch/chatglm.py,sha256=ivtviQOOrC80hNX33nIStJxK5n4u31M9K5cxn3UkkZQ,10718
|
|
86
88
|
xinference/model/llm/pytorch/cogvlm2.py,sha256=pgyCvYQEkuniGHBoE_4jfL0d4EiwufFgTRb91FCwRt8,11552
|
|
87
89
|
xinference/model/llm/pytorch/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
|
|
88
|
-
xinference/model/llm/pytorch/core.py,sha256=
|
|
90
|
+
xinference/model/llm/pytorch/core.py,sha256=WLezvCHfKvyN30BOwekN9T5L_8KJs2o1DcdXiDFU3ZY,24958
|
|
89
91
|
xinference/model/llm/pytorch/deepseek_vl.py,sha256=T9DKP4cULvRaHSiU08lOWd_j6mt8b3ZIBByneZ0jY8U,11498
|
|
90
92
|
xinference/model/llm/pytorch/falcon.py,sha256=POSP7vzRJaM5PjvX8dh60jNDXgnCwktwSmeZ7kypQU0,4499
|
|
91
|
-
xinference/model/llm/pytorch/glm4v.py,sha256=
|
|
93
|
+
xinference/model/llm/pytorch/glm4v.py,sha256=P6OZLj01yWo9FmDPiGqySOoikRxwaRfSmv0XcFEk0Fo,10238
|
|
92
94
|
xinference/model/llm/pytorch/intern_vl.py,sha256=_7IxqtTODTOTfR_4BDQ1hSkgE_qLjAhdyNt7fz_AD20,13044
|
|
93
|
-
xinference/model/llm/pytorch/internlm2.py,sha256
|
|
95
|
+
xinference/model/llm/pytorch/internlm2.py,sha256=-gOpg2gAs508Il8uzCPDPpwqUrjY8tIFPtZeziEqsLs,7854
|
|
94
96
|
xinference/model/llm/pytorch/llama_2.py,sha256=HMhUmn4oYW2maeSMIr1yY7jlAOMD0OVAxnF0dnRWmio,3710
|
|
95
97
|
xinference/model/llm/pytorch/minicpmv25.py,sha256=8WCnxLqHRnICxJVC2gTLdo6y9Oh_yFshpMtHvfr-pBk,8496
|
|
96
98
|
xinference/model/llm/pytorch/omnilmm.py,sha256=4r6pipch1LU1FPA80sOCE7Z0k3TO_J8CIT7pmVmWKEM,5664
|
|
97
|
-
xinference/model/llm/pytorch/qwen_vl.py,sha256=
|
|
98
|
-
xinference/model/llm/pytorch/utils.py,sha256=
|
|
99
|
+
xinference/model/llm/pytorch/qwen_vl.py,sha256=93j9QWS3nGMptS0rbZQyfzGMvkcFMLF-oZdNVEzYJAg,9005
|
|
100
|
+
xinference/model/llm/pytorch/utils.py,sha256=s_7sicG0CgXdpBRA-6cVyPN5N7fCK9pmnCTLquJySlk,28246
|
|
99
101
|
xinference/model/llm/pytorch/vicuna.py,sha256=avNOgt9fBjwYzahL-j6-EcQS-7km167h8ttJolnNWnE,2334
|
|
100
102
|
xinference/model/llm/pytorch/yi_vl.py,sha256=MljT7tpgFIhL6n5rdoS3hmq_u0rtHRE6cxXCseujklQ,10911
|
|
101
103
|
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
102
104
|
xinference/model/llm/sglang/core.py,sha256=RGHy6t9n0c4zL6Uha8P7t-qPvisPyulFVHw-8Aq8CJ0,14046
|
|
103
105
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
104
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
106
|
+
xinference/model/llm/vllm/core.py,sha256=9AApr_byyvNHEnHuV7X6PZCMZFaCmqZ2oNU06nOGBBE,22082
|
|
105
107
|
xinference/model/rerank/__init__.py,sha256=BXIL1uu3ZpZHX9bODhW9lxKUXudZE7-OkXFmmM5rpMU,2817
|
|
106
|
-
xinference/model/rerank/core.py,sha256=
|
|
108
|
+
xinference/model/rerank/core.py,sha256=1p-GQyetQi1WpcPrILtSSmEnPN3xaDnYVb2LEZ7Mc4A,11541
|
|
107
109
|
xinference/model/rerank/custom.py,sha256=NKk7jA7p4xkuwS5WoOs2SY2wdnoAVpyCjBTvv317bBw,3917
|
|
108
110
|
xinference/model/rerank/model_spec.json,sha256=LCiiCdNz4NYt9vKVnHffk3ZpwvgzzHxe4zsaxOqxL18,1367
|
|
109
111
|
xinference/model/rerank/model_spec_modelscope.json,sha256=vSSC0aWy_DHnNDzzBcMWr2pqdISDmPS95FtD_YfMmn4,1275
|
|
@@ -111,6 +113,17 @@ xinference/model/rerank/utils.py,sha256=MJAFL47G3r3zLVGXKoi0QLTgU3Xr4Ffv72Ipn--p
|
|
|
111
113
|
xinference/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
114
|
xinference/thirdparty/ChatTTS/__init__.py,sha256=I5dDlOJkCgz3M24LSLvB9kz5bH_ZsQuP_iZY6mg_yw4,22
|
|
113
115
|
xinference/thirdparty/ChatTTS/core.py,sha256=RAay9e3oPOZA29wh6sUkHXqfx_UFTS0RR6fHpXPJCeE,8677
|
|
116
|
+
xinference/thirdparty/ChatTTS/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
117
|
+
xinference/thirdparty/ChatTTS/experimental/llm.py,sha256=bauIrF6FZPL_CIPfEKGQJfgzYzr3IvJGFEu4K7cncRo,3120
|
|
118
|
+
xinference/thirdparty/ChatTTS/infer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
119
|
+
xinference/thirdparty/ChatTTS/infer/api.py,sha256=2ebUmglWkp1wRuXY4cgaLG_QUglXqYWW1CMjkkeyf3k,4267
|
|
120
|
+
xinference/thirdparty/ChatTTS/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
|
+
xinference/thirdparty/ChatTTS/model/dvae.py,sha256=HB-RakiiEgYGGaqfe8RwsTTVDINzDty8KvFweAsy_5M,4958
|
|
122
|
+
xinference/thirdparty/ChatTTS/model/gpt.py,sha256=Ub6_72-NwD1PJVnyaHSEZoD12gktBid9b1-R6J69Dqk,11713
|
|
123
|
+
xinference/thirdparty/ChatTTS/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
124
|
+
xinference/thirdparty/ChatTTS/utils/gpu_utils.py,sha256=i26XJnAtevCGiFhFtu8ZsnDvnfAqdvaSyWVzlgEKkx8,929
|
|
125
|
+
xinference/thirdparty/ChatTTS/utils/infer_utils.py,sha256=DHkpAn9TQ0NCaN_zpXIzjUgebT9AidV-WVSovf80JM8,3812
|
|
126
|
+
xinference/thirdparty/ChatTTS/utils/io_utils.py,sha256=tlYppWt3PoC5UX_FUJwLKDCDBzfH6tvLLQF8kp4hsZs,384
|
|
114
127
|
xinference/thirdparty/deepseek_vl/__init__.py,sha256=N5CYTfTFEiTT7mrNrrGTSyvDOVkGVO3pE_fWm8ugcAw,1458
|
|
115
128
|
xinference/thirdparty/deepseek_vl/models/__init__.py,sha256=gVJoBKpRfny6w_QpTrTh_iCqUtVJZLuctzfPQq-dKDw,1328
|
|
116
129
|
xinference/thirdparty/deepseek_vl/models/clip_encoder.py,sha256=tn-uTCAcb63WOX6cB0rl2ynOsum23xy1tAvBqPbIHHo,8197
|
|
@@ -148,14 +161,14 @@ xinference/thirdparty/omnilmm/train/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY
|
|
|
148
161
|
xinference/thirdparty/omnilmm/train/train_utils.py,sha256=L4JtFWDKtdEcQYpGW-UV6GCswTqHkiskK3phM9J-xUM,5634
|
|
149
162
|
xinference/web/ui/package-lock.json,sha256=l-6VBG39LwkPggB5xwKZEip74w_7keFmAW5QQGjs0M8,767866
|
|
150
163
|
xinference/web/ui/package.json,sha256=W0Bq0vT0HOALv-nFo34Fos3r6DKrjR7zAL5swLg5qZg,1987
|
|
151
|
-
xinference/web/ui/build/asset-manifest.json,sha256=
|
|
164
|
+
xinference/web/ui/build/asset-manifest.json,sha256=fkqsTOhNzSL1YdMLHWC-XkJfzUstLBayF1s63z5SsYg,453
|
|
152
165
|
xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
|
|
153
|
-
xinference/web/ui/build/index.html,sha256=
|
|
154
|
-
xinference/web/ui/build/static/css/main.
|
|
155
|
-
xinference/web/ui/build/static/css/main.
|
|
156
|
-
xinference/web/ui/build/static/js/main.
|
|
157
|
-
xinference/web/ui/build/static/js/main.
|
|
158
|
-
xinference/web/ui/build/static/js/main.
|
|
166
|
+
xinference/web/ui/build/index.html,sha256=fUt-87yVt1YYQN7FtcqUljMdnsuwuYjJo4hDsKYflIU,650
|
|
167
|
+
xinference/web/ui/build/static/css/main.4bafd904.css,sha256=B1LOr0CAJXDztw7bSsJMTmEwdzqnciZOYjgeBSO25cQ,3910
|
|
168
|
+
xinference/web/ui/build/static/css/main.4bafd904.css.map,sha256=rIbo5tZ_vpOnVcUwFk29B6UpEffrfphEQ3XKUAuG49E,7794
|
|
169
|
+
xinference/web/ui/build/static/js/main.b80d9c08.js,sha256=bccGm6tKHYDRaI-aTEF_qvt7xCkO8-HksLpTUhBLBPI,974069
|
|
170
|
+
xinference/web/ui/build/static/js/main.b80d9c08.js.LICENSE.txt,sha256=rbybPZZs56fvnjMiAklb5AB-cE9DLmWrrraygrxIG3I,2279
|
|
171
|
+
xinference/web/ui/build/static/js/main.b80d9c08.js.map,sha256=zBUghY3aQK9tlyS5sN5u_tYe6M0wfAVVu7DJjRK7aA0,4342612
|
|
159
172
|
xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
|
|
160
173
|
xinference/web/ui/node_modules/.package-lock.json,sha256=TiGKTauADRWUfO6X9URCfruDRh_J1_vD5tqMVdoKD0o,765826
|
|
161
174
|
xinference/web/ui/node_modules/.cache/babel-loader/000791038e4133db461021f1018491323a006cca7a53e09c2ac35032bc36d8b6.json,sha256=lcvLWh7kYVCN6ZBwqKJYmnST8it8tv7i7gOzsbV5Gas,1358
|
|
@@ -727,6 +740,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/0c1abe8865efaf308ba7f8d12e896
|
|
|
727
740
|
xinference/web/ui/node_modules/.cache/babel-loader/0c1d29f4bb01e34a73ca92c64007aa1b85e728e637bd1ff5ab165113447556c2.json,sha256=JFnTvaTDLceTVqpb4vXtTNWpHooQZxDxTxSvQVQHQvc,1375
|
|
728
741
|
xinference/web/ui/node_modules/.cache/babel-loader/0c2897e2f6e8248e04810baba5ab943c2d070deb5a2b988fcf6f5857603f941d.json,sha256=lRNaeWzTF1PykM8S3ORfHcjoMCG-wv-k6aq7ru5T8ak,1564
|
|
729
742
|
xinference/web/ui/node_modules/.cache/babel-loader/0c2a4521d950a13726e9bb7ebc8d7f1a638d5f2d809585985f8738d061c09526.json,sha256=amWLm1opIqUnLEH9yzmliE--hQYLveRz78mTfBNDgwY,1839
|
|
743
|
+
xinference/web/ui/node_modules/.cache/babel-loader/0c2fb5375667931c4a331c99e0d87dc145e8f327cea3f44d6e56f54c7c1d4020.json,sha256=KJOEg1-WHHA_BYUZEOdnFwd-I2ii4-_WMUDZZmxmtHU,4695
|
|
730
744
|
xinference/web/ui/node_modules/.cache/babel-loader/0c3a88e12fa4c25b6b036a253f2911a647587aadae3c541fc7f48619c9938824.json,sha256=ls9w88yhJ-a2HVbLIIbt4X7wEEKQzzDj2ZgspEW9QDg,1612
|
|
731
745
|
xinference/web/ui/node_modules/.cache/babel-loader/0c3ad08c2acca6ec2ab227c12da4e6c05e33f961afe9c627591dcf72532b48b9.json,sha256=1Pz3nQWMGgyrk3-FRW1-QylWtizaogw46ZYRVvkjl9U,1076
|
|
732
746
|
xinference/web/ui/node_modules/.cache/babel-loader/0c3dab9d5d8c46473e72a47302311b78549619e0bec98ce83cf5a5931e0d3ee0.json,sha256=E0-d0_2FF2keHBVOU-QVV5zxXhlk0_Y8aUywFb4Uc4Y,2829
|
|
@@ -1076,6 +1090,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/12f19dc0bdbc1121c008f7810380a
|
|
|
1076
1090
|
xinference/web/ui/node_modules/.cache/babel-loader/12fd6ed6006d6b8b1390b68853450bcf7c7515550f5d7b3fa298f1004f5abb86.json,sha256=M3__WoSREQlheWv0FrqJR8dNz_7FeXpHfDY7N_wIJ-w,2316
|
|
1077
1091
|
xinference/web/ui/node_modules/.cache/babel-loader/1305de09f9b2e72d05ccd127b6b360906734ba72af438c4d80fe76cb79caf1ad.json,sha256=lJzdsnERj9OzVc55ldlxrrZglm50XPNkG39_zw1fRfI,1020
|
|
1078
1092
|
xinference/web/ui/node_modules/.cache/babel-loader/1308db427294fd6240871eb772015ee356d6f99a475516c9f9182a6eb5788a51.json,sha256=Ag2QVFFq7q3irRsE5NmC5Z1XbYAY5lY9vVbi4OLVOm0,1812
|
|
1093
|
+
xinference/web/ui/node_modules/.cache/babel-loader/131091b25d26b17cdca187d7542a21475c211138d900cf667682260e76ef9463.json,sha256=eYuGvbM2Z-2ToNpK3k8vbOAHnNSnbfKHRw99DYV-oTc,16092
|
|
1079
1094
|
xinference/web/ui/node_modules/.cache/babel-loader/13113a1b0164c18019d3b7e6d337941be991051580bc72c33e1710372800ae31.json,sha256=19dZqsDur0-a-qSJ02aKgmMQ6qQ9JfPXzdWLl8Ogb9A,1162
|
|
1080
1095
|
xinference/web/ui/node_modules/.cache/babel-loader/1312bc07b9de60154ab79ce8430d36189c84271278097d08648848b2efe16ffa.json,sha256=Rv0gIDD0TfRBBq-iOlQao-bWLAOF7Sg-EvJXVbOCol4,1135
|
|
1081
1096
|
xinference/web/ui/node_modules/.cache/babel-loader/13145be980fcaa8415d92a663724f8f586b8331fa7f6b6fc9d1d8a7f9ed8b324.json,sha256=C7Ou_GDrF-qqhGfiMZFDPWSaJ56Rly_7nNwoTdUm0ds,428
|
|
@@ -1205,7 +1220,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/15d4f1f8c9febb19ca134c07e7888
|
|
|
1205
1220
|
xinference/web/ui/node_modules/.cache/babel-loader/15d4f28e10a47e7344728329c30c0d2fc2432f2be442834fbda0e85e4823c3d5.json,sha256=I8wBIYe9OYHa8knH6r39Ug7S_XXnKivnkaTftZhozHI,1698
|
|
1206
1221
|
xinference/web/ui/node_modules/.cache/babel-loader/15d8690f7f147da8f9531e7a584448675b34fedd9bbb74fd77160ecb17a73000.json,sha256=hyYaXdYfmIlqdJDr-Ohw-qnfzN30dJ9C4iBjAP6MyFg,1440
|
|
1207
1222
|
xinference/web/ui/node_modules/.cache/babel-loader/15dd945edcdad0e5afb9f298cd92503e85d9de3924fc3d267e0490a7b0903b91.json,sha256=F5_fS-rpYpJzcW65fiWe_i6PEmh9h71ABhTNzwkG29A,1403
|
|
1208
|
-
xinference/web/ui/node_modules/.cache/babel-loader/15e2cf8cd8d0989719b6349428ff576f9009ff4c2dcc52378be0bd938e82495e.json,sha256=volP_wQQ4A-VXfzKTsKM41MFeLRiG_DD-ul5ZVN0wNU,3861
|
|
1209
1223
|
xinference/web/ui/node_modules/.cache/babel-loader/15ebb4f7fc7ed8810b52a295406c13dac763b4fde30cdcccfec24d3aebffcbfb.json,sha256=Uaek7Lvf4GNNf-kppeYoFMg53YCIVu56Sf8tHqJA_jk,1536
|
|
1210
1224
|
xinference/web/ui/node_modules/.cache/babel-loader/15f3026b73d7bde809296f49c5fc9e485e2901e7e4361f1995b6b5686cdf8988.json,sha256=RoA12aoUvP5Vhygp5egu_SLvXMmnHIH3q5sAu9OZda0,1834
|
|
1211
1225
|
xinference/web/ui/node_modules/.cache/babel-loader/15f4ca1d2b5ae7c08473c6c7ee09942054b48c9b8e343e15fb28d6fd32e359a2.json,sha256=CpZn1mMxsKvQKB-rkq0TegP5YwcT9IGw65oFTczMjE4,1309
|
|
@@ -1224,6 +1238,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/164b6e2af61b64b3711b973ec149a
|
|
|
1224
1238
|
xinference/web/ui/node_modules/.cache/babel-loader/164c5526fbcedbbe2b44b45351174cc1cdd6bf798d5cf4684ceb0f8953209b91.json,sha256=iSIfeLuy-KpX2MkItbpUSr8caaBsns-KHu0DAmMsMpo,1059
|
|
1225
1239
|
xinference/web/ui/node_modules/.cache/babel-loader/164e1534ef30feb5670a31672c4f203755690c9686f1b1c19c8bf44c1046db3e.json,sha256=vGqVv9AuupIz9-QsWagYYXUILxXU4zyLO68m5Y76jMQ,1117
|
|
1226
1240
|
xinference/web/ui/node_modules/.cache/babel-loader/16530cb2c13d25db93f02ef05965c18d61529919a8b4341ff944805eae2c9d62.json,sha256=Xppq3ZQNaWk96Q92ekDj-qn5SxR5eXnGXtCxR1e6XcA,18683
|
|
1241
|
+
xinference/web/ui/node_modules/.cache/babel-loader/16537795de12c61903b6110c241f62a7855b2d0fc1e7c3d1faa347267f3a6893.json,sha256=qmWUo_QsbYK6YENnpLskvSKA9Grk8QGmmSxP1v9IBzU,15879
|
|
1227
1242
|
xinference/web/ui/node_modules/.cache/babel-loader/1653c48f0440dc2e9255536753f126e4089be9c30baea82cc02c1266178a83fb.json,sha256=3tQ8BSaluHfFsRkctwnvkABMg61TrOfQcOdsBPs4A8c,1490
|
|
1228
1243
|
xinference/web/ui/node_modules/.cache/babel-loader/1655008614d5f02eebe73b6ae335e44a5e4f163dd4c2bf422891506f7d71aaf1.json,sha256=bwLZOq3k2-xzy9-KxFVd-W-8ROg3ugW5xCTrfgcH-eo,1679
|
|
1229
1244
|
xinference/web/ui/node_modules/.cache/babel-loader/165d21cad60ae59b64ec4290f54885efe1737850a023cf971dbc9e5be9b84767.json,sha256=2i7YpVvMibvTQmQCUY7j2mxTXZc0cZYEwWpFdPSeDEU,2119
|
|
@@ -1304,6 +1319,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/17a139ed4f10585d4810eefbaa6f2
|
|
|
1304
1319
|
xinference/web/ui/node_modules/.cache/babel-loader/17aa500517bfec0f93c75b3b62ac19836cf01b1d379928261ae76aff74162c99.json,sha256=3sP0Gih5pbbMv-zSysT-3em63-eINiDi9oUYj7inuKM,1072
|
|
1305
1320
|
xinference/web/ui/node_modules/.cache/babel-loader/17b6feb8b5a122465488ebae52b29dc98960942d29d953611f4df2a4637b3445.json,sha256=PiRj28zMTDHEsgDrgtaQKwUmeVf_3FdueqoPhq-SDvI,1034
|
|
1306
1321
|
xinference/web/ui/node_modules/.cache/babel-loader/17b86132fb86e1416025e04a87dbc0b2672094ecfeef5fbbb9d132441e19a537.json,sha256=yjapbW1J_JPae15WJKsuUmJ0hJ-oMx7qjsFP8Tbnn6I,1247
|
|
1322
|
+
xinference/web/ui/node_modules/.cache/babel-loader/17b8f071491402d70b146532358b1a612226e5dc7b3e8755a1322d27b4680cee.json,sha256=tPvsS7X0HwdwD-4_rkj_veLgXOvM5LTypj2mXnddFjc,3898
|
|
1307
1323
|
xinference/web/ui/node_modules/.cache/babel-loader/17b9cda0caf4cf8d3a10b08b640bc1e863665157c9eafd58feb028b95e565542.json,sha256=c8JGwAfLovIO6Rbcn_wHqxy-89hiGHJ9rqkoHJAtgaA,709
|
|
1308
1324
|
xinference/web/ui/node_modules/.cache/babel-loader/17ba3487b4fc9cd406761a85c93461ce55c04d508d593e1ec0a5071442597823.json,sha256=ynhd2nniBNQ-vUR4mJQw-Qh13K1HhIVUlNzqJDNJicA,1350
|
|
1309
1325
|
xinference/web/ui/node_modules/.cache/babel-loader/17c1cecb450f35b3d90a149be44ff19df33b8aeaaa42efcebb2031cf97c39d36.json,sha256=SU8e71Dd-GkU0s9MwBM_lGygtF0bIR1aPOlvTccZFKs,2006
|
|
@@ -1640,7 +1656,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/1e7a5af87904f2a4b3d0319635dc0
|
|
|
1640
1656
|
xinference/web/ui/node_modules/.cache/babel-loader/1e7a7e05ec9ccd3205dd12934aa0b0d024ecab78c87cc8dc68626da16535ba46.json,sha256=Y4Idr2ndx5P_pkBwNl82ov0KiUAb9wIfnv-9Ff4CRwE,1192
|
|
1641
1657
|
xinference/web/ui/node_modules/.cache/babel-loader/1e84c2b6a872331ea3f3640c60fff47d53ed177185becb05ae955349eac229af.json,sha256=7LT6XXU43uBHqZqBhwMo8QQCl_5l_Ihk3W2L3-v5ZPM,2488
|
|
1642
1658
|
xinference/web/ui/node_modules/.cache/babel-loader/1e86460c878ea3b07313d409269ee358c52007f9b6ec59e9707f66e9aa975da5.json,sha256=iUsMuW3djkRoX-u6fW2M2ND_src7GnvvrxNwIMahLJA,3741
|
|
1643
|
-
xinference/web/ui/node_modules/.cache/babel-loader/1e86938a0cdf706d21e99b21f5d868fa247c0c88b26807047e26dcdc4d9a9db3.json,sha256=BA0ITztl3kYf_9cYHEplqD0B9_7_a9-airylQKR1O2M,15616
|
|
1644
1659
|
xinference/web/ui/node_modules/.cache/babel-loader/1e9266b7342c69c2d78999a0721eacdaaf7ea492a02f99b0cc04d3560516a672.json,sha256=aXGOy-C8CXEi0PVuEOa-L-oLxpzKynbzE0Erdm04wTw,1588
|
|
1645
1660
|
xinference/web/ui/node_modules/.cache/babel-loader/1e92dc4af7bf1d5bb828bcc70d2e7101a2a114c69fffc1353307071aab48b83a.json,sha256=9eJ6pwM3dz9kZ7-FIT52BKmJkI1-jcxvDaGJZiM2N60,2675
|
|
1646
1661
|
xinference/web/ui/node_modules/.cache/babel-loader/1e9d97c3a5cc195cdae678f647e449b152f397c0426a8ee3878fcdc6e74fb416.json,sha256=f6Sqzo1VhFjKNLljSZ4_71qpMdFx11Q66LacKoY3gR4,757
|
|
@@ -1696,7 +1711,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/1f9275573aaf589903cb887b4704b
|
|
|
1696
1711
|
xinference/web/ui/node_modules/.cache/babel-loader/1f9709c3bfb96565e13095ab3f1bfd292fe914cef9909ef9d14aa42ee135d51a.json,sha256=BMcXG-A_a_Aem229rZN6KVAGamqHmrvw0ZvsJYB31hg,1421
|
|
1697
1712
|
xinference/web/ui/node_modules/.cache/babel-loader/1f9bee33e067d74988af08cbbea6e1b20cfebc071f885b0f5a472541cbed6ec2.json,sha256=5_8PMXOJXhxrewyJsyJCp__idnhY-5QbU5Xx5qKwcvQ,1500
|
|
1698
1713
|
xinference/web/ui/node_modules/.cache/babel-loader/1f9d3e98d9d75883b1c25d637ad32a000631788fb7f730c74221cbf11e52e7c2.json,sha256=uxyk75PpJ614eArQgcXUjarNJ70yTEE2l37PjZKGxFY,1475
|
|
1699
|
-
xinference/web/ui/node_modules/.cache/babel-loader/1fa824d82b2af519de7700c594e50bde4bbca60d13bd3fabff576802e4070304.json,sha256=9b88UByDgWuhZxSGFn1hFUrQbDC5KQ_ZqVoxyDRUnTs,11171
|
|
1700
1714
|
xinference/web/ui/node_modules/.cache/babel-loader/1fa950f4cdcb6de564290ef10fd62855d0f15afd564eaabec88ce83dbb545284.json,sha256=Pn2hxa6b_VRiR3Rnm5Vhk2I-C2iMBZpO0FZCF0XMNBY,1147
|
|
1701
1715
|
xinference/web/ui/node_modules/.cache/babel-loader/1fb0a2c42b9d6d6a6714e402cdde3a8bef0541249f383eead9e0fef194d1a467.json,sha256=0oF0dUXLQag_QuLPzF3WnsQKYEJQ1BKMg31EfMeWJjc,1396
|
|
1702
1716
|
xinference/web/ui/node_modules/.cache/babel-loader/1fb3d944dbc65105f20534b7c5095baf4f491b0f079fca9b81741e4e4e4542f1.json,sha256=27skkqbCkQR2aIyk8cRwbVVaPfUQp_864Kqzu1rGhfg,2406
|
|
@@ -2281,7 +2295,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/2c4da207b6b1f6072a467142c738c
|
|
|
2281
2295
|
xinference/web/ui/node_modules/.cache/babel-loader/2c5133363486d54687558b3187e5e1bb561b746e83d456876728ca3cb7882fe6.json,sha256=D7-1IgbccyEOXFLfEOhr9Vn3EmcbSeMt-z4CSWlD6Pw,1377
|
|
2282
2296
|
xinference/web/ui/node_modules/.cache/babel-loader/2c5b6d98bec543f42460c5b5c162475b3beffdad04c1da84779ba56f5b2b6cba.json,sha256=b8utd71ppK8gBk0SedyDesmPtdqVWek3TmjV5HFLfCQ,1280
|
|
2283
2297
|
xinference/web/ui/node_modules/.cache/babel-loader/2c5d117d6f55af6667468597273065d9606af53480cbaf064cf8635930ca467d.json,sha256=NKwnZiL9NhaIuaHiQwudxduQMXGW0OFPTBIXIa4vwZc,2035
|
|
2284
|
-
xinference/web/ui/node_modules/.cache/babel-loader/2c63e940b945fd5817157e08a42b889b30d668ea4c91332f48ef2b1b9d26f520.json,sha256=apdUyWn6qFpYFpIeoUAr0tAhLJHpMg7lSEtYeyi535s,12277
|
|
2285
2298
|
xinference/web/ui/node_modules/.cache/babel-loader/2c642c9cd68f5250d03705c9be258b9c5400df44d1645225cef95b584d13473c.json,sha256=2YwuJx1Zr5KF5m0mT0-x8AnlSfmunVmEZ6N86b-J-HQ,1025
|
|
2286
2299
|
xinference/web/ui/node_modules/.cache/babel-loader/2c659121fbc6fa6283330347d457f4e1909277b63350b8e90ece55a3dbc07728.json,sha256=r70Jh_kyhsC6I8MDa7CbhDx49b4GDAOMflHm5QF6t0s,1301
|
|
2287
2300
|
xinference/web/ui/node_modules/.cache/babel-loader/2c6651caafb8daf2eb4aa3a6bf54be817f7cba161a00fcee023b6b68e2afc0d5.json,sha256=QO77k7MJAEa0xrrZ30hlVN9jt8WmJQ0PrVZpE1fLAdA,1688
|
|
@@ -2910,6 +2923,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/393cb8a1c7d161d539c1711d50580
|
|
|
2910
2923
|
xinference/web/ui/node_modules/.cache/babel-loader/393e15cd2be4ffb9a2f6117a9144ea7b8b4affacb0bef95391eb334ac43073fe.json,sha256=iPftkTJyttiCopfBrgkblInXgNa4OGtdu8LQuDUrZ5k,1120
|
|
2911
2924
|
xinference/web/ui/node_modules/.cache/babel-loader/394f1d2ccdb61ac1679e31217e9a76c302a398a372706d8281c49c1901da7dbc.json,sha256=9CXLsnrN1CYcmAtWHYyCN9WMUR3kbpLIOIrm6yFsrxA,1653
|
|
2912
2925
|
xinference/web/ui/node_modules/.cache/babel-loader/3950813188bfa2e6d5d6e05622becdb9ef772edb93c9bbcb1bcbe75ab8af955a.json,sha256=B4eSus8-VKPb1DT2cqGeAB36VmzahiKBkLZQQXMAlLM,1187
|
|
2926
|
+
xinference/web/ui/node_modules/.cache/babel-loader/395409bd005e19d48b437c48d88e5126c7865ba9631fe98535333c952e383dc5.json,sha256=gUBTSshxCdg5tiQ-QZaIIqb6wb0N0XxKkaOMYVB2V-A,92120
|
|
2913
2927
|
xinference/web/ui/node_modules/.cache/babel-loader/39560348c98e2a49300f108807d4ead47874b441117d08b259becd5039c3ff02.json,sha256=LG08lRgpZqzfxsHRRKRA6beUEv-DKqIxLdHKOAwchqE,768
|
|
2914
2928
|
xinference/web/ui/node_modules/.cache/babel-loader/3957da121c86e45b6279624d3bf5a9c00b9189fbe406998d4e8b6dbff53ee9c1.json,sha256=QgfPhSa4aa7JbzT6-Cjpv8PLJIP3cWJEMilI5V6mwrw,1260
|
|
2915
2929
|
xinference/web/ui/node_modules/.cache/babel-loader/3959423382d0ebd976061ab5637932797a7f5fb6eb895f495b45bf4311555e5a.json,sha256=tyFOl4HF--0Y-h-pSYWfY_uuAStcskAQFwORXwV-bYg,1137
|
|
@@ -3039,7 +3053,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/3c1480215b30f8aba9e16d1751c46
|
|
|
3039
3053
|
xinference/web/ui/node_modules/.cache/babel-loader/3c2137a5dbfbe60d9952d34b251ebab91e94adb4a3fa5bb462ab2b6c470ca96b.json,sha256=Z7YhFWTpM5tz1CMihzoipjwAeRzyDgy95z13jE94aaQ,1460
|
|
3040
3054
|
xinference/web/ui/node_modules/.cache/babel-loader/3c2cd0fb7582eb69ff3f105d29bc039891b19ce21070707caffed6a54a41dc5f.json,sha256=7Qv0C9bZTxvCjNcv6FoI_Jq9UFZigSq10YkBkd_ohUk,1483
|
|
3041
3055
|
xinference/web/ui/node_modules/.cache/babel-loader/3c2e9f59bc7cf37f62bbe7c3b9f9549a196d6dc5627686802d0050b223aba726.json,sha256=U-f8OmfDJcNrRFweTRwWnlOtZ_SnV1cZ07CJOE3-ZCI,1524
|
|
3042
|
-
xinference/web/ui/node_modules/.cache/babel-loader/3c2f277c93c5f1638e08db38df0d0fb4e58d1c5571aea03241a5c04ff4094704.json,sha256=CKTbNbvv7lmYEbILpbH1iFCKx50EO5Eo2cfjXN7iowo,801
|
|
3043
3056
|
xinference/web/ui/node_modules/.cache/babel-loader/3c326151a07bc75c6f1e3b3132560a01f855eb2d451fcde85d5eac275cd82514.json,sha256=mp9DrQcJjPzls2MVv8XOUA85bAvKvAIWdtWt5Qc9izA,1453
|
|
3044
3057
|
xinference/web/ui/node_modules/.cache/babel-loader/3c329a7725b8d04f64ae0e921ff4bb5ba1d26a250d70a015a0f363069d938d81.json,sha256=sEIWNG9pweI8ivY_IiDD45jyE4E_UrPknvv7cTcLecs,1307
|
|
3045
3058
|
xinference/web/ui/node_modules/.cache/babel-loader/3c34f020a51db10fdb04d1dc9cb540f8c95ca58bfec3549550e9df1033e3d681.json,sha256=TTAEW104fTY9nkFF62aJrpz5c_NAKSrTExMqbX8I7As,1208
|
|
@@ -3120,6 +3133,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/3d8a04e48f425dfb6e8ac8cf0a635
|
|
|
3120
3133
|
xinference/web/ui/node_modules/.cache/babel-loader/3d9161c7d59a7a3f89808f42a0a6aad1eb4f292f60c740369295c1a4b8920421.json,sha256=Apd6yV51SxvwE9_K5Q73Egzt1IgfQ2mDBcp6fGitdsM,1741
|
|
3121
3134
|
xinference/web/ui/node_modules/.cache/babel-loader/3d99ad8fc21841d5ae3ffcb63fab67964c27c2911d15630ca0d1b74c74c2cee8.json,sha256=Jy6y_VtEQ6J3zgTGbBP65NHR1j9zwDwioS6gDWm2TsI,1608
|
|
3122
3135
|
xinference/web/ui/node_modules/.cache/babel-loader/3d9c63a2379d516d454a07c8da14b23d87cd4298151b78a559c09ce65b479869.json,sha256=-pECbrjGns-3Fi4eEhA-De5xVz4hzXKeozu2nETkLmE,2405
|
|
3136
|
+
xinference/web/ui/node_modules/.cache/babel-loader/3da7d55e87882a4af923e187b1351160e34ca102f589086439c15131a227fb6e.json,sha256=aR3aOTo7KksR5xGc-UhEU-Q1P_k4UIjwKUoeh72okLI,13094
|
|
3123
3137
|
xinference/web/ui/node_modules/.cache/babel-loader/3dab93b4a8ea48731aff841e3c702cbd5a84a61d7d8ecf0c8583588bb82ac0e4.json,sha256=RB5GpYaDvMz1Vl64IsHggYqrZ9jdvEuYs9ahjtNHhuE,9345
|
|
3124
3138
|
xinference/web/ui/node_modules/.cache/babel-loader/3daf389c2ceffe01cef51057cccf94be3379a5c3e60e5e51949c47134d3e89ca.json,sha256=m0xR-UHUcnLBud_Vg5S_Kp36Uxm_HBTcVBOfRAcDZEo,590
|
|
3125
3139
|
xinference/web/ui/node_modules/.cache/babel-loader/3daf7e1aa1027ae8ed284a00b20115be5c966fe30f1e4cc0e41fd887d32162d8.json,sha256=esB7Pbhg1znAB5OXSZDPalNTmHzG_Px6a3u88YeRRUY,1108
|
|
@@ -3145,7 +3159,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/3e46df4a969b2d4708b4f671e6fb0
|
|
|
3145
3159
|
xinference/web/ui/node_modules/.cache/babel-loader/3e4b487ec26bb8e315c5cef06b347775c56a0667f7bf987875475feeda3088c9.json,sha256=PlQq6JHIhlCCyUHk8x_og0J3YTsvp6gjqQn3UTq9SUo,1147
|
|
3146
3160
|
xinference/web/ui/node_modules/.cache/babel-loader/3e6777cd4b9bb274b10ab31358817db3432adb6807eac4fda5d370bb7de5597b.json,sha256=8fELWEiBJhj0sy9GRDZarz817FUshzR96xrjySG9X5g,2776
|
|
3147
3161
|
xinference/web/ui/node_modules/.cache/babel-loader/3e701477f8a1df79ab5361f80c77c31a796ddb74b1deff5cd838d1a7abdc6d8e.json,sha256=Y0IjP6LuPEeLaUUb69TIJKnLIm8hmbYmn_qY60rfP9Q,1244
|
|
3148
|
-
xinference/web/ui/node_modules/.cache/babel-loader/3e737bcdbcbc407ccd65b90e199ef0c3214b261e8e41dbf14d921384a717d9ee.json,sha256=oCEjFJQUfro5wU7UOB1OtYSVj2CkF2axLeCGWaqym8E,5927
|
|
3149
3162
|
xinference/web/ui/node_modules/.cache/babel-loader/3e816ac6d6082f552f1c6bc86c98251989cee003772bea22c2c52722cf232672.json,sha256=el6EYgWzr4GPQ6ky5uYkpCl7DwrONvxuvmq8A9961uc,1365
|
|
3150
3163
|
xinference/web/ui/node_modules/.cache/babel-loader/3e87c7d4f1e5c93603eed3e861945e44dd1e664061a89aaef1aa6435f4f4d7d0.json,sha256=rcdHS_EkNAKFe872GsF5Lg25BAsdBiYUDVkywNcJvAU,5487
|
|
3151
3164
|
xinference/web/ui/node_modules/.cache/babel-loader/3e8a17103e4969b5475994091cb605ef4b67555d61f175f8b25a96a4479de561.json,sha256=LTrBGYJbJff8xkLTXA7g50azhEz0bhJNNpUB-c4-JDM,1660
|
|
@@ -3280,7 +3293,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/41262c8adab0e68af8328b3a68bf2
|
|
|
3280
3293
|
xinference/web/ui/node_modules/.cache/babel-loader/412d7e603551e190b33b62e18d17e115d2ac37191920d695195f91d36e3e8d5c.json,sha256=Mzx_9rvciLBrJSUHfqGSBEMyyBQrlzanl8bKEbjZFgU,1378
|
|
3281
3294
|
xinference/web/ui/node_modules/.cache/babel-loader/4131696e2bf034ee71f2866d4c60fae36265035004ad68dbd8deee4f73fd4279.json,sha256=V_EgBjS11sll3s7PBw8rf4PQZaGhNmDWue7WJMxsEaU,1450
|
|
3282
3295
|
xinference/web/ui/node_modules/.cache/babel-loader/4134956769556ddd168484f5bb8f64d177ed8e266ec6774298bd7f253bfdbb98.json,sha256=xqaKLb0RVtj1IZ8XXD-xFtI7r1Ba3fGb2sz3R2yCA6M,1388
|
|
3283
|
-
xinference/web/ui/node_modules/.cache/babel-loader/4135fe8745434cbce6438d1ebfa47422e0c77d884db4edc75c8bf32ea1d50621.json,sha256=LNSjZoOhB-I8q_L0dDQvsOcpkrCRiFQkS9pKFk5m_Ac,19654
|
|
3284
3296
|
xinference/web/ui/node_modules/.cache/babel-loader/413861ba99304c15aec218803156df28226889a5c8ba039b648ae98429adfcf3.json,sha256=B-_e9IZf-OL8VxI7mYIY6zSiGEhmU9NfZkYIY-5udhw,3100
|
|
3285
3297
|
xinference/web/ui/node_modules/.cache/babel-loader/413921e71cb7cf1137871570d3fc4f82bf3c0c16f069cecb89b9ef2a468203d2.json,sha256=bWwGdAsRsFMzFtv6c9QxM05n2dwW1XkxCuTiM6YOFvo,1026
|
|
3286
3298
|
xinference/web/ui/node_modules/.cache/babel-loader/413f868a3fd94b444a869683f3d68878276c2843340a8567bbe6de448479215a.json,sha256=4UyZpCCs23HCJZSVBThiK2UlTHPuXJpLWrRP3RFPgK4,291
|
|
@@ -3402,6 +3414,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/4391f35e9f7c8ed0cd70ee0754bd6
|
|
|
3402
3414
|
xinference/web/ui/node_modules/.cache/babel-loader/4393f1b67d6e8024ee7e554e7fb5bdc0f4319540c87c3ac6582236a771bee1aa.json,sha256=hG0IAD33NtjbAp03H_sJed39JKPUUfafSY_bewct6Kw,2934
|
|
3403
3415
|
xinference/web/ui/node_modules/.cache/babel-loader/4394484f141f2a99656dad50fa75b63dfecec4bb8707ab0d069e94e9f2e4322e.json,sha256=BaaZRmlkRFEyXbX0gF2UjAJNlwCspeMWVL-coV-rvmo,1372
|
|
3404
3416
|
xinference/web/ui/node_modules/.cache/babel-loader/43952c39750b666f9561a372de0dd40f83032ae6eb4452cf47a31f6f1b660a05.json,sha256=UDdHw41O36JouBT5ekgx6Wa3a6z-NY8Y5sFw9AfF9ls,1227
|
|
3417
|
+
xinference/web/ui/node_modules/.cache/babel-loader/43991bb67c3136863e6fb37f796466b12eb547a1465408cc77820fddafb3bed3.json,sha256=NTv8wKJfT57f3WSYBdt_F9jfL3WEG-myLet99QZuQgI,145964
|
|
3405
3418
|
xinference/web/ui/node_modules/.cache/babel-loader/43a4fad2f9638bf8cac94da297ce0392f545aa47739c9e82dc26008211010398.json,sha256=4mulpUpeA5NFDHhIrvKEoQV8iXeI2S6jVWjoHE7PnG0,1504
|
|
3406
3419
|
xinference/web/ui/node_modules/.cache/babel-loader/43ad49f9f218e8483e4790d6e10c6b8b493be19696efaf996e36dfac5ed06936.json,sha256=nnw_OmYTJgBeJHIYLhT_8DAZgXbuxD3wTa5Yq7IYZkw,1321
|
|
3407
3420
|
xinference/web/ui/node_modules/.cache/babel-loader/43ae37fe715d0c70f577ce0906ea20122326a0d3a99000e09a683fb65af3168a.json,sha256=j6oPpvXb7zXcSSMItjbcN9enu99ffpFQ1Ch27QRZTAA,1134
|
|
@@ -3554,7 +3567,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/469ded71a58899b529d1cee35e52b
|
|
|
3554
3567
|
xinference/web/ui/node_modules/.cache/babel-loader/46a411dde1048f429a9a356590369ffdfae95eea378cc6b828adf15a929f531a.json,sha256=ze0Ljm74aVH2YW11XLWz5nkOTp3ffW2IBCmkYoY0nnI,1764
|
|
3555
3568
|
xinference/web/ui/node_modules/.cache/babel-loader/46a9b097c8564d23a32e5b22872d37db781655de9b247b9aefa7f7d953180b8f.json,sha256=LdHYog7RCZQkX19SpqcWwzFtlHP5U62BZtJskC5PeFQ,1266
|
|
3556
3569
|
xinference/web/ui/node_modules/.cache/babel-loader/46abce9830b7c21c96f63a3bc052a2c6a98981e41d90b03426433a86be30e33d.json,sha256=jCGrCrgFdFR47rFqSSYL93or6-Tgm4KBWYVRNGDFtC4,1314
|
|
3557
|
-
xinference/web/ui/node_modules/.cache/babel-loader/46b6dd1f6d1109cd0e2455a0ea0be3e9bda1097cd4ebec9c4040070372671cfc.json,sha256=A6Xp5HtltDffI0OwgKjMHEsyGlqCUU6NMz-GTyU8e2Q,78134
|
|
3558
3570
|
xinference/web/ui/node_modules/.cache/babel-loader/46b949465b8aa03502f9f6c0f80b339a396e34f3d9028b714c9cbdf7a228480b.json,sha256=eazn3DyQNQZgh0b4dCpRJYOHp6S5B-ZuPJjfpJsEFt4,1366
|
|
3559
3571
|
xinference/web/ui/node_modules/.cache/babel-loader/46bd471e666626c2e2c9e09cde19bb30da85e8a84dee0fbee7b3dadf5ec3dcdd.json,sha256=YWHMnJ3r14Y1jQ_2zcqefBQJaSY3t4orqs_VWqSWw8g,1386
|
|
3560
3572
|
xinference/web/ui/node_modules/.cache/babel-loader/46be9f833a196ac30f362e433899c7627db3aab88f7da47366d5efd45895c8bf.json,sha256=uTa8d1z6l3k2eVpsOlvaNm8sAyO2sjMRX4RLAl3GPq8,1537
|
|
@@ -3867,7 +3879,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/4dc98daa9bf2f7c8b6db41af61c9d
|
|
|
3867
3879
|
xinference/web/ui/node_modules/.cache/babel-loader/4dd2d41c4d1cca2534ee48f1782f49f8aa1c8076508080a63481a0dfbc65ae85.json,sha256=N-2jf4XIZsEXeGj6a9sMF-I6Lg87-zHVyQV9IgWJH3Y,1338
|
|
3868
3880
|
xinference/web/ui/node_modules/.cache/babel-loader/4ddc2f4abdb26b7702b8d6efa06c608d2488f6fe17f698e15b63cc5723eef0d1.json,sha256=AhsTkEZe-Y9jMY6aeq7KQxolWYVixcc_LLExs0ENV3o,1541
|
|
3869
3881
|
xinference/web/ui/node_modules/.cache/babel-loader/4dde5b1a98cbd1f46965d40abcfda42aecf2eeccecb0d8e02c79ded9e5492e67.json,sha256=OUZ5fJggSFBteILheqAk5zgpHaS3cMFAliSEDCQlvik,1303
|
|
3870
|
-
xinference/web/ui/node_modules/.cache/babel-loader/4de0a71074f9cbe1e7862750dcdd08cbc1bae7d9d9849a78b1783ca670017b3c.json,sha256=1Z3tjeKuvOsLy7iuiovVicRHE_5q0zLa4HMnRfckrSw,32780
|
|
3871
3882
|
xinference/web/ui/node_modules/.cache/babel-loader/4de35f342fb64c610c5f9b3817986698f38defc8f0e41b1e75f27b3f6d79a912.json,sha256=cqpDtaPen6MjNaA40SiqrbQ7iFPMhPDw-f-tkfEXJTw,1491
|
|
3872
3883
|
xinference/web/ui/node_modules/.cache/babel-loader/4de4b0282a3d1ae02bec0bfe7d6658f039141406e8bfdbe86bf1dc5b115a2524.json,sha256=y5oqX_NkjqnGxdZxfZC8c9rZOT0-cZaPJUJi3SqFJUk,15132
|
|
3873
3884
|
xinference/web/ui/node_modules/.cache/babel-loader/4de90c3af82b41c0a7824b2197310fdce5c6a27e3884e3e080e804b87f121275.json,sha256=hWQL94Rra6VakWiFHsNZgXhmErdw-8vlpwRy6yxjKgE,1423
|
|
@@ -4465,7 +4476,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/59b87e8acb6cff8848ab71c5f2f9a
|
|
|
4465
4476
|
xinference/web/ui/node_modules/.cache/babel-loader/59b939cfd3bd6bb5a56cd4fefbaa49128a0fab5d44bd26b86d3429ff739b6f1a.json,sha256=76xEOOn-x977qWqoSZMOOaeUJu7NIKw6doVBhJxoIek,1384
|
|
4466
4477
|
xinference/web/ui/node_modules/.cache/babel-loader/59c47a7ad9352689b3bf32566698a748598770abec9baa3544c3e5728feaf132.json,sha256=n3c_hzx8CScoA5X-rm065OVm67QSBNeAML5fd8Cupsw,1010
|
|
4467
4478
|
xinference/web/ui/node_modules/.cache/babel-loader/59ce1728186a5c249988b447b53f5d160d86980a36a1985dc02889c9def7c1cf.json,sha256=RugUaSvpM9XRNu1_JnqBuwNrcbpADQY2SQ7UHjmtMaw,1126
|
|
4468
|
-
xinference/web/ui/node_modules/.cache/babel-loader/59ce49eae0f486af4c5034d4d2f9ca77c3ec3a32ecc560085caf5ef482b5f4c9.json,sha256=6uxT7nbX4XDS3T9aMXWR3yIGxtwyCEaECs9eko7aiio,6293
|
|
4469
4479
|
xinference/web/ui/node_modules/.cache/babel-loader/59d4ad4b05302ab27f2faf6bc8a1c708abf795f506e9b3620327cbf964d55001.json,sha256=sEC_d1y_WMppWJp88DNnkx1ny-1TSgnUfbBXb3-gm74,1983
|
|
4470
4480
|
xinference/web/ui/node_modules/.cache/babel-loader/59d7c51e2656b581ffd10c0affff6ae2285786fb649f913ca9875ebc470c8d3e.json,sha256=V7vpPZ2P4mqlxqTN2JS3rZC6skTfFQPyDP-LJ7hoKR8,1029
|
|
4471
4481
|
xinference/web/ui/node_modules/.cache/babel-loader/59df1384033e89d592d1a265f981ffa7aabd25c4d7a1752c87d7c88ef13edc87.json,sha256=ZvbgBELV6gfdWtNq5RVjjsYRybVlTv-oaxPdQJaCEII,1181
|
|
@@ -5619,6 +5629,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/72a345ba13a5d42cd41d778e28136
|
|
|
5619
5629
|
xinference/web/ui/node_modules/.cache/babel-loader/72a6babe387fd6c269214630c6485c56a3514f2a1be8ad9d59a796aac5d1d61b.json,sha256=TCjWsLSB9Hi4D8Ymqp5wGqfHsfQvwjW7zHBAqc5TOJ0,1047
|
|
5620
5630
|
xinference/web/ui/node_modules/.cache/babel-loader/72bb42d3ccdfe8be6f341c723dfe1437e2f6e29f72f11a4aac4361c0077f11f2.json,sha256=7kzDOP9h7s-7jDrewy7FTmqa_uFK1s2WTKgbOx3FkX4,714
|
|
5621
5631
|
xinference/web/ui/node_modules/.cache/babel-loader/72bb5641139908f920f74369ab94a251d90ed10ed3a1537db20f0fb837d6703a.json,sha256=u4DWSpd-FKLDFotfHePLLaEHg7D30nCoYegCFqtN9TI,1815
|
|
5632
|
+
xinference/web/ui/node_modules/.cache/babel-loader/72bcecc71c5267250edeb89608859d449b586f13ff9923a5e70e7172976ec403.json,sha256=6YlFQ55qUVZ3B77dNXoQfn2NFalNWEPMyOrOHKShnUg,16887
|
|
5622
5633
|
xinference/web/ui/node_modules/.cache/babel-loader/72c21a5219a06fd509675f3c691d151d5a9b37b292bf811de036a8453d334c23.json,sha256=_BzV3afHlhqBiEotqslSazuKyPUxl_umYf99WWLb25A,1418
|
|
5623
5634
|
xinference/web/ui/node_modules/.cache/babel-loader/72c339f086abe4347a8316c84f1c0a324726b9ae4db054f8b6985de5fada5b5c.json,sha256=6Cl9B99Qmf4yc1SSWGURH8OCYYUFVhk7OFVUnYPFFPc,1173
|
|
5624
5635
|
xinference/web/ui/node_modules/.cache/babel-loader/72c375152495e58111f3d8dd862b5fa4fba32b999dc9fe64adaf6612bf966c2e.json,sha256=QzL6Jd8LNYG0uebYj_9JLoTL7fylEAD4WkmNbh22Od4,1041
|
|
@@ -7242,6 +7253,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/9350c7e1e8fac5d6f8dd8262980b5
|
|
|
7242
7253
|
xinference/web/ui/node_modules/.cache/babel-loader/93517c09479a75363317bf158b7ba62fd2548f748772f7ca7dee25d231e64f44.json,sha256=wFWr48kqn05BeopoBJ2vSmG4zr6dSuJDD6z6YwhlcCI,1229
|
|
7243
7254
|
xinference/web/ui/node_modules/.cache/babel-loader/9353d550a64ae6a51e7c96ab5442407eb5f33c5e9d2ddb10553ea1453f43ecf5.json,sha256=s-KKgDbxQ3hB6WK6sKeXHYNFHYiSLrCwJDLxDVfEUYw,1026
|
|
7244
7255
|
xinference/web/ui/node_modules/.cache/babel-loader/935914e20065b96f42ea405c0e90212cad3dc058ffb66037d8bf0302c26418b7.json,sha256=T3tnccJJR_6MNRvd5yqSUAyIrey1IE6TZCG6i5zAhqM,1389
|
|
7256
|
+
xinference/web/ui/node_modules/.cache/babel-loader/935efd2867664c58230378fdf2ff1ea85e58d853b7214014e20dfbca8dab7b05.json,sha256=w-uNvxVJM44rPD9CQPM7f-ZJVJQm3VfGnvu1noYII20,3925
|
|
7245
7257
|
xinference/web/ui/node_modules/.cache/babel-loader/9360b1a4b9278379812899abbfb5df06ef7f98f23b855c26fb67d9a1d4e4abc1.json,sha256=7N2vgcO92D7sj8ouj30-Rm0hbAh8bPbc8l6GJExqpGA,1276
|
|
7246
7258
|
xinference/web/ui/node_modules/.cache/babel-loader/936191405cedf1dc023ce02fb8ee463e26c5e0e6adf403f66f129a520e97d3e4.json,sha256=KouyhiH-RGuCh1kmaCZ04OQiugcyP8VoUYcy5DVT1wI,1806
|
|
7247
7259
|
xinference/web/ui/node_modules/.cache/babel-loader/9362081e3220d1a66035f5551df8ce48c68232e69dac641f7bf97bf6eca37d1a.json,sha256=5oxfBbu_QIRG8IkWhBfQVLAFlYbtR-9Ho0CaWtCgdnw,2084
|
|
@@ -7717,7 +7729,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/9cf2ca93c994baac0d8df01468405
|
|
|
7717
7729
|
xinference/web/ui/node_modules/.cache/babel-loader/9cf3d885519350138dcd8fce0b293adfecb865e005d21c23d4deb29b8e053ede.json,sha256=LDUZW3kONMzqYYfNPDJH1q2FvkMsGs0QFl4or6xbBVE,1242
|
|
7718
7730
|
xinference/web/ui/node_modules/.cache/babel-loader/9cf63f11d5716337f053cea8afffa046cbd562b01a523545bc73686f9c2f5d24.json,sha256=kGmuhDzH-gmwzU3k5h4u65YBk6z2CYKKnePhSyAqz14,1276
|
|
7719
7731
|
xinference/web/ui/node_modules/.cache/babel-loader/9cfb6d1d934213d037e4599b000157d02805acb6d837391c8ae602152f28f8a1.json,sha256=uSYusJOuYdZuXRAYRnmxiS4y6hO2oyqnL237j4n_rh4,1131
|
|
7720
|
-
xinference/web/ui/node_modules/.cache/babel-loader/9cfd33238ca43e5bf9fc7e442690e8cc6027c73553db36de87e3597ed524ee4b.json,sha256=c-Bn08UBPeq34rhT_6XdfpM0nib3c6snTATTRrmiTTc,15268
|
|
7721
7732
|
xinference/web/ui/node_modules/.cache/babel-loader/9d029603281bda070faaa2321b644e9a3989064075493bdeb489fa48997e77f4.json,sha256=Yw4asCxy1-tOCO_cCHHfEFqo2ilPeCl-PraqVUHZKos,9478
|
|
7722
7733
|
xinference/web/ui/node_modules/.cache/babel-loader/9d08c0ef26732a14c2c52f50e08667d2dc1e911af94850e508a3ce25c470647d.json,sha256=MEHzAzQXIAAYmSTkWcIApyExU3MyOqV641NRpwTX5jU,2444
|
|
7723
7734
|
xinference/web/ui/node_modules/.cache/babel-loader/9d0f2da3f87b2bd7c1389dcf6c4c8e28acd84a4a723220b69e5207dcbb867524.json,sha256=Y-R7W5qO-Kvr5rw6o7r_JfOkoKu1V0TU-YcIYC4bUZg,1188
|
|
@@ -8202,7 +8213,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/a6bb917e4869d7d6ddf50b75932ca
|
|
|
8202
8213
|
xinference/web/ui/node_modules/.cache/babel-loader/a6bc28b3bf1ef1a101bf56455585ec96bd7ea6c1138208a6d8117c683ec2409b.json,sha256=MKlkOzm-aWbjJMVjllLa1i8eN1ngafAB32bp9Vu5tAk,1649
|
|
8203
8214
|
xinference/web/ui/node_modules/.cache/babel-loader/a6cc40d3bce998f1d6d658815b665501dee5545041708255cb5f9610f320ba5c.json,sha256=FGJ0G7yJx9ztnAO88lCG9SB4zzs3QB-Rqx5fmc0ued8,10843
|
|
8204
8215
|
xinference/web/ui/node_modules/.cache/babel-loader/a6d6b24a6cb0ef2167566c013092d36ca48edde283668459a4ed8f08cff18dc1.json,sha256=EZ_oYeRQFIhdowE0nfIfNNVZ1UjuD0_Qs07qt1gm8Es,1786
|
|
8205
|
-
xinference/web/ui/node_modules/.cache/babel-loader/a6da6bc3d0d2191adebee87fb58ecebe82d071087bd2f7f3a9c7fdd2ada130f2.json,sha256=1kMUZVdoSDv_L4BPn5IDc2s-aLgcZKrpRSl0NnPxxVs,110515
|
|
8206
8216
|
xinference/web/ui/node_modules/.cache/babel-loader/a6dc4ece620554fbd7ed60ce072ce1b6a48cb2f455f5205e0c584d36b88d9d4e.json,sha256=GtFRq6pdOlP0kklYvUc_tanze-rkQB2exnRIjwiA5tw,1101
|
|
8207
8217
|
xinference/web/ui/node_modules/.cache/babel-loader/a6deab6f2e45ade4165256db7a812a5d299bc585529c201d51a0e2d6c2b68bb7.json,sha256=ouQ_GZHaGdNPn6HEkTpTLlEyIFGzPXBEtGyXaJbUB74,1074
|
|
8208
8218
|
xinference/web/ui/node_modules/.cache/babel-loader/a6e86ae74dc45afdb7906a16b3ba1248499afe72501f60c441b4bb6df3e8f93b.json,sha256=4KG-ryvG4pgMCCbddj3XmF1iBOdhxDylyhyZNK8Y3C8,1044
|
|
@@ -8210,6 +8220,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/a6f3e78aa0a64173544999ae9ee40
|
|
|
8210
8220
|
xinference/web/ui/node_modules/.cache/babel-loader/a6f534959d4e7f1770caf58fe185d1a602690671af7387da97b30b29fb5f05b7.json,sha256=GtFQXr6-a2-_pD9ic-c8SsCqUARJ6jGCrr9QXpFPECI,1514
|
|
8211
8221
|
xinference/web/ui/node_modules/.cache/babel-loader/a6fb9e19aac52f4b3d70f3c9a29add01e76b83970fb2ae5a96ef7b105c98fefa.json,sha256=BCJg08JXl15ZzE7JmZw6ydlDjE7pGzawhRqTaK5pgiE,1005
|
|
8212
8222
|
xinference/web/ui/node_modules/.cache/babel-loader/a70a3b8bf047cc59e94bee9066b0362fbdc7687fe65d8190577dc8dc4e82b825.json,sha256=zFeSa1jqfrfy-6x7IvmsxAMnuQ0Cgqx2MM-UlOPLgxU,3520
|
|
8223
|
+
xinference/web/ui/node_modules/.cache/babel-loader/a7109d4425e3d94ca2726fc7020fd33bf5030afd4c9cf4bf71e21776cd70646a.json,sha256=rZPSfNKhoCwCMfpo_6zpdW0B5F3bjUlvM1c05VaZkvM,20527
|
|
8213
8224
|
xinference/web/ui/node_modules/.cache/babel-loader/a710fe5a446130c3874319bb7b531323e1b0385f7f73a84818df88c5635a3720.json,sha256=mxTbgmJplyXrLPLP0xd6bFkwq4j3-cP7BCsarcHjBho,2115
|
|
8214
8225
|
xinference/web/ui/node_modules/.cache/babel-loader/a71329664013f58f76befa0b01505b0b77633370ca25a8b5dfbfc30c4ac6ead5.json,sha256=3E5oyP6KM1P7ElEDDmmpfeiIdT4abf1i0HOHEJqcKsA,1157
|
|
8215
8226
|
xinference/web/ui/node_modules/.cache/babel-loader/a721b4a1c0ad5c3fe7db52e487661f60d73d2e7ac1fd6cac0e3125d6c216c4c3.json,sha256=1k6L8G2DQDSUKqhvZk9NwANWBH4eU9lpmlcs_ixbe_8,1188
|
|
@@ -9489,6 +9500,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/c2a1bce2aeeee130e7ef165c2c54a
|
|
|
9489
9500
|
xinference/web/ui/node_modules/.cache/babel-loader/c2a3e4c730192a59ba237259f61f09a929e53c69f2072cfb9e10b13f24418347.json,sha256=B1Zo8j2pnnc2mv8nmJzc0uL6h4jjN_K-Db6mx8GgamQ,1042
|
|
9490
9501
|
xinference/web/ui/node_modules/.cache/babel-loader/c2a4d298149e6c66713eed4f56f4bbbfa4022a193891029b84e429baf59cc246.json,sha256=9J5xizRqCCNY4GWXifi4WoSxegJ8eL7YZhJ-uN71C2E,7388
|
|
9491
9502
|
xinference/web/ui/node_modules/.cache/babel-loader/c2a7f030a38bd3726a55c181c348a1ac98075043ab4b59900a5651e8cfee3b45.json,sha256=i_xBtX89oun1knCpikbB4qVYPD2LZCOIcshIT2dHKAE,1164
|
|
9503
|
+
xinference/web/ui/node_modules/.cache/babel-loader/c2abe75f04ad82fba68f35ed9cbe2e287762c876684fddccccfa73f739489b65.json,sha256=mfH1kH1rNdPazEVkI6U6DseFhwH5BjMweSp2YQKYZys,20389
|
|
9492
9504
|
xinference/web/ui/node_modules/.cache/babel-loader/c2d65e037a57ac38e7c5860c213d1d4b5da070a0a11995527c2f696d00496d4c.json,sha256=zoX8jZamkVghjNatAjM-XHnURraV6XS5u5Qo8eXQbpA,3693
|
|
9493
9505
|
xinference/web/ui/node_modules/.cache/babel-loader/c2d74e5a5147b8d31e2f77229216a213b158a03334e762e6bd86e5d3b89d733d.json,sha256=4Vci-UPV7LLMGEMXoMHdBk05ZyAaXOFHQRwxtGp9I30,983
|
|
9494
9506
|
xinference/web/ui/node_modules/.cache/babel-loader/c2e6699cbe0ed754166ce0bcaf132544aa53c1e4bec724dc2cb66507ed6fe3be.json,sha256=53eKZLFFDuIlJchAmF_WllN7cH2oTL7CQUn7BjYEzMk,1214
|
|
@@ -11303,7 +11315,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/e6ccc8c670b75345dc2d393eac640
|
|
|
11303
11315
|
xinference/web/ui/node_modules/.cache/babel-loader/e6cf47a7ce2dc30b7e9f829dc73fa70b592e957d6f9b18c14deab90486bb14b6.json,sha256=mkCMTwPQVl6nLZpJs7U3bFBCtDRQnA7I0bp_CZ8cXX8,1500
|
|
11304
11316
|
xinference/web/ui/node_modules/.cache/babel-loader/e6ea3f8ce6ba0d67424a00a068e456a9987f983f0e24dd101573254ac4844d21.json,sha256=FSyvRF7Z1hsvzU4GRjPMwqQyGSA6vMOKAM985qyGNaw,2667
|
|
11305
11317
|
xinference/web/ui/node_modules/.cache/babel-loader/e6eaf277636500dcda1882188b3c90304d3934f84dbc5a196f3cecc30776ac5b.json,sha256=4mvdgtCsxz-COhMsjfoMPmAsoGeqe1boBTJ8ANt8vKs,1402
|
|
11306
|
-
xinference/web/ui/node_modules/.cache/babel-loader/e6eccc9aa641e7da833492e27846dc965f9750281420977dc84654ca6ed221e4.json,sha256=aaQquxnENorKMzR3E9BwpLl-qymUSponvV4bD5HfHPQ,16145
|
|
11307
11318
|
xinference/web/ui/node_modules/.cache/babel-loader/e6f06cdfdebbb9a33344f123c2cf90d0c9fc68b38fb4bf98da6ddd3de8a67576.json,sha256=7-YM10v66wj2TRwtzA10bwFTOqRCvJUeDE5eZp7qQ5A,1131
|
|
11308
11319
|
xinference/web/ui/node_modules/.cache/babel-loader/e701ee13a33eed7c910771816d2ac3024f7e0232b3a42aa6fc42c0fa4048ecce.json,sha256=M0Mcp1EA0_U8joGUPU2QUW5N9y9W4UABu9En0wIa77Q,1256
|
|
11309
11320
|
xinference/web/ui/node_modules/.cache/babel-loader/e70b0528ac62f0f92e2b884b1b4213196a488a9235ecfd4883313b4abe7a7e95.json,sha256=WxgsdV3E5m4j_mj49zcISc-tFLx6Jjsq84g9wCtCOoI,1635
|
|
@@ -11846,6 +11857,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/f2755d4f1a0bea64ae01dd8cb86f9
|
|
|
11846
11857
|
xinference/web/ui/node_modules/.cache/babel-loader/f27a505514ff84a858a8006de4a63dd8d107a8d13182df51f6e0c252cca0d748.json,sha256=wX3UslPESSkfUs32zF-lgphvAZxpUFhVgKJhIETp0pc,1451
|
|
11847
11858
|
xinference/web/ui/node_modules/.cache/babel-loader/f27c47684d6c24dd3b21cbe76aa4ce3d2f604ef0353f1f093be20236b7ecd4f5.json,sha256=te6UbZRQr5Ao-e_zUO7RSjcl7yJmz5tAos3Y7PfNvUI,1732
|
|
11848
11859
|
xinference/web/ui/node_modules/.cache/babel-loader/f27d1dae335d7c93dda494b01ab16fa529894b1fc4fd190aaf038835bb13fb07.json,sha256=IIcWFrSO4Q_kFSOuh4y_cbT7KAdVPHEEM9G7mSSErXQ,1627
|
|
11860
|
+
xinference/web/ui/node_modules/.cache/babel-loader/f28b83886159d83b84f099b05d607a822dca4dd7f2d8aa6d56fe08bab0b5b086.json,sha256=6sPeokJ6Ma5uDCvYuKdKoiCG6M8bVi1gGHmH10rUxpI,38399
|
|
11849
11861
|
xinference/web/ui/node_modules/.cache/babel-loader/f28dffbccd52089331082295c9c370c6bd86ca33adc2d9e738017c55b087b249.json,sha256=5t8t2lwFoZ_YACNCihqjmAG5oob1eM9Jwz3C1K1iELY,1164
|
|
11850
11862
|
xinference/web/ui/node_modules/.cache/babel-loader/f28e976a8f672a89aa93fb79a73747b028d0cddb9c0a7827a4979bbe20b172f8.json,sha256=91cHFzIKJ88PNyJUHne5sN5D-08rfumBsoutbSKFl0s,1800
|
|
11851
11863
|
xinference/web/ui/node_modules/.cache/babel-loader/f293c3308343f4ea675098255bac316e9aa7e8f8456752b54152726834b5be84.json,sha256=lLmo_D10uebgdcx_D4ptBTKaNApKBjJYqbURt0GdgaE,1166
|
|
@@ -11978,6 +11990,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/f501fca5d4064783cb26d01e00f3b
|
|
|
11978
11990
|
xinference/web/ui/node_modules/.cache/babel-loader/f5166236bc3e182f8bfd009c91200dba9d7cf96c0002eb83fe4ffc17586dd531.json,sha256=9OlFwLOpTfnqB1LU6petBRD8e5F-qnQw4FUW6Uqa-U4,1027
|
|
11979
11991
|
xinference/web/ui/node_modules/.cache/babel-loader/f519c4de4494e4cbfec0261d864c14d67d3dd97f937ad42f4e856c9ade0cd097.json,sha256=9zhe9J5n9zM5gNtuPfLoWPgwiojVlgvs5dUp7S2Os0w,1813
|
|
11980
11992
|
xinference/web/ui/node_modules/.cache/babel-loader/f51a6ad07f134e87af4ca8cb2a95b8f21048ad48380d369f001ce87fd97886c6.json,sha256=dsq_pMzZGYX4BL6itAWg1rhOkQXxA7FFp4YF8sjG9k8,1238
|
|
11993
|
+
xinference/web/ui/node_modules/.cache/babel-loader/f51bf63ddaa7afd125ef2254a105789333eecc1c94fdf5157a9b88ef7ad0a5bd.json,sha256=OXW9ooBhSkjttd_YDl_7Tu_qzSGRVt2YDeYieSgyl4c,6024
|
|
11981
11994
|
xinference/web/ui/node_modules/.cache/babel-loader/f51ce35e7c269951048283f2b0e7a6f36565a1f3ecb67913b77f6675af1ec6b8.json,sha256=aMIORIfRrKkd2wPD3bPwNcX7wEIHCOdkYyeciBEPNJk,1592
|
|
11982
11995
|
xinference/web/ui/node_modules/.cache/babel-loader/f51eb9da39fff8911c53899eb88ac7541373821537c9c810463129659f4b44ee.json,sha256=kPrfgWYhO9ToanxVpb4PJWy-veigp_08un3TXyz-NwA,1758
|
|
11983
11996
|
xinference/web/ui/node_modules/.cache/babel-loader/f520c6d9f8e5c5226b78f6ab78b3c68172aed8e0498bbd80f02d3d995d4bf070.json,sha256=x0tmIvv2tRSsfc8vZ2DyoXGc3GYinXVBoAvxlj6pz40,1502
|
|
@@ -15430,9 +15443,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15430
15443
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15431
15444
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15432
15445
|
xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
|
|
15433
|
-
xinference-0.12.
|
|
15434
|
-
xinference-0.12.
|
|
15435
|
-
xinference-0.12.
|
|
15436
|
-
xinference-0.12.
|
|
15437
|
-
xinference-0.12.
|
|
15438
|
-
xinference-0.12.
|
|
15446
|
+
xinference-0.12.2.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
15447
|
+
xinference-0.12.2.dist-info/METADATA,sha256=oICoZBMhma_3U_9ADFJDAHkYH7qi1Swa6SJN6aizyRI,16471
|
|
15448
|
+
xinference-0.12.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
15449
|
+
xinference-0.12.2.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
15450
|
+
xinference-0.12.2.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
15451
|
+
xinference-0.12.2.dist-info/RECORD,,
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
.formBox{max-height:80vh;max-width:50vw;min-width:50vw;overflow:auto;padding:40px 20px 0 0;position:relative;transition:all .4s ease-in-out}.broaden{max-width:100%;min-width:100%;padding-right:0}.show-json{align-items:center;color:#444;display:flex;position:fixed;right:60px;top:90px}.icon{cursor:pointer;margin-left:20px;position:absolute;right:-40px}.icon:hover{color:#1976d2}.arrow{font-size:24px!important}.jsonBox{min-height:80vh;position:relative;transition:all .4s ease-in-out;width:100%}.hide{overflow:hidden;-webkit-transform:translate(30vw);transform:translate(30vw);width:0}.jsonBox-header{font-weight:700;line-height:40px}.textarea{border:1px solid #ddd;border-radius:5px;color:#444;height:calc(100% - 40px);padding:5px 10px;resize:none;width:100%}.copyIcon{color:#555;cursor:pointer;font-size:16px!important;position:absolute;right:5px;top:13px}.copyIcon:hover{color:#1976d2}.addBtn{margin-left:20px!important}.item{background-color:#eee;border-radius:10px;margin:10px 50px 0;overflow:hidden;padding:20px;position:relative}.item:hover .deleteBtn{-webkit-transform:translateX(-50px);transform:translateX(-50px)}.deleteBtn{background-color:#1976d2;border-radius:25px;height:50px;line-height:70px;position:absolute;right:20px;text-align:center;top:calc(50% - 25px);-webkit-transform:translateX(80px);transform:translateX(80px);transition:all .3s ease-in-out;width:50px}.deleteBtn:hover{box-shadow:0 0 10px #aaa;cursor:pointer}.deleteIcon{color:#fff;font-size:28px!important}
|
|
2
|
-
/*# sourceMappingURL=main.54bca460.css.map*/
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"static/css/main.54bca460.css","mappings":"AAAA,SAIE,eAAgB,CAFhB,cAAe,CACf,cAAe,CAEf,aAAc,CACd,qBAAsB,CALtB,iBAAkB,CAMlB,8BACF,CAEA,SACE,cAAe,CACf,cAAe,CACf,eACF,CAEA,WAEE,kBAAmB,CAInB,UAAW,CALX,YAAa,CAEb,cAAe,CAEf,UAAW,CADX,QAGF,CAEA,MAGE,cAAe,CACf,gBAAiB,CAHjB,iBAAkB,CAClB,WAGF,CAEA,YACE,aACF,CAEA,OACE,wBACF,CAEA,SAEE,eAAgB,CADhB,iBAAkB,CAGlB,8BAAgC,CADhC,UAEF,CAEA,MAGE,eAAgB,CADhB,iCAA6B,CAA7B,yBAA6B,CAD7B,OAGF,CAEA,gBAEE,eAAgB,CADhB,gBAEF,CAEA,UAIE,qBAAsB,CACtB,iBAAkB,CAElB,UAAW,CALX,wBAAyB,CACzB,gBAAiB,CAGjB,WAAY,CALZ,UAOF,CAEA,UAME,UAAW,CALX,cAAe,CAIf,wBAA0B,CAH1B,iBAAkB,CAElB,SAAU,CADV,QAIF,CAEA,gBACE,aACF,CAEA,QACE,0BACF,CAEA,MAEE,qBAAsB,CAGtB,kBAAmB,CAFnB,kBAAmB,CAGnB,eAAgB,CAFhB,YAAa,CAHb,iBAMF,CAEA,uBACE,mCAA4B,CAA5B,2BACF,CAEA,WAUE,wBAAyB,CADzB,kBAAmB,CAJnB,WAAY,CAGZ,gBAAiB,CAPjB,iBAAkB,CAClB,UAAW,CAKX,iBAAkB,CAJlB,oBAAqB,CAGrB,kCAA2B,CAA3B,0BAA2B,CAK3B,8BAAgC,CAPhC,UAQF,CAEA,iBAEE,wBAAyB,CADzB,cAEF,CAEA,YAEE,UAAW,CADX,wBAEF","sources":["scenes/register_model/styles/registerModelStyle.css"],"sourcesContent":[".formBox {\n position: relative;\n max-width: 50vw;\n min-width: 50vw;\n max-height: 80vh;\n overflow: auto;\n padding: 40px 20px 0 0;\n transition: all 0.4s ease-in-out;\n}\n\n.broaden {\n max-width: 100%;\n min-width: 100%;\n padding-right: 0;\n}\n\n.show-json {\n display: flex;\n align-items: center;\n position: fixed;\n top: 90px;\n right: 60px;\n color: #444;\n}\n\n.icon {\n position: absolute;\n right: -40px;\n cursor: pointer;\n margin-left: 20px;\n}\n\n.icon:hover {\n color: #1976d2;\n}\n\n.arrow {\n font-size: 24px !important;\n}\n\n.jsonBox {\n position: relative;\n min-height: 80vh;\n width: 100%;\n transition: all 0.4s ease-in-out;\n}\n\n.hide {\n width: 0;\n transform: translate(30vw, 0);\n overflow: hidden;\n}\n\n.jsonBox-header {\n line-height: 40px;\n font-weight: 700;\n}\n\n.textarea {\n width: 100%;\n height: calc(100% - 40px);\n padding: 5px 10px;\n border: 1px solid #ddd;\n border-radius: 5px;\n resize: none;\n color: #444;\n}\n\n.copyIcon {\n cursor: pointer;\n position: absolute;\n top: 13px;\n right: 5px;\n font-size: 16px !important;\n color: #555;\n}\n\n.copyIcon:hover {\n color: #1976d2;\n}\n\n.addBtn {\n margin-left: 20px !important;\n}\n\n.item {\n position: relative;\n background-color: #eee;\n margin: 10px 50px 0;\n padding: 20px;\n border-radius: 10px;\n overflow: hidden;\n}\n\n.item:hover .deleteBtn {\n transform: translateX(-50px);\n}\n\n.deleteBtn {\n position: absolute;\n right: 20px;\n top: calc(50% - 25px);\n width: 50px;\n height: 50px;\n transform: translateX(80px);\n text-align: center;\n line-height: 70px;\n border-radius: 25px;\n background-color: #1976d2;\n transition: all 0.3s ease-in-out;\n}\n\n.deleteBtn:hover {\n cursor: pointer;\n box-shadow: 0 0 10px #aaa;\n}\n\n.deleteIcon {\n font-size: 28px !important;\n color: #fff;\n}\n"],"names":[],"sourceRoot":""}
|