xinference 0.13.0__py3-none-any.whl → 0.13.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 +123 -3
- xinference/client/restful/restful_client.py +131 -2
- xinference/core/model.py +93 -24
- xinference/core/supervisor.py +132 -15
- xinference/core/worker.py +165 -8
- xinference/deploy/cmdline.py +5 -0
- xinference/model/audio/chattts.py +46 -14
- xinference/model/audio/core.py +23 -15
- xinference/model/core.py +12 -3
- xinference/model/embedding/core.py +25 -16
- xinference/model/flexible/__init__.py +40 -0
- xinference/model/flexible/core.py +228 -0
- xinference/model/flexible/launchers/__init__.py +15 -0
- xinference/model/flexible/launchers/transformers_launcher.py +63 -0
- xinference/model/flexible/utils.py +33 -0
- xinference/model/image/core.py +21 -14
- xinference/model/image/custom.py +1 -1
- xinference/model/image/model_spec.json +14 -0
- xinference/model/image/stable_diffusion/core.py +43 -6
- xinference/model/llm/__init__.py +0 -2
- xinference/model/llm/core.py +3 -2
- xinference/model/llm/ggml/llamacpp.py +1 -10
- xinference/model/llm/llm_family.json +292 -36
- xinference/model/llm/llm_family.py +97 -52
- xinference/model/llm/llm_family_modelscope.json +220 -27
- xinference/model/llm/pytorch/core.py +0 -80
- xinference/model/llm/sglang/core.py +7 -2
- xinference/model/llm/utils.py +4 -2
- xinference/model/llm/vllm/core.py +3 -0
- xinference/model/rerank/core.py +24 -25
- xinference/types.py +0 -1
- xinference/web/ui/build/asset-manifest.json +3 -3
- xinference/web/ui/build/index.html +1 -1
- xinference/web/ui/build/static/js/{main.0fb6f3ab.js → main.95c1d652.js} +3 -3
- xinference/web/ui/build/static/js/main.95c1d652.js.map +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/07ce9e632e6aff24d7aa3ad8e48224433bbfeb0d633fca723453f1fcae0c9f1c.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/40f17338fc75ae095de7d2b4d8eae0d5ca0193a7e2bcece4ee745b22a7a2f4b7.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/5262556baf9207738bf6a8ba141ec6599d0a636345c245d61fdf88d3171998cb.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/709711edada3f1596b309d571285fd31f1c364d66f4425bc28723d0088cc351a.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/70fa8c07463a5fe57c68bf92502910105a8f647371836fe8c3a7408246ca7ba0.json +1 -0
- xinference/web/ui/node_modules/.cache/babel-loader/f3e02274cb1964e99b1fe69cbb6db233d3d8d7dd05d50ebcdb8e66d50b224b7b.json +1 -0
- {xinference-0.13.0.dist-info → xinference-0.13.2.dist-info}/METADATA +9 -11
- {xinference-0.13.0.dist-info → xinference-0.13.2.dist-info}/RECORD +49 -58
- xinference/model/llm/ggml/chatglm.py +0 -457
- xinference/thirdparty/ChatTTS/__init__.py +0 -1
- xinference/thirdparty/ChatTTS/core.py +0 -200
- xinference/thirdparty/ChatTTS/experimental/__init__.py +0 -0
- xinference/thirdparty/ChatTTS/experimental/llm.py +0 -40
- xinference/thirdparty/ChatTTS/infer/__init__.py +0 -0
- xinference/thirdparty/ChatTTS/infer/api.py +0 -125
- xinference/thirdparty/ChatTTS/model/__init__.py +0 -0
- xinference/thirdparty/ChatTTS/model/dvae.py +0 -155
- xinference/thirdparty/ChatTTS/model/gpt.py +0 -265
- xinference/thirdparty/ChatTTS/utils/__init__.py +0 -0
- xinference/thirdparty/ChatTTS/utils/gpu_utils.py +0 -23
- xinference/thirdparty/ChatTTS/utils/infer_utils.py +0 -141
- xinference/thirdparty/ChatTTS/utils/io_utils.py +0 -14
- xinference/web/ui/build/static/js/main.0fb6f3ab.js.map +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/0f6b391abec76271137faad13a3793fe7acc1024e8cd2269c147b653ecd3a73b.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/30a0c79d8025d6441eb75b2df5bc2750a14f30119c869ef02570d294dff65c2f.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/40486e655c3c5801f087e2cf206c0b5511aaa0dfdba78046b7181bf9c17e54c5.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/b5507cd57f16a3a230aa0128e39fe103e928de139ea29e2679e4c64dcbba3b3a.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/d779b915f83f9c7b5a72515b6932fdd114f1822cef90ae01cc0d12bca59abc2d.json +0 -1
- xinference/web/ui/node_modules/.cache/babel-loader/d87824cb266194447a9c0c69ebab2d507bfc3e3148976173760d18c035e9dd26.json +0 -1
- /xinference/web/ui/build/static/js/{main.0fb6f3ab.js.LICENSE.txt → main.95c1d652.js.LICENSE.txt} +0 -0
- {xinference-0.13.0.dist-info → xinference-0.13.2.dist-info}/LICENSE +0 -0
- {xinference-0.13.0.dist-info → xinference-0.13.2.dist-info}/WHEEL +0 -0
- {xinference-0.13.0.dist-info → xinference-0.13.2.dist-info}/entry_points.txt +0 -0
- {xinference-0.13.0.dist-info → xinference-0.13.2.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"ast":null,"code":"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 DeleteOutlineOutlinedIcon from'@mui/icons-material/DeleteOutlineOutlined';import OpenInBrowserOutlinedIcon from'@mui/icons-material/OpenInBrowserOutlined';import{TabContext,TabList,TabPanel}from'@mui/lab';import{Box,Stack,Tab}from'@mui/material';import{DataGrid}from'@mui/x-data-grid';import React,{useContext,useEffect,useState}from'react';import{useCookies}from'react-cookie';import{useNavigate}from'react-router-dom';import{ApiContext}from'../../components/apiContext';import ErrorMessageSnackBar from'../../components/errorMessageSnackBar';import fetcher from'../../components/fetcher';import fetchWrapper from'../../components/fetchWrapper';import Title from'../../components/Title';import{jsx as _jsx}from\"react/jsx-runtime\";import{jsxs as _jsxs}from\"react/jsx-runtime\";var RunningModels=function RunningModels(){var _React$useState=React.useState(sessionStorage.getItem('runningModelType')),_React$useState2=_slicedToArray(_React$useState,2),tabValue=_React$useState2[0],setTabValue=_React$useState2[1];var _useState=useState([]),_useState2=_slicedToArray(_useState,2),llmData=_useState2[0],setLlmData=_useState2[1];var _useState3=useState([]),_useState4=_slicedToArray(_useState3,2),embeddingModelData=_useState4[0],setEmbeddingModelData=_useState4[1];var _useState5=useState([]),_useState6=_slicedToArray(_useState5,2),imageModelData=_useState6[0],setImageModelData=_useState6[1];var _useState7=useState([]),_useState8=_slicedToArray(_useState7,2),audioModelData=_useState8[0],setAudioModelData=_useState8[1];var _useState9=useState([]),_useState10=_slicedToArray(_useState9,2),rerankModelData=_useState10[0],setRerankModelData=_useState10[1];var _useState11=useState([]),_useState12=_slicedToArray(_useState11,2),flexibleModelData=_useState12[0],setFlexibleModelData=_useState12[1];var _useContext=useContext(ApiContext),isCallingApi=_useContext.isCallingApi,setIsCallingApi=_useContext.setIsCallingApi;var _useContext2=useContext(ApiContext),isUpdatingModel=_useContext2.isUpdatingModel,setIsUpdatingModel=_useContext2.setIsUpdatingModel;var _useContext3=useContext(ApiContext),setErrorMsg=_useContext3.setErrorMsg;var _useCookies=useCookies(['token']),_useCookies2=_slicedToArray(_useCookies,1),cookie=_useCookies2[0];var navigate=useNavigate();var endPoint=useContext(ApiContext).endPoint;var handleTabChange=function handleTabChange(event,newValue){setTabValue(newValue);navigate(newValue);sessionStorage.setItem('runningModelType',newValue);};var update=function update(isCallingApi){if(cookie.token===''||cookie.token===undefined){navigate('/login',{replace:true});return;}if(cookie.token!=='no_auth'&&!sessionStorage.getItem('token')){navigate('/login',{replace:true});return;}if(isCallingApi){setLlmData([{id:'Loading, do not refresh page...',url:'IS_LOADING'}]);setEmbeddingModelData([{id:'Loading, do not refresh page...',url:'IS_LOADING'}]);setAudioModelData([{id:'Loading, do not refresh page...',url:'IS_LOADING'}]);setImageModelData([{id:'Loading, do not refresh page...',url:'IS_LOADING'}]);setRerankModelData([{id:'Loading, do not refresh page...',url:'IS_LOADING'}]);setFlexibleModelData([{id:'Loading, do not refresh page...',url:'IS_LOADING'}]);}else{setIsUpdatingModel(true);fetchWrapper.get('/v1/models').then(function(response){var newLlmData=[];var newEmbeddingModelData=[];var newImageModelData=[];var newAudioModelData=[];var newRerankModelData=[];var newFlexibleModelData=[];response.data.forEach(function(model){var newValue=_objectSpread(_objectSpread({},model),{},{id:model.id,url:model.id});if(newValue.model_type==='LLM'){newLlmData.push(newValue);}else if(newValue.model_type==='embedding'){newEmbeddingModelData.push(newValue);}else if(newValue.model_type==='audio'){newAudioModelData.push(newValue);}else if(newValue.model_type==='image'){newImageModelData.push(newValue);}else if(newValue.model_type==='rerank'){newRerankModelData.push(newValue);}else if(newValue.model_type==='flexible'){newFlexibleModelData.push(newValue);}});setLlmData(newLlmData);setEmbeddingModelData(newEmbeddingModelData);setAudioModelData(newAudioModelData);setImageModelData(newImageModelData);setRerankModelData(newRerankModelData);setFlexibleModelData(newFlexibleModelData);setIsUpdatingModel(false);}).catch(function(error){console.error('Error:',error);setIsUpdatingModel(false);if(error.response.status!==403&&error.response.status!==401){setErrorMsg(error.message);}});}};useEffect(function(){update(isCallingApi);// eslint-disable-next-line\n},[isCallingApi,cookie.token]);var llmColumns=[{field:'id',headerName:'ID',flex:1,minWidth:250},{field:'model_name',headerName:'Name',flex:1},{field:'address',headerName:'Address',flex:1},{field:'accelerators',headerName:'GPU Indexes',flex:1},{field:'model_size_in_billions',headerName:'Size',flex:1},{field:'quantization',headerName:'Quantization',flex:1},{field:'replica',headerName:'Replica',flex:1},{field:'url',headerName:'Actions',flex:1,minWidth:200,sortable:false,filterable:false,disableColumnMenu:true,renderCell:function renderCell(_ref){var row=_ref.row;var url=row.url;var openUrl=\"\".concat(endPoint,\"/\")+url;var closeUrl=\"\".concat(endPoint,\"/v1/models/\")+url;var gradioUrl=\"\".concat(endPoint,\"/v1/ui/\")+url;if(url==='IS_LOADING'){return/*#__PURE__*/_jsx(\"div\",{});}return/*#__PURE__*/_jsxs(Box,{style:{width:'100%',display:'flex',justifyContent:'left',alignItems:'left'},children:[/*#__PURE__*/_jsx(\"button\",{title:\"Launch Web UI\",style:{borderWidth:'0px',backgroundColor:'transparent',paddingLeft:'0px',paddingRight:'10px'},onClick:function onClick(){if(isCallingApi||isUpdatingModel){// Make sure no ongoing call\nreturn;}setIsCallingApi(true);fetcher(openUrl,{method:'HEAD'}).then(function(response){if(response.status===404){// If web UI doesn't exist (404 Not Found)\nconsole.log('UI does not exist, creating new...');return fetcher(gradioUrl,{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({model_type:row.model_type,model_name:row.model_family,model_size_in_billions:row.model_size_in_billions,model_format:row.model_format,quantization:row.quantization,context_length:row.context_length,model_ability:row.model_ability,model_description:row.model_description,model_lang:row.model_lang})}).then(function(response){return response.json();}).then(function(){return window.open(openUrl,'_blank','noopener noreferrer');}).finally(function(){return setIsCallingApi(false);});}else if(response.ok){// If web UI does exist\nconsole.log('UI exists, opening...');window.open(openUrl,'_blank','noopener noreferrer');setIsCallingApi(false);}else{// Other HTTP errors\nconsole.error(\"Unexpected response status: \".concat(response.status));setIsCallingApi(false);}}).catch(function(error){console.error('Error:',error);setIsCallingApi(false);});},children:/*#__PURE__*/_jsx(Box,{width:\"40px\",m:\"0 auto\",p:\"5px\",display:\"flex\",justifyContent:\"center\",borderRadius:\"4px\",style:{border:'1px solid #e5e7eb',borderWidth:'1px',borderColor:'#e5e7eb'},children:/*#__PURE__*/_jsx(OpenInBrowserOutlinedIcon,{})})}),/*#__PURE__*/_jsx(\"button\",{title:\"Terminate Model\",style:{borderWidth:'0px',backgroundColor:'transparent',paddingLeft:'0px',paddingRight:'10px'},onClick:function onClick(){if(isCallingApi||isUpdatingModel){return;}setIsCallingApi(true);fetcher(closeUrl,{method:'DELETE'}).then(function(response){response.json();}).then(function(){setIsCallingApi(false);}).catch(function(error){console.error('Error:',error);setIsCallingApi(false);});},children:/*#__PURE__*/_jsx(Box,{width:\"40px\",m:\"0 auto\",p:\"5px\",display:\"flex\",justifyContent:\"center\",borderRadius:\"4px\",style:{border:'1px solid #e5e7eb',borderWidth:'1px',borderColor:'#e5e7eb'},children:/*#__PURE__*/_jsx(DeleteOutlineOutlinedIcon,{})})})]});}}];var embeddingModelColumns=[{field:'id',headerName:'ID',flex:1,minWidth:250},{field:'model_name',headerName:'Name',flex:1},{field:'address',headerName:'Address',flex:1},{field:'accelerators',headerName:'GPU Indexes',flex:1},{field:'replica',headerName:'Replica',flex:1},{field:'url',headerName:'Actions',flex:1,minWidth:200,sortable:false,filterable:false,disableColumnMenu:true,renderCell:function renderCell(_ref2){var row=_ref2.row;var url=row.url;var closeUrl=\"\".concat(endPoint,\"/v1/models/\")+url;if(url==='IS_LOADING'){return/*#__PURE__*/_jsx(\"div\",{});}return/*#__PURE__*/_jsx(Box,{style:{width:'100%',display:'flex',justifyContent:'left',alignItems:'left'},children:/*#__PURE__*/_jsx(\"button\",{title:\"Terminate Model\",style:{borderWidth:'0px',backgroundColor:'transparent',paddingLeft:'0px',paddingRight:'10px'},onClick:function onClick(){if(isCallingApi||isUpdatingModel){return;}setIsCallingApi(true);fetcher(closeUrl,{method:'DELETE'}).then(function(response){response.json();}).then(function(){setIsCallingApi(false);}).catch(function(error){console.error('Error:',error);setIsCallingApi(false);});},children:/*#__PURE__*/_jsx(Box,{width:\"40px\",m:\"0 auto\",p:\"5px\",display:\"flex\",justifyContent:\"center\",borderRadius:\"4px\",style:{border:'1px solid #e5e7eb',borderWidth:'1px',borderColor:'#e5e7eb'},children:/*#__PURE__*/_jsx(DeleteOutlineOutlinedIcon,{})})})});}}];var imageModelColumns=[{field:'id',headerName:'ID',flex:1,minWidth:250},{field:'model_name',headerName:'Name',flex:1},{field:'address',headerName:'Address',flex:1},{field:'accelerators',headerName:'GPU Indexes',flex:1},{field:'url',headerName:'Actions',flex:1,minWidth:200,sortable:false,filterable:false,disableColumnMenu:true,renderCell:function renderCell(_ref3){var row=_ref3.row;//这个url指的是model_uid\nvar url=row.url;console.log('url: '+url);var openUrl=\"\".concat(endPoint,\"/\")+url;var closeUrl=\"\".concat(endPoint,\"/v1/models/\")+url;var gradioUrl=\"\".concat(endPoint,\"/v1/ui/images/\")+url;if(url==='IS_LOADING'){return/*#__PURE__*/_jsx(\"div\",{});}return/*#__PURE__*/_jsxs(Box,{style:{width:'100%',display:'flex',justifyContent:'left',alignItems:'left'},children:[/*#__PURE__*/_jsx(\"button\",{title:\"Launch Web UI\",style:{borderWidth:'0px',backgroundColor:'transparent',paddingLeft:'0px',paddingRight:'10px'},onClick:function onClick(){if(isCallingApi||isUpdatingModel){// Make sure no ongoing call\nreturn;}setIsCallingApi(true);fetcher(openUrl,{method:'HEAD'}).then(function(response){if(response.status===404){// If web UI doesn't exist (404 Not Found)\nconsole.log('UI does not exist, creating new...');return fetcher(gradioUrl,{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({model_type:row.model_type,model_family:row.model_family,model_id:row.id,controlnet:row.controlnet,model_revision:row.model_revision,model_name:row.model_name})}).then(function(response){return response.json();}).then(function(){return window.open(openUrl,'_blank','noopener noreferrer');}).finally(function(){return setIsCallingApi(false);});}else if(response.ok){// If web UI does exist\nconsole.log('UI exists, opening...');window.open(openUrl,'_blank','noopener noreferrer');setIsCallingApi(false);}else{// Other HTTP errors\nconsole.error(\"Unexpected response status: \".concat(response.status));setIsCallingApi(false);}}).catch(function(error){console.error('Error:',error);setIsCallingApi(false);});},children:/*#__PURE__*/_jsx(Box,{width:\"40px\",m:\"0 auto\",p:\"5px\",display:\"flex\",justifyContent:\"center\",borderRadius:\"4px\",style:{border:'1px solid #e5e7eb',borderWidth:'1px',borderColor:'#e5e7eb'},children:/*#__PURE__*/_jsx(OpenInBrowserOutlinedIcon,{})})}),/*#__PURE__*/_jsx(\"button\",{title:\"Terminate Model\",style:{borderWidth:'0px',backgroundColor:'transparent',paddingLeft:'0px',paddingRight:'10px'},onClick:function onClick(){if(isCallingApi||isUpdatingModel){return;}setIsCallingApi(true);fetcher(closeUrl,{method:'DELETE'}).then(function(response){response.json();}).then(function(){setIsCallingApi(false);}).catch(function(error){console.error('Error:',error);setIsCallingApi(false);});},children:/*#__PURE__*/_jsx(Box,{width:\"40px\",m:\"0 auto\",p:\"5px\",display:\"flex\",justifyContent:\"center\",borderRadius:\"4px\",style:{border:'1px solid #e5e7eb',borderWidth:'1px',borderColor:'#e5e7eb'},children:/*#__PURE__*/_jsx(DeleteOutlineOutlinedIcon,{})})})]});}}];var audioModelColumns=embeddingModelColumns;var rerankModelColumns=embeddingModelColumns;var flexibleModelColumns=embeddingModelColumns;var dataGridStyle={'& .MuiDataGrid-cell':{borderBottom:'none'},'& .MuiDataGrid-columnHeaders':{borderBottom:'none'},'& .MuiDataGrid-columnHeaderTitle':{fontWeight:'bold'},'& .MuiDataGrid-virtualScroller':{overflowX:'visible !important',overflow:'visible'},'& .MuiDataGrid-footerContainer':{borderTop:'none'},'border-width':'0px'};var noRowsOverlay=function noRowsOverlay(){return/*#__PURE__*/_jsx(Stack,{height:\"100%\",alignItems:\"center\",justifyContent:\"center\",children:\"No Running Models\"});};var noResultsOverlay=function noResultsOverlay(){return/*#__PURE__*/_jsx(Stack,{height:\"100%\",alignItems:\"center\",justifyContent:\"center\",children:\"No Running Models Matches\"});};return/*#__PURE__*/_jsxs(Box,{sx:{height:'100%',width:'100%',padding:'20px 20px 0 20px'},children:[/*#__PURE__*/_jsx(Title,{title:\"Running Models\"}),/*#__PURE__*/_jsx(ErrorMessageSnackBar,{}),/*#__PURE__*/_jsxs(TabContext,{value:tabValue,children:[/*#__PURE__*/_jsx(Box,{sx:{borderBottom:1,borderColor:'divider'},children:/*#__PURE__*/_jsxs(TabList,{value:tabValue,onChange:handleTabChange,\"aria-label\":\"tabs\",children:[/*#__PURE__*/_jsx(Tab,{label:\"Language Models\",value:\"/running_models/LLM\"}),/*#__PURE__*/_jsx(Tab,{label:\"Embedding Models\",value:\"/running_models/embedding\"}),/*#__PURE__*/_jsx(Tab,{label:\"Rerank models\",value:\"/running_models/rerank\"}),/*#__PURE__*/_jsx(Tab,{label:\"Image models\",value:\"/running_models/image\"}),/*#__PURE__*/_jsx(Tab,{label:\"Audio models\",value:\"/running_models/audio\"}),/*#__PURE__*/_jsx(Tab,{label:\"Flexible models\",value:\"/running_models/flexible\"})]})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/running_models/LLM\",sx:{padding:0},children:/*#__PURE__*/_jsx(Box,{sx:{height:'100%',width:'100%'},children:/*#__PURE__*/_jsx(DataGrid,{rows:llmData,columns:llmColumns,autoHeight:true,sx:dataGridStyle,slots:{noRowsOverlay:noRowsOverlay,noResultsOverlay:noResultsOverlay}})})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/running_models/embedding\",sx:{padding:0},children:/*#__PURE__*/_jsx(Box,{sx:{height:'100%',width:'100%'},children:/*#__PURE__*/_jsx(DataGrid,{rows:embeddingModelData,columns:embeddingModelColumns,autoHeight:true,sx:dataGridStyle,slots:{noRowsOverlay:noRowsOverlay,noResultsOverlay:noResultsOverlay}})})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/running_models/rerank\",sx:{padding:0},children:/*#__PURE__*/_jsx(Box,{sx:{height:'100%',width:'100%'},children:/*#__PURE__*/_jsx(DataGrid,{rows:rerankModelData,columns:rerankModelColumns,autoHeight:true,sx:dataGridStyle,slots:{noRowsOverlay:noRowsOverlay,noResultsOverlay:noResultsOverlay}})})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/running_models/image\",sx:{padding:0},children:/*#__PURE__*/_jsx(Box,{sx:{height:'100%',width:'100%'},children:/*#__PURE__*/_jsx(DataGrid,{rows:imageModelData,columns:imageModelColumns,autoHeight:true,sx:dataGridStyle,slots:{noRowsOverlay:noRowsOverlay,noResultsOverlay:noResultsOverlay}})})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/running_models/audio\",sx:{padding:0},children:/*#__PURE__*/_jsx(Box,{sx:{height:'100%',width:'100%'},children:/*#__PURE__*/_jsx(DataGrid,{rows:audioModelData,columns:audioModelColumns,autoHeight:true,sx:dataGridStyle,slots:{noRowsOverlay:noRowsOverlay,noResultsOverlay:noResultsOverlay}})})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/running_models/flexible\",sx:{padding:0},children:/*#__PURE__*/_jsx(Box,{sx:{height:'100%',width:'100%'},children:/*#__PURE__*/_jsx(DataGrid,{rows:flexibleModelData,columns:flexibleModelColumns,autoHeight:true,sx:dataGridStyle,slots:{noRowsOverlay:noRowsOverlay,noResultsOverlay:noResultsOverlay}})})})]})]});};export default RunningModels;","map":{"version":3,"names":["DeleteOutlineOutlinedIcon","OpenInBrowserOutlinedIcon","TabContext","TabList","TabPanel","Box","Stack","Tab","DataGrid","React","useContext","useEffect","useState","useCookies","useNavigate","ApiContext","ErrorMessageSnackBar","fetcher","fetchWrapper","Title","jsx","_jsx","jsxs","_jsxs","RunningModels","_React$useState","sessionStorage","getItem","_React$useState2","_slicedToArray","tabValue","setTabValue","_useState","_useState2","llmData","setLlmData","_useState3","_useState4","embeddingModelData","setEmbeddingModelData","_useState5","_useState6","imageModelData","setImageModelData","_useState7","_useState8","audioModelData","setAudioModelData","_useState9","_useState10","rerankModelData","setRerankModelData","_useState11","_useState12","flexibleModelData","setFlexibleModelData","_useContext","isCallingApi","setIsCallingApi","_useContext2","isUpdatingModel","setIsUpdatingModel","_useContext3","setErrorMsg","_useCookies","_useCookies2","cookie","navigate","endPoint","handleTabChange","event","newValue","setItem","update","token","undefined","replace","id","url","get","then","response","newLlmData","newEmbeddingModelData","newImageModelData","newAudioModelData","newRerankModelData","newFlexibleModelData","data","forEach","model","_objectSpread","model_type","push","catch","error","console","status","message","llmColumns","field","headerName","flex","minWidth","sortable","filterable","disableColumnMenu","renderCell","_ref","row","openUrl","concat","closeUrl","gradioUrl","style","width","display","justifyContent","alignItems","children","title","borderWidth","backgroundColor","paddingLeft","paddingRight","onClick","method","log","headers","body","JSON","stringify","model_name","model_family","model_size_in_billions","model_format","quantization","context_length","model_ability","model_description","model_lang","json","window","open","finally","ok","m","p","borderRadius","border","borderColor","embeddingModelColumns","_ref2","imageModelColumns","_ref3","model_id","controlnet","model_revision","audioModelColumns","rerankModelColumns","flexibleModelColumns","dataGridStyle","borderBottom","fontWeight","overflowX","overflow","borderTop","noRowsOverlay","height","noResultsOverlay","sx","padding","value","onChange","label","rows","columns","autoHeight","slots"],"sources":["/home/runner/work/inference/inference/xinference/web/ui/src/scenes/running_models/index.js"],"sourcesContent":["import DeleteOutlineOutlinedIcon from '@mui/icons-material/DeleteOutlineOutlined'\nimport OpenInBrowserOutlinedIcon from '@mui/icons-material/OpenInBrowserOutlined'\nimport { TabContext, TabList, TabPanel } from '@mui/lab'\nimport { Box, Stack, Tab } from '@mui/material'\nimport { DataGrid } from '@mui/x-data-grid'\nimport React, { useContext, useEffect, useState } from 'react'\nimport { useCookies } from 'react-cookie'\nimport { useNavigate } from 'react-router-dom'\n\nimport { ApiContext } from '../../components/apiContext'\nimport ErrorMessageSnackBar from '../../components/errorMessageSnackBar'\nimport fetcher from '../../components/fetcher'\nimport fetchWrapper from '../../components/fetchWrapper'\nimport Title from '../../components/Title'\n\nconst RunningModels = () => {\n const [tabValue, setTabValue] = React.useState(\n sessionStorage.getItem('runningModelType')\n )\n const [llmData, setLlmData] = useState([])\n const [embeddingModelData, setEmbeddingModelData] = useState([])\n const [imageModelData, setImageModelData] = useState([])\n const [audioModelData, setAudioModelData] = useState([])\n const [rerankModelData, setRerankModelData] = useState([])\n const [flexibleModelData, setFlexibleModelData] = useState([])\n const { isCallingApi, setIsCallingApi } = useContext(ApiContext)\n const { isUpdatingModel, setIsUpdatingModel } = useContext(ApiContext)\n const { setErrorMsg } = useContext(ApiContext)\n const [cookie] = useCookies(['token'])\n const navigate = useNavigate()\n const endPoint = useContext(ApiContext).endPoint\n\n const handleTabChange = (event, newValue) => {\n setTabValue(newValue)\n navigate(newValue)\n sessionStorage.setItem('runningModelType', newValue)\n }\n\n const update = (isCallingApi) => {\n if (cookie.token === '' || cookie.token === undefined) {\n navigate('/login', { replace: true })\n return\n }\n if (cookie.token !== 'no_auth' && !sessionStorage.getItem('token')) {\n navigate('/login', { replace: true })\n return\n }\n if (isCallingApi) {\n setLlmData([{ id: 'Loading, do not refresh page...', url: 'IS_LOADING' }])\n setEmbeddingModelData([\n { id: 'Loading, do not refresh page...', url: 'IS_LOADING' },\n ])\n setAudioModelData([\n { id: 'Loading, do not refresh page...', url: 'IS_LOADING' },\n ])\n setImageModelData([\n { id: 'Loading, do not refresh page...', url: 'IS_LOADING' },\n ])\n setRerankModelData([\n { id: 'Loading, do not refresh page...', url: 'IS_LOADING' },\n ])\n setFlexibleModelData([\n { id: 'Loading, do not refresh page...', url: 'IS_LOADING' },\n ])\n } else {\n setIsUpdatingModel(true)\n\n fetchWrapper\n .get('/v1/models')\n .then((response) => {\n const newLlmData = []\n const newEmbeddingModelData = []\n const newImageModelData = []\n const newAudioModelData = []\n const newRerankModelData = []\n const newFlexibleModelData = []\n response.data.forEach((model) => {\n let newValue = {\n ...model,\n id: model.id,\n url: model.id,\n }\n if (newValue.model_type === 'LLM') {\n newLlmData.push(newValue)\n } else if (newValue.model_type === 'embedding') {\n newEmbeddingModelData.push(newValue)\n } else if (newValue.model_type === 'audio') {\n newAudioModelData.push(newValue)\n } else if (newValue.model_type === 'image') {\n newImageModelData.push(newValue)\n } else if (newValue.model_type === 'rerank') {\n newRerankModelData.push(newValue)\n } else if (newValue.model_type === 'flexible') {\n newFlexibleModelData.push(newValue)\n }\n })\n setLlmData(newLlmData)\n setEmbeddingModelData(newEmbeddingModelData)\n setAudioModelData(newAudioModelData)\n setImageModelData(newImageModelData)\n setRerankModelData(newRerankModelData)\n setFlexibleModelData(newFlexibleModelData)\n setIsUpdatingModel(false)\n })\n .catch((error) => {\n console.error('Error:', error)\n setIsUpdatingModel(false)\n if (error.response.status !== 403 && error.response.status !== 401) {\n setErrorMsg(error.message)\n }\n })\n }\n }\n\n useEffect(() => {\n update(isCallingApi)\n // eslint-disable-next-line\n }, [isCallingApi, cookie.token])\n\n const llmColumns = [\n {\n field: 'id',\n headerName: 'ID',\n flex: 1,\n minWidth: 250,\n },\n {\n field: 'model_name',\n headerName: 'Name',\n flex: 1,\n },\n {\n field: 'address',\n headerName: 'Address',\n flex: 1,\n },\n {\n field: 'accelerators',\n headerName: 'GPU Indexes',\n flex: 1,\n },\n {\n field: 'model_size_in_billions',\n headerName: 'Size',\n flex: 1,\n },\n {\n field: 'quantization',\n headerName: 'Quantization',\n flex: 1,\n },\n {\n field: 'replica',\n headerName: 'Replica',\n flex: 1,\n },\n {\n field: 'url',\n headerName: 'Actions',\n flex: 1,\n minWidth: 200,\n sortable: false,\n filterable: false,\n disableColumnMenu: true,\n renderCell: ({ row }) => {\n const url = row.url\n const openUrl = `${endPoint}/` + url\n const closeUrl = `${endPoint}/v1/models/` + url\n const gradioUrl = `${endPoint}/v1/ui/` + url\n\n if (url === 'IS_LOADING') {\n return <div></div>\n }\n\n return (\n <Box\n style={{\n width: '100%',\n display: 'flex',\n justifyContent: 'left',\n alignItems: 'left',\n }}\n >\n <button\n title=\"Launch Web UI\"\n style={{\n borderWidth: '0px',\n backgroundColor: 'transparent',\n paddingLeft: '0px',\n paddingRight: '10px',\n }}\n onClick={() => {\n if (isCallingApi || isUpdatingModel) {\n // Make sure no ongoing call\n return\n }\n\n setIsCallingApi(true)\n\n fetcher(openUrl, {\n method: 'HEAD',\n })\n .then((response) => {\n if (response.status === 404) {\n // If web UI doesn't exist (404 Not Found)\n console.log('UI does not exist, creating new...')\n return fetcher(gradioUrl, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify({\n model_type: row.model_type,\n model_name: row.model_family,\n model_size_in_billions: row.model_size_in_billions,\n model_format: row.model_format,\n quantization: row.quantization,\n context_length: row.context_length,\n model_ability: row.model_ability,\n model_description: row.model_description,\n model_lang: row.model_lang,\n }),\n })\n .then((response) => response.json())\n .then(() =>\n window.open(openUrl, '_blank', 'noopener noreferrer')\n )\n .finally(() => setIsCallingApi(false))\n } else if (response.ok) {\n // If web UI does exist\n console.log('UI exists, opening...')\n window.open(openUrl, '_blank', 'noopener noreferrer')\n setIsCallingApi(false)\n } else {\n // Other HTTP errors\n console.error(\n `Unexpected response status: ${response.status}`\n )\n setIsCallingApi(false)\n }\n })\n .catch((error) => {\n console.error('Error:', error)\n setIsCallingApi(false)\n })\n }}\n >\n <Box\n width=\"40px\"\n m=\"0 auto\"\n p=\"5px\"\n display=\"flex\"\n justifyContent=\"center\"\n borderRadius=\"4px\"\n style={{\n border: '1px solid #e5e7eb',\n borderWidth: '1px',\n borderColor: '#e5e7eb',\n }}\n >\n <OpenInBrowserOutlinedIcon />\n </Box>\n </button>\n <button\n title=\"Terminate Model\"\n style={{\n borderWidth: '0px',\n backgroundColor: 'transparent',\n paddingLeft: '0px',\n paddingRight: '10px',\n }}\n onClick={() => {\n if (isCallingApi || isUpdatingModel) {\n return\n }\n setIsCallingApi(true)\n fetcher(closeUrl, {\n method: 'DELETE',\n })\n .then((response) => {\n response.json()\n })\n .then(() => {\n setIsCallingApi(false)\n })\n .catch((error) => {\n console.error('Error:', error)\n setIsCallingApi(false)\n })\n }}\n >\n <Box\n width=\"40px\"\n m=\"0 auto\"\n p=\"5px\"\n display=\"flex\"\n justifyContent=\"center\"\n borderRadius=\"4px\"\n style={{\n border: '1px solid #e5e7eb',\n borderWidth: '1px',\n borderColor: '#e5e7eb',\n }}\n >\n <DeleteOutlineOutlinedIcon />\n </Box>\n </button>\n </Box>\n )\n },\n },\n ]\n\n const embeddingModelColumns = [\n {\n field: 'id',\n headerName: 'ID',\n flex: 1,\n minWidth: 250,\n },\n {\n field: 'model_name',\n headerName: 'Name',\n flex: 1,\n },\n {\n field: 'address',\n headerName: 'Address',\n flex: 1,\n },\n {\n field: 'accelerators',\n headerName: 'GPU Indexes',\n flex: 1,\n },\n {\n field: 'replica',\n headerName: 'Replica',\n flex: 1,\n },\n {\n field: 'url',\n headerName: 'Actions',\n flex: 1,\n minWidth: 200,\n sortable: false,\n filterable: false,\n disableColumnMenu: true,\n renderCell: ({ row }) => {\n const url = row.url\n const closeUrl = `${endPoint}/v1/models/` + url\n\n if (url === 'IS_LOADING') {\n return <div></div>\n }\n\n return (\n <Box\n style={{\n width: '100%',\n display: 'flex',\n justifyContent: 'left',\n alignItems: 'left',\n }}\n >\n <button\n title=\"Terminate Model\"\n style={{\n borderWidth: '0px',\n backgroundColor: 'transparent',\n paddingLeft: '0px',\n paddingRight: '10px',\n }}\n onClick={() => {\n if (isCallingApi || isUpdatingModel) {\n return\n }\n setIsCallingApi(true)\n fetcher(closeUrl, {\n method: 'DELETE',\n })\n .then((response) => {\n response.json()\n })\n .then(() => {\n setIsCallingApi(false)\n })\n .catch((error) => {\n console.error('Error:', error)\n setIsCallingApi(false)\n })\n }}\n >\n <Box\n width=\"40px\"\n m=\"0 auto\"\n p=\"5px\"\n display=\"flex\"\n justifyContent=\"center\"\n borderRadius=\"4px\"\n style={{\n border: '1px solid #e5e7eb',\n borderWidth: '1px',\n borderColor: '#e5e7eb',\n }}\n >\n <DeleteOutlineOutlinedIcon />\n </Box>\n </button>\n </Box>\n )\n },\n },\n ]\n const imageModelColumns = [\n {\n field: 'id',\n headerName: 'ID',\n flex: 1,\n minWidth: 250,\n },\n {\n field: 'model_name',\n headerName: 'Name',\n flex: 1,\n },\n {\n field: 'address',\n headerName: 'Address',\n flex: 1,\n },\n {\n field: 'accelerators',\n headerName: 'GPU Indexes',\n flex: 1,\n },\n {\n field: 'url',\n headerName: 'Actions',\n flex: 1,\n minWidth: 200,\n sortable: false,\n filterable: false,\n disableColumnMenu: true,\n renderCell: ({ row }) => {\n //这个url指的是model_uid\n const url = row.url\n console.log('url: ' + url)\n const openUrl = `${endPoint}/` + url\n const closeUrl = `${endPoint}/v1/models/` + url\n const gradioUrl = `${endPoint}/v1/ui/images/` + url\n\n if (url === 'IS_LOADING') {\n return <div></div>\n }\n\n return (\n <Box\n style={{\n width: '100%',\n display: 'flex',\n justifyContent: 'left',\n alignItems: 'left',\n }}\n >\n <button\n title=\"Launch Web UI\"\n style={{\n borderWidth: '0px',\n backgroundColor: 'transparent',\n paddingLeft: '0px',\n paddingRight: '10px',\n }}\n onClick={() => {\n if (isCallingApi || isUpdatingModel) {\n // Make sure no ongoing call\n return\n }\n\n setIsCallingApi(true)\n\n fetcher(openUrl, {\n method: 'HEAD',\n })\n .then((response) => {\n if (response.status === 404) {\n // If web UI doesn't exist (404 Not Found)\n console.log('UI does not exist, creating new...')\n return fetcher(gradioUrl, {\n method: 'POST',\n headers: {\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify({\n model_type: row.model_type,\n model_family: row.model_family,\n model_id: row.id,\n controlnet: row.controlnet,\n model_revision: row.model_revision,\n model_name: row.model_name,\n }),\n })\n .then((response) => response.json())\n .then(() =>\n window.open(openUrl, '_blank', 'noopener noreferrer')\n )\n .finally(() => setIsCallingApi(false))\n } else if (response.ok) {\n // If web UI does exist\n console.log('UI exists, opening...')\n window.open(openUrl, '_blank', 'noopener noreferrer')\n setIsCallingApi(false)\n } else {\n // Other HTTP errors\n console.error(\n `Unexpected response status: ${response.status}`\n )\n setIsCallingApi(false)\n }\n })\n .catch((error) => {\n console.error('Error:', error)\n setIsCallingApi(false)\n })\n }}\n >\n <Box\n width=\"40px\"\n m=\"0 auto\"\n p=\"5px\"\n display=\"flex\"\n justifyContent=\"center\"\n borderRadius=\"4px\"\n style={{\n border: '1px solid #e5e7eb',\n borderWidth: '1px',\n borderColor: '#e5e7eb',\n }}\n >\n <OpenInBrowserOutlinedIcon />\n </Box>\n </button>\n <button\n title=\"Terminate Model\"\n style={{\n borderWidth: '0px',\n backgroundColor: 'transparent',\n paddingLeft: '0px',\n paddingRight: '10px',\n }}\n onClick={() => {\n if (isCallingApi || isUpdatingModel) {\n return\n }\n setIsCallingApi(true)\n fetcher(closeUrl, {\n method: 'DELETE',\n })\n .then((response) => {\n response.json()\n })\n .then(() => {\n setIsCallingApi(false)\n })\n .catch((error) => {\n console.error('Error:', error)\n setIsCallingApi(false)\n })\n }}\n >\n <Box\n width=\"40px\"\n m=\"0 auto\"\n p=\"5px\"\n display=\"flex\"\n justifyContent=\"center\"\n borderRadius=\"4px\"\n style={{\n border: '1px solid #e5e7eb',\n borderWidth: '1px',\n borderColor: '#e5e7eb',\n }}\n >\n <DeleteOutlineOutlinedIcon />\n </Box>\n </button>\n </Box>\n )\n },\n },\n ]\n const audioModelColumns = embeddingModelColumns\n const rerankModelColumns = embeddingModelColumns\n const flexibleModelColumns = embeddingModelColumns\n\n const dataGridStyle = {\n '& .MuiDataGrid-cell': {\n borderBottom: 'none',\n },\n '& .MuiDataGrid-columnHeaders': {\n borderBottom: 'none',\n },\n '& .MuiDataGrid-columnHeaderTitle': {\n fontWeight: 'bold',\n },\n '& .MuiDataGrid-virtualScroller': {\n overflowX: 'visible !important',\n overflow: 'visible',\n },\n '& .MuiDataGrid-footerContainer': {\n borderTop: 'none',\n },\n 'border-width': '0px',\n }\n\n const noRowsOverlay = () => {\n return (\n <Stack height=\"100%\" alignItems=\"center\" justifyContent=\"center\">\n No Running Models\n </Stack>\n )\n }\n\n const noResultsOverlay = () => {\n return (\n <Stack height=\"100%\" alignItems=\"center\" justifyContent=\"center\">\n No Running Models Matches\n </Stack>\n )\n }\n\n return (\n <Box\n sx={{\n height: '100%',\n width: '100%',\n padding: '20px 20px 0 20px',\n }}\n >\n <Title title=\"Running Models\" />\n <ErrorMessageSnackBar />\n <TabContext value={tabValue}>\n <Box sx={{ borderBottom: 1, borderColor: 'divider' }}>\n <TabList\n value={tabValue}\n onChange={handleTabChange}\n aria-label=\"tabs\"\n >\n <Tab label=\"Language Models\" value=\"/running_models/LLM\" />\n <Tab label=\"Embedding Models\" value=\"/running_models/embedding\" />\n <Tab label=\"Rerank models\" value=\"/running_models/rerank\" />\n <Tab label=\"Image models\" value=\"/running_models/image\" />\n <Tab label=\"Audio models\" value=\"/running_models/audio\" />\n <Tab label=\"Flexible models\" value=\"/running_models/flexible\" />\n </TabList>\n </Box>\n <TabPanel value=\"/running_models/LLM\" sx={{ padding: 0 }}>\n <Box sx={{ height: '100%', width: '100%' }}>\n <DataGrid\n rows={llmData}\n columns={llmColumns}\n autoHeight={true}\n sx={dataGridStyle}\n slots={{\n noRowsOverlay: noRowsOverlay,\n noResultsOverlay: noResultsOverlay,\n }}\n />\n </Box>\n </TabPanel>\n <TabPanel value=\"/running_models/embedding\" sx={{ padding: 0 }}>\n <Box sx={{ height: '100%', width: '100%' }}>\n <DataGrid\n rows={embeddingModelData}\n columns={embeddingModelColumns}\n autoHeight={true}\n sx={dataGridStyle}\n slots={{\n noRowsOverlay: noRowsOverlay,\n noResultsOverlay: noResultsOverlay,\n }}\n />\n </Box>\n </TabPanel>\n <TabPanel value=\"/running_models/rerank\" sx={{ padding: 0 }}>\n <Box sx={{ height: '100%', width: '100%' }}>\n <DataGrid\n rows={rerankModelData}\n columns={rerankModelColumns}\n autoHeight={true}\n sx={dataGridStyle}\n slots={{\n noRowsOverlay: noRowsOverlay,\n noResultsOverlay: noResultsOverlay,\n }}\n />\n </Box>\n </TabPanel>\n <TabPanel value=\"/running_models/image\" sx={{ padding: 0 }}>\n <Box sx={{ height: '100%', width: '100%' }}>\n <DataGrid\n rows={imageModelData}\n columns={imageModelColumns}\n autoHeight={true}\n sx={dataGridStyle}\n slots={{\n noRowsOverlay: noRowsOverlay,\n noResultsOverlay: noResultsOverlay,\n }}\n />\n </Box>\n </TabPanel>\n <TabPanel value=\"/running_models/audio\" sx={{ padding: 0 }}>\n <Box sx={{ height: '100%', width: '100%' }}>\n <DataGrid\n rows={audioModelData}\n columns={audioModelColumns}\n autoHeight={true}\n sx={dataGridStyle}\n slots={{\n noRowsOverlay: noRowsOverlay,\n noResultsOverlay: noResultsOverlay,\n }}\n />\n </Box>\n </TabPanel>\n <TabPanel value=\"/running_models/flexible\" sx={{ padding: 0 }}>\n <Box sx={{ height: '100%', width: '100%' }}>\n <DataGrid\n rows={flexibleModelData}\n columns={flexibleModelColumns}\n autoHeight={true}\n sx={dataGridStyle}\n slots={{\n noRowsOverlay: noRowsOverlay,\n noResultsOverlay: noResultsOverlay,\n }}\n />\n </Box>\n </TabPanel>\n </TabContext>\n </Box>\n )\n}\n\nexport default RunningModels\n"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"ast":null,"code":"import _slicedToArray from\"/home/runner/work/inference/inference/xinference/web/ui/node_modules/@babel/runtime/helpers/esm/slicedToArray.js\";import{TabContext,TabList,TabPanel}from'@mui/lab';import{Box,Tab}from'@mui/material';import React,{useEffect}from'react';import{useCookies}from'react-cookie';import{useNavigate}from'react-router-dom';import ErrorMessageSnackBar from'../../components/errorMessageSnackBar';import Title from'../../components/Title';import RegisterModelComponent from'./registerModel';import{jsx as _jsx}from\"react/jsx-runtime\";import{jsxs as _jsxs}from\"react/jsx-runtime\";var RegisterModel=function RegisterModel(){var _React$useState=React.useState(sessionStorage.getItem('registerModelType')?sessionStorage.getItem('registerModelType'):'/register_model/llm'),_React$useState2=_slicedToArray(_React$useState,2),tabValue=_React$useState2[0],setTabValue=_React$useState2[1];var _useCookies=useCookies(['token']),_useCookies2=_slicedToArray(_useCookies,1),cookie=_useCookies2[0];var navigate=useNavigate();useEffect(function(){if(cookie.token===''||cookie.token===undefined){navigate('/login',{replace:true});return;}if(cookie.token!=='no_auth'&&!sessionStorage.getItem('token')){navigate('/login',{replace:true});return;}},[cookie.token]);var handleTabChange=function handleTabChange(_,newValue){setTabValue(newValue);navigate(newValue);sessionStorage.setItem('registerModelType',newValue);};return/*#__PURE__*/_jsxs(Box,{m:\"20px\",style:{overflow:'hidden'},children:[/*#__PURE__*/_jsx(Title,{title:\"Register Model\"}),/*#__PURE__*/_jsx(ErrorMessageSnackBar,{}),/*#__PURE__*/_jsxs(TabContext,{value:tabValue,children:[/*#__PURE__*/_jsx(Box,{sx:{borderBottom:1,borderColor:'divider'},children:/*#__PURE__*/_jsxs(TabList,{value:tabValue,onChange:handleTabChange,\"aria-label\":\"tabs\",children:[/*#__PURE__*/_jsx(Tab,{label:\"Language Model\",value:\"/register_model/llm\"}),/*#__PURE__*/_jsx(Tab,{label:\"Embedding Model\",value:\"/register_model/embedding\"}),/*#__PURE__*/_jsx(Tab,{label:\"Rerank Model\",value:\"/register_model/rerank\"}),/*#__PURE__*/_jsx(Tab,{label:\"Image Model\",value:\"/register_model/image\"}),/*#__PURE__*/_jsx(Tab,{label:\"Audio Model\",value:\"/register_model/audio\"}),/*#__PURE__*/_jsx(Tab,{label:\"Flexible Model\",value:\"/register_model/flexible\"})]})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/register_model/llm\",sx:{padding:0},children:/*#__PURE__*/_jsx(RegisterModelComponent,{modelType:\"LLM\",customData:{version:1,model_name:'custom-llm',model_description:'This is a custom model description.',context_length:2048,model_lang:['en'],model_ability:['generate'],model_family:'',model_specs:[{model_uri:'/path/to/llama-1',model_size_in_billions:7,model_format:'pytorch',quantizations:['none']}],prompt_style:undefined}})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/register_model/embedding\",sx:{padding:0},children:/*#__PURE__*/_jsx(RegisterModelComponent,{modelType:\"embedding\",customData:{model_name:'custom-embedding',dimensions:768,max_tokens:512,model_uri:'/path/to/embedding-model',language:['en']}})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/register_model/rerank\",sx:{padding:0},children:/*#__PURE__*/_jsx(RegisterModelComponent,{modelType:\"rerank\",customData:{model_name:'custom-rerank',model_uri:'/path/to/rerank-model',language:['en']}})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/register_model/image\",sx:{padding:0},children:/*#__PURE__*/_jsx(RegisterModelComponent,{modelType:\"image\",customData:{model_name:'custom-image',model_uri:'/path/to/image-model',model_family:'stable_diffusion',controlnet:[]}})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/register_model/audio\",sx:{padding:0},children:/*#__PURE__*/_jsx(RegisterModelComponent,{modelType:\"audio\",customData:{model_name:'custom-audio',model_uri:'/path/to/audio-model',multilingual:false,model_family:'whisper'}})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/register_model/flexible\",sx:{padding:0},children:/*#__PURE__*/_jsx(RegisterModelComponent,{modelType:\"flexible\",customData:{model_name:'flexible-model',model_description:'This is a model description.',model_uri:'/path/to/model',launcher:'xinference.model.flexible.launchers.transformers',launcher_args:'{}'}})})]})]});};export default RegisterModel;","map":{"version":3,"names":["TabContext","TabList","TabPanel","Box","Tab","React","useEffect","useCookies","useNavigate","ErrorMessageSnackBar","Title","RegisterModelComponent","jsx","_jsx","jsxs","_jsxs","RegisterModel","_React$useState","useState","sessionStorage","getItem","_React$useState2","_slicedToArray","tabValue","setTabValue","_useCookies","_useCookies2","cookie","navigate","token","undefined","replace","handleTabChange","_","newValue","setItem","m","style","overflow","children","title","value","sx","borderBottom","borderColor","onChange","label","padding","modelType","customData","version","model_name","model_description","context_length","model_lang","model_ability","model_family","model_specs","model_uri","model_size_in_billions","model_format","quantizations","prompt_style","dimensions","max_tokens","language","controlnet","multilingual","launcher","launcher_args"],"sources":["/home/runner/work/inference/inference/xinference/web/ui/src/scenes/register_model/index.js"],"sourcesContent":["import { TabContext, TabList, TabPanel } from '@mui/lab'\nimport { Box, Tab } from '@mui/material'\nimport React, { useEffect } from 'react'\nimport { useCookies } from 'react-cookie'\nimport { useNavigate } from 'react-router-dom'\n\nimport ErrorMessageSnackBar from '../../components/errorMessageSnackBar'\nimport Title from '../../components/Title'\nimport RegisterModelComponent from './registerModel'\n\nconst RegisterModel = () => {\n const [tabValue, setTabValue] = React.useState(\n sessionStorage.getItem('registerModelType')\n ? sessionStorage.getItem('registerModelType')\n : '/register_model/llm'\n )\n const [cookie] = useCookies(['token'])\n const navigate = useNavigate()\n\n useEffect(() => {\n if (cookie.token === '' || cookie.token === undefined) {\n navigate('/login', { replace: true })\n return\n }\n if (cookie.token !== 'no_auth' && !sessionStorage.getItem('token')) {\n navigate('/login', { replace: true })\n return\n }\n }, [cookie.token])\n\n const handleTabChange = (_, newValue) => {\n setTabValue(newValue)\n navigate(newValue)\n sessionStorage.setItem('registerModelType', newValue)\n }\n\n return (\n <Box m=\"20px\" style={{ overflow: 'hidden' }}>\n <Title title=\"Register Model\" />\n <ErrorMessageSnackBar />\n <TabContext value={tabValue}>\n <Box sx={{ borderBottom: 1, borderColor: 'divider' }}>\n <TabList\n value={tabValue}\n onChange={handleTabChange}\n aria-label=\"tabs\"\n >\n <Tab label=\"Language Model\" value=\"/register_model/llm\" />\n <Tab label=\"Embedding Model\" value=\"/register_model/embedding\" />\n <Tab label=\"Rerank Model\" value=\"/register_model/rerank\" />\n <Tab label=\"Image Model\" value=\"/register_model/image\" />\n <Tab label=\"Audio Model\" value=\"/register_model/audio\" />\n <Tab label=\"Flexible Model\" value=\"/register_model/flexible\" />\n </TabList>\n </Box>\n <TabPanel value=\"/register_model/llm\" sx={{ padding: 0 }}>\n <RegisterModelComponent\n modelType=\"LLM\"\n customData={{\n version: 1,\n model_name: 'custom-llm',\n model_description: 'This is a custom model description.',\n context_length: 2048,\n model_lang: ['en'],\n model_ability: ['generate'],\n model_family: '',\n model_specs: [\n {\n model_uri: '/path/to/llama-1',\n model_size_in_billions: 7,\n model_format: 'pytorch',\n quantizations: ['none'],\n },\n ],\n prompt_style: undefined,\n }}\n />\n </TabPanel>\n <TabPanel value=\"/register_model/embedding\" sx={{ padding: 0 }}>\n <RegisterModelComponent\n modelType=\"embedding\"\n customData={{\n model_name: 'custom-embedding',\n dimensions: 768,\n max_tokens: 512,\n model_uri: '/path/to/embedding-model',\n language: ['en'],\n }}\n />\n </TabPanel>\n <TabPanel value=\"/register_model/rerank\" sx={{ padding: 0 }}>\n <RegisterModelComponent\n modelType=\"rerank\"\n customData={{\n model_name: 'custom-rerank',\n model_uri: '/path/to/rerank-model',\n language: ['en'],\n }}\n />\n </TabPanel>\n <TabPanel value=\"/register_model/image\" sx={{ padding: 0 }}>\n <RegisterModelComponent\n modelType=\"image\"\n customData={{\n model_name: 'custom-image',\n model_uri: '/path/to/image-model',\n model_family: 'stable_diffusion',\n controlnet: [],\n }}\n />\n </TabPanel>\n <TabPanel value=\"/register_model/audio\" sx={{ padding: 0 }}>\n <RegisterModelComponent\n modelType=\"audio\"\n customData={{\n model_name: 'custom-audio',\n model_uri: '/path/to/audio-model',\n multilingual: false,\n model_family: 'whisper',\n }}\n />\n </TabPanel>\n <TabPanel value=\"/register_model/flexible\" sx={{ padding: 0 }}>\n <RegisterModelComponent\n modelType=\"flexible\"\n customData={{\n model_name: 'flexible-model',\n model_description: 'This is a model description.',\n model_uri: '/path/to/model',\n launcher: 'xinference.model.flexible.launchers.transformers',\n launcher_args: '{}',\n }}\n />\n </TabPanel>\n </TabContext>\n </Box>\n )\n}\n\nexport default RegisterModel\n"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: xinference
|
|
3
|
-
Version: 0.13.
|
|
3
|
+
Version: 0.13.2
|
|
4
4
|
Summary: Model Serving Made Easy
|
|
5
5
|
Home-page: https://github.com/xorbitsai/inference
|
|
6
6
|
Author: Qin Xuye
|
|
@@ -47,7 +47,6 @@ Requires-Dist: peft
|
|
|
47
47
|
Requires-Dist: timm
|
|
48
48
|
Requires-Dist: opencv-contrib-python
|
|
49
49
|
Provides-Extra: all
|
|
50
|
-
Requires-Dist: chatglm-cpp >=0.3.0 ; extra == 'all'
|
|
51
50
|
Requires-Dist: llama-cpp-python !=0.2.58,>=0.2.25 ; extra == 'all'
|
|
52
51
|
Requires-Dist: transformers >=4.34.1 ; extra == 'all'
|
|
53
52
|
Requires-Dist: torch ; extra == 'all'
|
|
@@ -69,12 +68,12 @@ Requires-Dist: timm >=0.9.16 ; extra == 'all'
|
|
|
69
68
|
Requires-Dist: torchvision ; extra == 'all'
|
|
70
69
|
Requires-Dist: FlagEmbedding ; extra == 'all'
|
|
71
70
|
Requires-Dist: omegaconf ~=2.3.0 ; extra == 'all'
|
|
72
|
-
Requires-Dist: vector-quantize-pytorch ; extra == 'all'
|
|
73
|
-
Requires-Dist: vocos ; extra == 'all'
|
|
74
71
|
Requires-Dist: nemo-text-processing ; extra == 'all'
|
|
75
72
|
Requires-Dist: WeTextProcessing ; extra == 'all'
|
|
76
73
|
Requires-Dist: librosa ; extra == 'all'
|
|
77
74
|
Requires-Dist: xxhash ; extra == 'all'
|
|
75
|
+
Requires-Dist: torchaudio ; extra == 'all'
|
|
76
|
+
Requires-Dist: ChatTTS >0.1 ; extra == 'all'
|
|
78
77
|
Requires-Dist: boto3 <1.28.65,>=1.28.55 ; extra == 'all'
|
|
79
78
|
Requires-Dist: tensorizer ~=2.9.0 ; extra == 'all'
|
|
80
79
|
Requires-Dist: auto-gptq ; (sys_platform != "darwin") and extra == 'all'
|
|
@@ -84,12 +83,12 @@ Requires-Dist: vllm >=0.2.6 ; (sys_platform == "linux") and extra == 'all'
|
|
|
84
83
|
Requires-Dist: sglang[all] ; (sys_platform == "linux") and extra == 'all'
|
|
85
84
|
Provides-Extra: audio
|
|
86
85
|
Requires-Dist: omegaconf ~=2.3.0 ; extra == 'audio'
|
|
87
|
-
Requires-Dist: vector-quantize-pytorch ; extra == 'audio'
|
|
88
|
-
Requires-Dist: vocos ; extra == 'audio'
|
|
89
86
|
Requires-Dist: nemo-text-processing ; extra == 'audio'
|
|
90
87
|
Requires-Dist: WeTextProcessing ; extra == 'audio'
|
|
91
88
|
Requires-Dist: librosa ; extra == 'audio'
|
|
92
89
|
Requires-Dist: xxhash ; extra == 'audio'
|
|
90
|
+
Requires-Dist: torchaudio ; extra == 'audio'
|
|
91
|
+
Requires-Dist: ChatTTS >0.1 ; extra == 'audio'
|
|
93
92
|
Provides-Extra: benchmark
|
|
94
93
|
Requires-Dist: psutil ; extra == 'benchmark'
|
|
95
94
|
Provides-Extra: dev
|
|
@@ -128,7 +127,6 @@ Provides-Extra: embedding
|
|
|
128
127
|
Requires-Dist: sentence-transformers >=2.7.0 ; extra == 'embedding'
|
|
129
128
|
Provides-Extra: ggml
|
|
130
129
|
Requires-Dist: llama-cpp-python !=0.2.58,>=0.2.25 ; extra == 'ggml'
|
|
131
|
-
Requires-Dist: chatglm-cpp >=0.3.0 ; extra == 'ggml'
|
|
132
130
|
Provides-Extra: image
|
|
133
131
|
Requires-Dist: diffusers ; extra == 'image'
|
|
134
132
|
Requires-Dist: controlnet-aux ; extra == 'image'
|
|
@@ -189,22 +187,22 @@ potential of cutting-edge AI models.
|
|
|
189
187
|
|
|
190
188
|
## 🔥 Hot Topics
|
|
191
189
|
### Framework Enhancements
|
|
190
|
+
- Support Continuous batching for Transformers engine: [#1724](https://github.com/xorbitsai/inference/pull/1724)
|
|
191
|
+
- Support MLX backend for Apple Silicon chips: [#1765](https://github.com/xorbitsai/inference/pull/1765)
|
|
192
192
|
- Support specifying worker and GPU indexes for launching models: [#1195](https://github.com/xorbitsai/inference/pull/1195)
|
|
193
193
|
- Support SGLang backend: [#1161](https://github.com/xorbitsai/inference/pull/1161)
|
|
194
194
|
- Support LoRA for LLM and image models: [#1080](https://github.com/xorbitsai/inference/pull/1080)
|
|
195
195
|
- Support speech recognition model: [#929](https://github.com/xorbitsai/inference/pull/929)
|
|
196
196
|
- Metrics support: [#906](https://github.com/xorbitsai/inference/pull/906)
|
|
197
|
-
- Docker image: [#855](https://github.com/xorbitsai/inference/pull/855)
|
|
198
|
-
- Support multimodal: [#829](https://github.com/xorbitsai/inference/pull/829)
|
|
199
197
|
### New Models
|
|
198
|
+
- Built-in support for [Gemma-2-it](https://huggingface.co/blog/gemma2): [#1774](https://github.com/xorbitsai/inference/pull/1774)
|
|
199
|
+
- Built-in support for [jina-reranker-v2](https://huggingface.co/jinaai/jina-reranker-v2-base-multilingual): [#1733](https://github.com/xorbitsai/inference/pull/1733)
|
|
200
200
|
- Built-in support for [Qwen2](https://github.com/QwenLM/Qwen2): [#1509](https://github.com/xorbitsai/inference/pull/1597)
|
|
201
201
|
- Built-in support for [ChatTTS](https://github.com/2noise/ChatTTS): [#1578](https://github.com/xorbitsai/inference/pull/1578)
|
|
202
202
|
- Built-in support for [GLM-4 & GLM-4V](https://github.com/THUDM/GLM-4): [#1584](https://github.com/xorbitsai/inference/pull/1584)
|
|
203
203
|
- Built-in support for [Mistral-7B-Instruct-v0.3](https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.3): [#1576](https://github.com/xorbitsai/inference/pull/1576)
|
|
204
204
|
- Built-in support for [Codestral-22B-v0.1](https://huggingface.co/mistralai/Codestral-22B-v0.1): [#1575](https://github.com/xorbitsai/inference/pull/1575)
|
|
205
205
|
- Built-in support for [MiniCPM-Llama3-V 2.5](https://github.com/OpenBMB/MiniCPM-V): [#1577](https://github.com/xorbitsai/inference/pull/1577)
|
|
206
|
-
- Built-in support for [CogVLM2](https://github.com/THUDM/CogVLM2): [#1551](https://github.com/xorbitsai/inference/pull/1551)
|
|
207
|
-
- Built-in support for [InternVL-Chat-V1-5](https://github.com/OpenGVLab/InternVL): [#1536](https://github.com/xorbitsai/inference/pull/1536)
|
|
208
206
|
### Integrations
|
|
209
207
|
- [Dify](https://docs.dify.ai/advanced/model-configuration/xinference): an LLMOps platform that enables developers (and even non-developers) to quickly build useful applications based on large language models, ensuring they are visual, operable, and improvable.
|
|
210
208
|
- [FastGPT](https://github.com/labring/FastGPT): a knowledge-based platform built on the LLM, offers out-of-the-box data processing and model invocation capabilities, allows for workflow orchestration through Flow visualization.
|
|
@@ -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=npzZYwlsc_rih9EcKTaoGkkL3KLm52-9xfgm8jq_R4A,498
|
|
4
4
|
xinference/conftest.py,sha256=FF-ZkqkfOxQw4hz_8G7p5aB7gFdsJlr6u2ZdFuuauAA,9744
|
|
5
5
|
xinference/constants.py,sha256=_uyBB84fgZM64J3mw8_RELVJfm_dgeNRUZF9t9ZuFcM,3541
|
|
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=mN6lTFGqwFCycCMCwNELtRm2lmvuynvzD7Wwq_NEINY,14255
|
|
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=7n77U-5t0SDzpOOad4SqbFbZx-fSIQJJdM_bLwdozus,74572
|
|
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,22 +18,22 @@ 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=fMgazFQRSMefUx0_40Q_9c3o7mf0G39D8HmlkQ9KFhs,54304
|
|
22
22
|
xinference/core/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
23
23
|
xinference/core/cache_tracker.py,sha256=2hk8ANOYruhxAt4MPz482tYEQcvYBh_B7sq0eYd0rTU,6963
|
|
24
24
|
xinference/core/chat_interface.py,sha256=7SOm6Qi-iFh1otycHpn6CpISq2wTLlJzEUngJtOwMIk,19558
|
|
25
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=QWz9LeUyWwwlgxzE0JQmsNqaMc1uwtU_Q3wm6H430rw,26778
|
|
29
29
|
xinference/core/resource.py,sha256=FQ0aRt3T4ZQo0P6CZZf5QUKHiCsr5llBvKb1f7wfnxg,1611
|
|
30
30
|
xinference/core/scheduler.py,sha256=e-fhhMeWmVdx_37sNDf2BOkvHt_17wclNcby7DcUNso,15627
|
|
31
31
|
xinference/core/status_guard.py,sha256=fF5hisvfn6es9DV6Z6RRD6V_S_uLcb8lHM6PArGgb04,2820
|
|
32
|
-
xinference/core/supervisor.py,sha256=
|
|
32
|
+
xinference/core/supervisor.py,sha256=WMVFXS4aJVhTQw2mFzgk2yYk3pdqtg_1dN0ux4HRveQ,50736
|
|
33
33
|
xinference/core/utils.py,sha256=LqPrez5dGELRQDSwOD5EP8XHb-aUKAdyszS-QpNouuw,6401
|
|
34
|
-
xinference/core/worker.py,sha256=
|
|
34
|
+
xinference/core/worker.py,sha256=s90d-W93An8UKkje9KJqa8q6pNMqAaHvE4TQvLaLeXs,43013
|
|
35
35
|
xinference/deploy/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
36
|
-
xinference/deploy/cmdline.py,sha256=
|
|
36
|
+
xinference/deploy/cmdline.py,sha256=Rv9zgdsESTwrMI2vXmz3QvBgMO5Dq051VSrJ6QUlDfk,48585
|
|
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=SPwjE67d7Z_WHqOnSi8UBYk16eE1EZNDExb6TvTW6qo,6488
|
|
@@ -44,41 +44,45 @@ xinference/locale/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms
|
|
|
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
|
-
xinference/model/core.py,sha256=
|
|
47
|
+
xinference/model/core.py,sha256=5dr7y2cq2OS3aFgqIIR3uQbT1ln3xiolUsbXgu2dHGw,3999
|
|
48
48
|
xinference/model/utils.py,sha256=NGIXgpkUY0dXGxnh-FsfeNq6OS9SPwBzNfASLXWCqUo,15146
|
|
49
49
|
xinference/model/audio/__init__.py,sha256=QyQwELIYk7DuD5Hen2q45pLMJ4K8iAnto8zlOA9QUSY,2839
|
|
50
|
-
xinference/model/audio/chattts.py,sha256=
|
|
51
|
-
xinference/model/audio/core.py,sha256=
|
|
50
|
+
xinference/model/audio/chattts.py,sha256=JZA_0TR4nMGqJ-2WYqwb8DcjhsTC57D0QlkPBl4v788,3973
|
|
51
|
+
xinference/model/audio/core.py,sha256=uMkZpd5IIs9WK8K0t2FWiGKagcicSjK20w4USKGSCEw,5708
|
|
52
52
|
xinference/model/audio/custom.py,sha256=01NTD927pairIBWOo9At6Bjqpo1kdcIn3AVijbOdp7Y,5056
|
|
53
53
|
xinference/model/audio/model_spec.json,sha256=ueOHO14d8lIzuiExJyPUgC3swYA3CfgOgMiDu5L1cOA,3205
|
|
54
54
|
xinference/model/audio/model_spec_modelscope.json,sha256=W40W8vxtumGbV-M07TqPVS-Hr8RJ4oZlYsnp_EnGC4Q,474
|
|
55
55
|
xinference/model/audio/utils.py,sha256=pwo5cHh8nvhyBa9f-17QaVpXMSjmbpGbPYKwBBtEhGM,717
|
|
56
56
|
xinference/model/audio/whisper.py,sha256=NjtaSAJcj_IpJX3drT9NPWNrprVbeLlsDq4uH8AZE8M,7772
|
|
57
57
|
xinference/model/embedding/__init__.py,sha256=0FLzOZyOuMctxFvhobkLXRUepwHck6RPbtjCct1eMI8,2854
|
|
58
|
-
xinference/model/embedding/core.py,sha256=
|
|
58
|
+
xinference/model/embedding/core.py,sha256=UQi-X7jd3Ff9RPwWrAvRQYQKE73ezQOKed4WTA1i_bc,13605
|
|
59
59
|
xinference/model/embedding/custom.py,sha256=iE3-iWVzxarXdeTdw5e6rxv6HQRXVbPHp65wwhT2IL8,3919
|
|
60
60
|
xinference/model/embedding/model_spec.json,sha256=hpM2_FhH6gSqmrgu2MMu4u94XMEw6r9A6aKUQObsCK0,6652
|
|
61
61
|
xinference/model/embedding/model_spec_modelscope.json,sha256=No71OUu5OoALs6amJ0UiRU6JH9DkYRQvdvSgCf3IIHs,5814
|
|
62
62
|
xinference/model/embedding/utils.py,sha256=t_y-7TrYenJKzX3p8e8KWXyC66u7Kd7lMvSzEOolnZw,790
|
|
63
|
+
xinference/model/flexible/__init__.py,sha256=AmJBQVIHyrLtDe1kDxxvJIUL_KmVSkiu4PWg61BRBhg,1408
|
|
64
|
+
xinference/model/flexible/core.py,sha256=6tRNaf-CWdYOBWpADyvTcNBAMs450-VvWU7ACY0OeVU,6975
|
|
65
|
+
xinference/model/flexible/utils.py,sha256=_GlEarRHKPAxT7o6N39VOd9sB580zKzdSktqjbdrNig,1145
|
|
66
|
+
xinference/model/flexible/launchers/__init__.py,sha256=x_5s73qABN_94hnf5UyrfyxUObayntD6Gh1UOtctCe8,642
|
|
67
|
+
xinference/model/flexible/launchers/transformers_launcher.py,sha256=OZeeogDfopRUGhulP4PRJ4fZEJ2D9cfv7lcC2qJBoDE,2012
|
|
63
68
|
xinference/model/image/__init__.py,sha256=lDtP961bpu6h5TK57kJ531Zoch2xU5DM-Eco_YQne-Y,2780
|
|
64
|
-
xinference/model/image/core.py,sha256=
|
|
65
|
-
xinference/model/image/custom.py,sha256=
|
|
66
|
-
xinference/model/image/model_spec.json,sha256=
|
|
69
|
+
xinference/model/image/core.py,sha256=zpaiym5t5cWrBOOscvFFBBUD4-YWBU_NZLsyuqeeamA,8809
|
|
70
|
+
xinference/model/image/custom.py,sha256=nn1iZDTYNz68A2gWFXvUuv__Gx8EGdkz_sHvHnPnSoA,3841
|
|
71
|
+
xinference/model/image/model_spec.json,sha256=kQMWtQo-Z4tawKdgckYFJz1fvbGnXVSZGQsGwjOxa3M,3681
|
|
67
72
|
xinference/model/image/model_spec_modelscope.json,sha256=vWAoR1gsexay6jn8vnObslYF3YE5SAfqMcJPkYQ-Wc4,3176
|
|
68
73
|
xinference/model/image/utils.py,sha256=gxg8jJ2nYaDknzCcSC53WCy1slbB5aWU14AbJbfm6Z4,906
|
|
69
74
|
xinference/model/image/stable_diffusion/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
70
|
-
xinference/model/image/stable_diffusion/core.py,sha256=
|
|
71
|
-
xinference/model/llm/__init__.py,sha256=
|
|
72
|
-
xinference/model/llm/core.py,sha256=
|
|
73
|
-
xinference/model/llm/llm_family.json,sha256=
|
|
74
|
-
xinference/model/llm/llm_family.py,sha256=
|
|
75
|
+
xinference/model/image/stable_diffusion/core.py,sha256=e2kpID5iTUTWuMO01aF7z4uGMpAttF1g1nSnwdDNIz4,7349
|
|
76
|
+
xinference/model/llm/__init__.py,sha256=D9zXjltqlzKahDiOFYyn_EcLoiw_6tO8bhj3u8wnT0A,11462
|
|
77
|
+
xinference/model/llm/core.py,sha256=ZAzRGphjRZ2KAdTPADIuqSbVU9dTQrHgLvCEgNP9pOk,8088
|
|
78
|
+
xinference/model/llm/llm_family.json,sha256=6ZXDEqlZddhrR9A3lnOtzmEdOMd7rfc4DexRzeJVodw,184400
|
|
79
|
+
xinference/model/llm/llm_family.py,sha256=2XykGoXMIffDIOCI1hefprgPJTOvE80r7Rh6Zosb6dY,42934
|
|
75
80
|
xinference/model/llm/llm_family_csghub.json,sha256=zWiMlX0mbCvuaR7gZh0qDPRPaswFJ-zKssuN6XuAQ6s,1417
|
|
76
|
-
xinference/model/llm/llm_family_modelscope.json,sha256=
|
|
81
|
+
xinference/model/llm/llm_family_modelscope.json,sha256=BQR99BYPXxXxq0CnFiVlAEUUeuOLXezCTBVPhdZs1Jg,116982
|
|
77
82
|
xinference/model/llm/memory.py,sha256=PTD8m6TCZVU1zrwc9wepX9cUjCqAXBENj6X7tjua0to,10207
|
|
78
|
-
xinference/model/llm/utils.py,sha256=
|
|
83
|
+
xinference/model/llm/utils.py,sha256=3KkpM-HaI97jAFj5Pb1-Kau3BL8-8d-SypDkKCWFqPs,32655
|
|
79
84
|
xinference/model/llm/ggml/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
80
|
-
xinference/model/llm/ggml/
|
|
81
|
-
xinference/model/llm/ggml/llamacpp.py,sha256=3pZnLgQyOopG0-mJ_rFkemAWvatYZAZP-FUSNkbrHQI,13360
|
|
85
|
+
xinference/model/llm/ggml/llamacpp.py,sha256=KTcMqgXkdk6TQLH7QxqlyVOnbaj9A8cL1JeRvzc15es,12983
|
|
82
86
|
xinference/model/llm/ggml/tools/__init__.py,sha256=6a6P2VPKE06xKxJ-dTqp4TRO2IEDWvtcVP6gHutAR0M,624
|
|
83
87
|
xinference/model/llm/ggml/tools/convert_ggml_to_gguf.py,sha256=92To8eoVQBkDZD52_aWBNda2K1Ob6YaHlcfS-8_aOuw,17991
|
|
84
88
|
xinference/model/llm/ggml/tools/gguf.py,sha256=Hv2haR-UN7NdB1N8YId32hFoEPd-JX6_aUNWRJhyJZc,30277
|
|
@@ -89,7 +93,7 @@ xinference/model/llm/pytorch/baichuan.py,sha256=TpCfi37Ou87VA8S5siGRUK5JWC5SjGbZ
|
|
|
89
93
|
xinference/model/llm/pytorch/chatglm.py,sha256=CD73E6pQKTe6DFiTydrv92kaYQ4TJgT80zN9IWomzno,13864
|
|
90
94
|
xinference/model/llm/pytorch/cogvlm2.py,sha256=TL1o2cOnyeSs5N55HlAR7v3URyHCyhlydeioh8z_ao4,18606
|
|
91
95
|
xinference/model/llm/pytorch/compression.py,sha256=U0vMJ-JaBt4oC2LffgWg6HbPj1CeUi_YdwVbjDd0mRA,8112
|
|
92
|
-
xinference/model/llm/pytorch/core.py,sha256=
|
|
96
|
+
xinference/model/llm/pytorch/core.py,sha256=K9p_g4MXZW7SlJx5rE3BIkImf6Ss7gp3MOv2utOGxAI,30989
|
|
93
97
|
xinference/model/llm/pytorch/deepseek_vl.py,sha256=T9DKP4cULvRaHSiU08lOWd_j6mt8b3ZIBByneZ0jY8U,11498
|
|
94
98
|
xinference/model/llm/pytorch/falcon.py,sha256=POSP7vzRJaM5PjvX8dh60jNDXgnCwktwSmeZ7kypQU0,4499
|
|
95
99
|
xinference/model/llm/pytorch/glm4v.py,sha256=30xUH1pKK7WAjxPFmqiMarTRz7wUEw8ttskex8Hjv9I,16609
|
|
@@ -104,29 +108,16 @@ xinference/model/llm/pytorch/utils.py,sha256=HZhJKQG1O1P1qTpxvVzIjBp-2J8aTRxUmS9
|
|
|
104
108
|
xinference/model/llm/pytorch/vicuna.py,sha256=avNOgt9fBjwYzahL-j6-EcQS-7km167h8ttJolnNWnE,2334
|
|
105
109
|
xinference/model/llm/pytorch/yi_vl.py,sha256=MljT7tpgFIhL6n5rdoS3hmq_u0rtHRE6cxXCseujklQ,10911
|
|
106
110
|
xinference/model/llm/sglang/__init__.py,sha256=-sjSIQ4K6w-TEzx49kVaWeWC443fnZqODU91GCQ_JNo,581
|
|
107
|
-
xinference/model/llm/sglang/core.py,sha256=
|
|
111
|
+
xinference/model/llm/sglang/core.py,sha256=9c4KgEFswu1Fx3qI4VFszv26902FwIifq9AVzMijDa4,14087
|
|
108
112
|
xinference/model/llm/vllm/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY4BRnvKta_7VLQAL1ms,581
|
|
109
|
-
xinference/model/llm/vllm/core.py,sha256=
|
|
113
|
+
xinference/model/llm/vllm/core.py,sha256=beZeuCR_wCbIjtU-WWM8q0rVPPPiPLO2VINnvNQfq8w,22165
|
|
110
114
|
xinference/model/rerank/__init__.py,sha256=BXIL1uu3ZpZHX9bODhW9lxKUXudZE7-OkXFmmM5rpMU,2817
|
|
111
|
-
xinference/model/rerank/core.py,sha256=
|
|
115
|
+
xinference/model/rerank/core.py,sha256=qAUwOdRHomn0uCzCw6klDxJSZyIDQ4tvgz9pOPm-0GY,12150
|
|
112
116
|
xinference/model/rerank/custom.py,sha256=NKk7jA7p4xkuwS5WoOs2SY2wdnoAVpyCjBTvv317bBw,3917
|
|
113
117
|
xinference/model/rerank/model_spec.json,sha256=zZHVUq9B5vwTQOzXOXNK3pgGpQVrMG9npAYwftqFZ3I,1608
|
|
114
118
|
xinference/model/rerank/model_spec_modelscope.json,sha256=vSSC0aWy_DHnNDzzBcMWr2pqdISDmPS95FtD_YfMmn4,1275
|
|
115
119
|
xinference/model/rerank/utils.py,sha256=MJAFL47G3r3zLVGXKoi0QLTgU3Xr4Ffv72Ipn--psew,713
|
|
116
120
|
xinference/thirdparty/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
117
|
-
xinference/thirdparty/ChatTTS/__init__.py,sha256=I5dDlOJkCgz3M24LSLvB9kz5bH_ZsQuP_iZY6mg_yw4,22
|
|
118
|
-
xinference/thirdparty/ChatTTS/core.py,sha256=RAay9e3oPOZA29wh6sUkHXqfx_UFTS0RR6fHpXPJCeE,8677
|
|
119
|
-
xinference/thirdparty/ChatTTS/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
120
|
-
xinference/thirdparty/ChatTTS/experimental/llm.py,sha256=bauIrF6FZPL_CIPfEKGQJfgzYzr3IvJGFEu4K7cncRo,3120
|
|
121
|
-
xinference/thirdparty/ChatTTS/infer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
|
-
xinference/thirdparty/ChatTTS/infer/api.py,sha256=2ebUmglWkp1wRuXY4cgaLG_QUglXqYWW1CMjkkeyf3k,4267
|
|
123
|
-
xinference/thirdparty/ChatTTS/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
124
|
-
xinference/thirdparty/ChatTTS/model/dvae.py,sha256=HB-RakiiEgYGGaqfe8RwsTTVDINzDty8KvFweAsy_5M,4958
|
|
125
|
-
xinference/thirdparty/ChatTTS/model/gpt.py,sha256=Ub6_72-NwD1PJVnyaHSEZoD12gktBid9b1-R6J69Dqk,11713
|
|
126
|
-
xinference/thirdparty/ChatTTS/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
127
|
-
xinference/thirdparty/ChatTTS/utils/gpu_utils.py,sha256=i26XJnAtevCGiFhFtu8ZsnDvnfAqdvaSyWVzlgEKkx8,929
|
|
128
|
-
xinference/thirdparty/ChatTTS/utils/infer_utils.py,sha256=DHkpAn9TQ0NCaN_zpXIzjUgebT9AidV-WVSovf80JM8,3812
|
|
129
|
-
xinference/thirdparty/ChatTTS/utils/io_utils.py,sha256=tlYppWt3PoC5UX_FUJwLKDCDBzfH6tvLLQF8kp4hsZs,384
|
|
130
121
|
xinference/thirdparty/deepseek_vl/__init__.py,sha256=N5CYTfTFEiTT7mrNrrGTSyvDOVkGVO3pE_fWm8ugcAw,1458
|
|
131
122
|
xinference/thirdparty/deepseek_vl/models/__init__.py,sha256=gVJoBKpRfny6w_QpTrTh_iCqUtVJZLuctzfPQq-dKDw,1328
|
|
132
123
|
xinference/thirdparty/deepseek_vl/models/clip_encoder.py,sha256=tn-uTCAcb63WOX6cB0rl2ynOsum23xy1tAvBqPbIHHo,8197
|
|
@@ -172,14 +163,14 @@ xinference/thirdparty/omnilmm/train/__init__.py,sha256=h_JgzSqV5lP6vQ6XX_17kE4IY
|
|
|
172
163
|
xinference/thirdparty/omnilmm/train/train_utils.py,sha256=L4JtFWDKtdEcQYpGW-UV6GCswTqHkiskK3phM9J-xUM,5634
|
|
173
164
|
xinference/web/ui/package-lock.json,sha256=MDt0IM5NT4MvrBwKJxD6TlgqKHvRQB7uH2szO1CQspU,762056
|
|
174
165
|
xinference/web/ui/package.json,sha256=W0Bq0vT0HOALv-nFo34Fos3r6DKrjR7zAL5swLg5qZg,1987
|
|
175
|
-
xinference/web/ui/build/asset-manifest.json,sha256=
|
|
166
|
+
xinference/web/ui/build/asset-manifest.json,sha256=1hoyYP10Oill7nwWCK69pUeMMUZCjla-ZNfk6NAWTsY,453
|
|
176
167
|
xinference/web/ui/build/favicon.svg,sha256=dWR8uaz0Q9GCcl-DjWvQh07e1f3jhJBt-r4aSbmH3A4,1894
|
|
177
|
-
xinference/web/ui/build/index.html,sha256=
|
|
168
|
+
xinference/web/ui/build/index.html,sha256=0EBnDQoCQQeBfyT389rAHAu27iYxiv0gAe_bSkVW1d0,650
|
|
178
169
|
xinference/web/ui/build/static/css/main.4bafd904.css,sha256=B1LOr0CAJXDztw7bSsJMTmEwdzqnciZOYjgeBSO25cQ,3910
|
|
179
170
|
xinference/web/ui/build/static/css/main.4bafd904.css.map,sha256=rIbo5tZ_vpOnVcUwFk29B6UpEffrfphEQ3XKUAuG49E,7794
|
|
180
|
-
xinference/web/ui/build/static/js/main.
|
|
181
|
-
xinference/web/ui/build/static/js/main.
|
|
182
|
-
xinference/web/ui/build/static/js/main.
|
|
171
|
+
xinference/web/ui/build/static/js/main.95c1d652.js,sha256=ZyjCMia7FUHc53D20lmugkVvDfSUUTtvmujUTTjmHhI,987877
|
|
172
|
+
xinference/web/ui/build/static/js/main.95c1d652.js.LICENSE.txt,sha256=rbybPZZs56fvnjMiAklb5AB-cE9DLmWrrraygrxIG3I,2279
|
|
173
|
+
xinference/web/ui/build/static/js/main.95c1d652.js.map,sha256=P1N-3Pj8vzBv1MlFfUuavvdCXc0n9Y_GXN2TqGVCFC8,4386689
|
|
183
174
|
xinference/web/ui/build/static/media/icon.4603d52c63041e5dfbfd.webp,sha256=kM--URMpXs5Vf0iSqQ8hmUalvWgcmRERpv37CriXRAE,16128
|
|
184
175
|
xinference/web/ui/node_modules/.package-lock.json,sha256=9jU355rtDRCO-oEwZIz20ylwNPD9ZXgReo7Uu8B97Zg,760016
|
|
185
176
|
xinference/web/ui/node_modules/.cache/babel-loader/000791038e4133db461021f1018491323a006cca7a53e09c2ac35032bc36d8b6.json,sha256=bke3WZZjPsJqMKVeHZ7xOSiE8x3fy4fe9nzvylycWOE,1374
|
|
@@ -555,6 +546,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/07c55a8b3b7609d603299d48aeaaf
|
|
|
555
546
|
xinference/web/ui/node_modules/.cache/babel-loader/07c84b7ef4afedfc55066f3deb323322ec68070e846681f734f15d351bed77ec.json,sha256=ma4PKpW20wlTMpIxJJ3TkJ8AjfsabSCpg1wPKaRlVug,1383
|
|
556
547
|
xinference/web/ui/node_modules/.cache/babel-loader/07c97a9116d07609b8931049e58048d6ed396b5b51b739959a36bfd9c5e48295.json,sha256=fLeqWBJED0r3MIPS5kipqpXfKdkWX13kbFYF-hQGkUE,1427
|
|
557
548
|
xinference/web/ui/node_modules/.cache/babel-loader/07cca16c63c8a19be05bfa2fd9e1085af558298281dd526f3020384f0852dc9f.json,sha256=tZJKrNmmXd8u9IdQPfu6f_5dgzfvzasescQN_Oy8Mfk,1612
|
|
549
|
+
xinference/web/ui/node_modules/.cache/babel-loader/07ce9e632e6aff24d7aa3ad8e48224433bbfeb0d633fca723453f1fcae0c9f1c.json,sha256=0FVxgfPli8Ad7Bh_FeCZ4Mdpeo-j5VoyE_WrKOzvk3o,27501
|
|
558
550
|
xinference/web/ui/node_modules/.cache/babel-loader/07d29c352e4c6a38fbc6354303cc50e8812666efb98625be20dd3adc1b719f20.json,sha256=587-RroRZWD7xdXsGzV-iyu7v7hcWegenZ5NzV_GAAc,1377
|
|
559
551
|
xinference/web/ui/node_modules/.cache/babel-loader/07d2ab7e44af68ff9249653994b216beb7ca3a88562a23aac8b103902e20037e.json,sha256=uSl09zZgLu64bQc5R12AcH5-wclqjDHPoK8Lob4QyNc,1206
|
|
560
552
|
xinference/web/ui/node_modules/.cache/babel-loader/07d6c9029695bc981e2b7705528fc3868b3db12faec8a37a08041bd454099666.json,sha256=iadF8kRld6nEjhYRTIVT4-zap_2jvuwlRg38YIXTDqk,1185
|
|
@@ -913,7 +905,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/0f4eb00b62f4c3e343f9c6f1b7069
|
|
|
913
905
|
xinference/web/ui/node_modules/.cache/babel-loader/0f51717651e2b720bec8a8c25e8ffe4c689116fa29380e9119b12be5aef25171.json,sha256=miWnfMh6jEAxULCyDRXeSDvgfohgloDKwuY2SqKfymA,1334
|
|
914
906
|
xinference/web/ui/node_modules/.cache/babel-loader/0f66248f8da645843d50322353d50b523612f19548b4cb6a082b700fc5f484e0.json,sha256=NP9f3pYIRfSOgGUdUKsxs0wcbE7SoeTMy2hSBDjEMgg,1533
|
|
915
907
|
xinference/web/ui/node_modules/.cache/babel-loader/0f6ad34a7e517d65b35f29189e7f431c47f0e921bb4bba77cd1f06c1159e7893.json,sha256=CAg1LyyZvYgFSfYAZVUphBkoUUg3MGslzIE-AFDOJt8,1806
|
|
916
|
-
xinference/web/ui/node_modules/.cache/babel-loader/0f6b391abec76271137faad13a3793fe7acc1024e8cd2269c147b653ecd3a73b.json,sha256=LT85BBQTh1WcdlugcIuFpvzNnii21gdkvt3csuBhJog,13247
|
|
917
908
|
xinference/web/ui/node_modules/.cache/babel-loader/0f6d629c44b0c51579f3d6e4df387c2e5e68e8b9e0960eab568355dc44c368a6.json,sha256=GKcpGuEy40tlzcpU5NRkDf3GW68w7E2MsZvoY9yxE1A,1473
|
|
918
909
|
xinference/web/ui/node_modules/.cache/babel-loader/0f71bb11b0fcc1c32e249a8a8554b98953e6ef54af54654dda9cf71eccdd3c52.json,sha256=_HJdkpM7wWnQiZQloHu-cu-o71kVT_K0t6nsHIxlBNg,1002
|
|
919
910
|
xinference/web/ui/node_modules/.cache/babel-loader/0f736be6b7b11bc00b684a351d573a8a6b115fd9cf66e335a6da7eb1a37ab630.json,sha256=WkIn8fzZsXlm3HyjV1neOqw2saeP9Ah-Mk81SgN0Xcg,1521
|
|
@@ -2498,7 +2489,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/3091377897002fabf28fb54824e06
|
|
|
2498
2489
|
xinference/web/ui/node_modules/.cache/babel-loader/30949250e2388793bd89231555f1c0c24ac28a84ee32474084cee696f9f8d096.json,sha256=0Tofe1ZTWe79iD5YNh5Mv7brZ2aDQMA0sCy5AhZMP_k,1480
|
|
2499
2490
|
xinference/web/ui/node_modules/.cache/babel-loader/30971b9ae95ff640365b3bac6851e84e79e72e872a3e9e1da49ef0fd803aa662.json,sha256=qMG0zpXHdhves7UQGSfoBt_edFt0cMX6yD-DbQiL3RE,11216
|
|
2500
2491
|
xinference/web/ui/node_modules/.cache/babel-loader/309bef40575fc17154adb0a135f96dd1d18028ca8bc96fd22d40da83b73cdb8d.json,sha256=S4uBUfJk-EU4XsdiSwlLnlqIRPf2LLXg8nBX4r_roUc,1700
|
|
2501
|
-
xinference/web/ui/node_modules/.cache/babel-loader/30a0c79d8025d6441eb75b2df5bc2750a14f30119c869ef02570d294dff65c2f.json,sha256=QbTapEU482t2HxJWffes5cuFdvHCHvo7aHkcMva4vro,19169
|
|
2502
2492
|
xinference/web/ui/node_modules/.cache/babel-loader/30a78d21120a750e4c2d91bd3708fec8a37bc4fd62c2b4f0e7678138c2db043e.json,sha256=uk5YHjPiulbL5QS3YWMa_Yq1ea3WV_lHwLh7ceMBoIM,1795
|
|
2503
2493
|
xinference/web/ui/node_modules/.cache/babel-loader/30b10807cfdac596851fa8eaf017f8fc930f7fbf3db48f9f2e0b32c943ca7c1a.json,sha256=_CrvWe8xH9uaMGwda6-1T9uU6BdsTcWYbKiUuoskVQE,1462
|
|
2504
2494
|
xinference/web/ui/node_modules/.cache/babel-loader/30b41abb8ccedb1be08322e4681b7518d1f02b84f7e59d0bae93bf9514dbcba2.json,sha256=5HE-b0Rk-z97C0j3RDSl9Qo8FABJgyB4Fxd1GieUXd8,1187
|
|
@@ -3252,7 +3242,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/4034891bc896117b6c645eb572e37
|
|
|
3252
3242
|
xinference/web/ui/node_modules/.cache/babel-loader/403e044841ea1b6b29952d952b8c2067dc090690aaf735564cc242ef08d16455.json,sha256=wrhbBaljCCb5CO0nMIH6VZdQfRoW7Sj-01GCbY9y-Ao,2002
|
|
3253
3243
|
xinference/web/ui/node_modules/.cache/babel-loader/403fc331c9cc58a6be82cb793eca9d67af982520c28c88e0825f4b8c666f1a74.json,sha256=8hxZZkaA-byXSklE9T0PrTq1g76MJCOL-4fV_YbtiQ0,1427
|
|
3254
3244
|
xinference/web/ui/node_modules/.cache/babel-loader/40406a9b9ae2023d271c631155464d5907764271953895293492a013a223fe8b.json,sha256=9VSn1AqR_WErHblTxMezsGeqLTgTwygrpI0eZsQfT7o,3094
|
|
3255
|
-
xinference/web/ui/node_modules/.cache/babel-loader/40486e655c3c5801f087e2cf206c0b5511aaa0dfdba78046b7181bf9c17e54c5.json,sha256=UUwZ4diDzv2elrsuyijJ-8rI8n3nEpeHkWWpepiVvLs,92552
|
|
3256
3245
|
xinference/web/ui/node_modules/.cache/babel-loader/404a008498c6da47e0b95c1f359993a82453bce6f6d7938228a8ff47efd5dcdb.json,sha256=z3YAr0FMxLWu2EykjaOkJeBM-xyI44ik968Y6IYSAHU,1241
|
|
3257
3246
|
xinference/web/ui/node_modules/.cache/babel-loader/404bb56b22fd97ad983a59089ff89c8a318970dd4538481d6b71bd39da6b96ee.json,sha256=ky5kPZ0aWQ-7o5yQ1boJxMzbHj2hOgdgkt-uUsXyEUY,967
|
|
3258
3247
|
xinference/web/ui/node_modules/.cache/babel-loader/4052d2f42336eabebdd74b66ba76955485ad17b7f9a31b98f65a7503a78e24de.json,sha256=qyeksLsXE6uVB-usy2ST3de6eXdIi4wvELbOUk0AML4,1314
|
|
@@ -3292,6 +3281,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/40e4776435d667d93df97f72c9979
|
|
|
3292
3281
|
xinference/web/ui/node_modules/.cache/babel-loader/40eb66f884db459777a986c399ece87616227dbc700ca298bcae918b32a4c578.json,sha256=W2GUZ4QMT4YnlSAqrbNgNw23GuB812Bm-2gEzyMbCVU,1098
|
|
3293
3282
|
xinference/web/ui/node_modules/.cache/babel-loader/40ecc49d2459d0ca6162729053d8102621639c934e7e0e25cdda850215875603.json,sha256=2Zxc4WEViyYlY6o_mvcMCejl7GkXhV9_FXVd2j8DAFE,1299
|
|
3294
3283
|
xinference/web/ui/node_modules/.cache/babel-loader/40f086ecd7508ca80eac72df9cb83beffae2b13512c717b6ed34fa6215a89692.json,sha256=VpzF9Pj6WuMAcNNl8ZgaI_Wb5P3ogh5XtjAlUF84XpQ,2286
|
|
3284
|
+
xinference/web/ui/node_modules/.cache/babel-loader/40f17338fc75ae095de7d2b4d8eae0d5ca0193a7e2bcece4ee745b22a7a2f4b7.json,sha256=cZrFpJVdbuPx6Hjrzl0xmxjYREyev1AsZWBRU_nvJ6Y,19506
|
|
3295
3285
|
xinference/web/ui/node_modules/.cache/babel-loader/40f1b02c8aa0868c1ae23556acdeb6adfe3fa0f4d881d4008127cf9206dc71a0.json,sha256=lNR4JzsCN7UvvCN9j6cvQLsvsoofC-TavOrDAqVOF_g,1568
|
|
3296
3286
|
xinference/web/ui/node_modules/.cache/babel-loader/40f76393b7ea099a074fb036f5de54c0e1d83217fc9018867abe87e5764afadc.json,sha256=72SK64JXnRWUbHqmbXlL9C1vQ0XDHnCv5MX0IbqjhDA,1513
|
|
3297
3287
|
xinference/web/ui/node_modules/.cache/babel-loader/40fc5bf1017da96e74e0fe7c73921018b5ea17d84b347e06fc134d44d83920cb.json,sha256=DPWzdGtCiHVfc0MMiMXl21i39ObmHcEZqFYogxLdiA8,2143
|
|
@@ -4122,6 +4112,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/52519e7ae612319a43ee74b453803
|
|
|
4122
4112
|
xinference/web/ui/node_modules/.cache/babel-loader/5251e3e98c9db4c5a0d719a41a1e7880a9adc1c2b4fe0d45c41eb7ae5ecf6c96.json,sha256=O1jlVRBq4KlES_sK86NCs80hzXkEnyLKRcocDPu6NyA,3333
|
|
4123
4113
|
xinference/web/ui/node_modules/.cache/babel-loader/525360f87cdad5ef701577619eaa86207f2ae2e5b2286ab3340193519c3db531.json,sha256=JMtvUQGf4pG2LKMYWDWkpSd6xN0TGdBW3n4giXtbYo0,1751
|
|
4124
4114
|
xinference/web/ui/node_modules/.cache/babel-loader/526146c579ba7ab49aefecfd21d18655122f09cf1911f72f5670eea8c541ea9a.json,sha256=hI2ico8PqCY01APiWL-RJ9mO0BagJo_xTj3imfXg_1A,1507
|
|
4115
|
+
xinference/web/ui/node_modules/.cache/babel-loader/5262556baf9207738bf6a8ba141ec6599d0a636345c245d61fdf88d3171998cb.json,sha256=hEmL-XvJxfTrmVM5hpI5YAlGby--5Y8JeR3H4BsNX0M,98447
|
|
4125
4116
|
xinference/web/ui/node_modules/.cache/babel-loader/5274c6a2e8f417ed2e9f42decb1eec20d3db67f1c933498710a81c51393dc948.json,sha256=RJRKueEP1CX4xYLymRMIDxvCUTe4sOhtkMTN-UthRLw,1890
|
|
4126
4117
|
xinference/web/ui/node_modules/.cache/babel-loader/5279d79627d4cc2418e52a9dc93f3d77df042eb0948d5e93d4066808e6092f82.json,sha256=kwb5kJsEmHqSy6bIEUN1TydOkHNAgPCaWSag_r_gmrg,1263
|
|
4127
4118
|
xinference/web/ui/node_modules/.cache/babel-loader/527a3d0bd6f849bb8724b5296cc863a28209eb582b0064e0b4f49516bd521941.json,sha256=sdNCPAEcYemZI0EvTvhpnoQB6t3uXd2fgIJFsQ2aea8,2206
|
|
@@ -5540,6 +5531,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/708ff405908198a0ac4d5a14f967d
|
|
|
5540
5531
|
xinference/web/ui/node_modules/.cache/babel-loader/7095bbe94d8ee407107a2bbd169e3e6aac2db10cd6d0db3a5e89fff924324900.json,sha256=3GeDq7OefQYt_3ow6A0TqA-E--WxDxUt4L4h85nDy6M,1732
|
|
5541
5532
|
xinference/web/ui/node_modules/.cache/babel-loader/70961eb124b377cc733ef88d0284a4a2c36c5477e7f6c5e2506553e81ddb02fb.json,sha256=YmrwMDvpJrccDwahUVdOzJBb0Q0ktmZ9jFNQ0cMcdlA,1502
|
|
5542
5533
|
xinference/web/ui/node_modules/.cache/babel-loader/7096fa19b3fac2aea44f819d77604637f23c5525c7065a16732e6791af991605.json,sha256=Xf4p1msb2KrLxw0h1tdE2a2K2B8WuCIS_cykcuQv7T4,51543
|
|
5534
|
+
xinference/web/ui/node_modules/.cache/babel-loader/709711edada3f1596b309d571285fd31f1c364d66f4425bc28723d0088cc351a.json,sha256=IjoIvZ301aekQ68M1ouSZ-7a6TcSMedhoDoSppcLVyg,179006
|
|
5543
5535
|
xinference/web/ui/node_modules/.cache/babel-loader/70a1787c3f47dcd521e50927b7a57699e7029c52323d88ac8654ed25acfc37c7.json,sha256=9aM8G8-6n9aW5SbXrrHeH21evYn0T5FHV103F1E_iNo,1402
|
|
5544
5536
|
xinference/web/ui/node_modules/.cache/babel-loader/70a4fb5e597e9a0b42527d78999f2a23c7c9ab1802b227591808f2883227d0d2.json,sha256=jfDm90NVoDixdxFJtwjA_-F4RNDy8-zeh9skxEQvZ9s,1010
|
|
5545
5537
|
xinference/web/ui/node_modules/.cache/babel-loader/70a96d36c4327041780a01d3121bfdde2e408e616724b92e7cd1fb8e08ab920e.json,sha256=0ubR543mglshdf6NIXF68xiObNH4SjN2YFB-6zCPPMY,1807
|
|
@@ -5554,6 +5546,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/70d508c5b502c7e9c3e5a249bec6d
|
|
|
5554
5546
|
xinference/web/ui/node_modules/.cache/babel-loader/70d5f030a5f671b9c06042f62e16a4a52c8a9f5595b6fac7488e7ea2ca7290cd.json,sha256=M0Wj8W0KRztIjJSfVZAPt2K-sOq2XPX1xxsjdjtdP0I,1499
|
|
5555
5547
|
xinference/web/ui/node_modules/.cache/babel-loader/70da79a71662ebed2026fb4ecb79feb4887777176f73a0f568b72478a33f7b3f.json,sha256=efEbsnYyyR_igGtXkJSUndpQTLASdAUlNyFZA6jrXLg,2915
|
|
5556
5548
|
xinference/web/ui/node_modules/.cache/babel-loader/70dc80957ce1a277652d04f1a479a20b6e102df248baf58bf0dfe4dabfd8003a.json,sha256=i7Kb9Sar0HXqIZZOq3xpV9ekZUU9n9oS1pQbtpTw1tQ,1455
|
|
5549
|
+
xinference/web/ui/node_modules/.cache/babel-loader/70fa8c07463a5fe57c68bf92502910105a8f647371836fe8c3a7408246ca7ba0.json,sha256=cFewQGmmdJ6kP9nMtLWpvsX2F9Y9o4gH65neRGNrAzM,62103
|
|
5557
5550
|
xinference/web/ui/node_modules/.cache/babel-loader/71028037bb0b4840d1664c91735e42bc597156600f57acebcf8f3bdd01fafb2b.json,sha256=uCZiwGveYKWxFvLNEsLfeR2BERnB5RR7TbyjL01onBI,1804
|
|
5558
5551
|
xinference/web/ui/node_modules/.cache/babel-loader/710c8ef9f0c58f471e5e79e62ea1665c0dd27274b6aa17d98fae9ec1cd1a875f.json,sha256=Qi0-MOKJ7Wj_68VrYoqhFcONZHxZB6sAxQ8Gdhc34UA,2773
|
|
5559
5552
|
xinference/web/ui/node_modules/.cache/babel-loader/711377359cccf3e39fa8fcb3dd298f2bd58a216d7f88e8f1bea42164876127c2.json,sha256=bQ1Muh5KXio7zv9sMj4g_6RDbv7IqjaCRvwVIAX6E6Y,1057
|
|
@@ -8890,7 +8883,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/b545c7c5f070cd8718242179f97bc
|
|
|
8890
8883
|
xinference/web/ui/node_modules/.cache/babel-loader/b548ae7ecb7485ef927b79628c5596f920d9c74e849988b4142544c49b8795b8.json,sha256=efe38NvrLMy4hLwGArtbSSzbS-9WyHCxbJm2fWWmrw0,1373
|
|
8891
8884
|
xinference/web/ui/node_modules/.cache/babel-loader/b54b8798a65d7f74963a3d09edb0b2b8b490ba2b8e5e6d4ce8a59727dddab2b9.json,sha256=mtaEBLGel_u8UGE2-IXYur9mi4g9UmJmiSY6hiz8Ek0,1432
|
|
8892
8885
|
xinference/web/ui/node_modules/.cache/babel-loader/b54de320f0864f8f9ac9cdd61826bc99bbf9cee0fca01fdf1885f9a255666231.json,sha256=vfdCgNF9EbzwEUhziy2y9gk15Prxd09s_OfsfmtjJu8,1326
|
|
8893
|
-
xinference/web/ui/node_modules/.cache/babel-loader/b5507cd57f16a3a230aa0128e39fe103e928de139ea29e2679e4c64dcbba3b3a.json,sha256=V_f5xUWZYVO7rM-eIt1RIZAbo3-AHh3hLdtHaQsnomg,59184
|
|
8894
8886
|
xinference/web/ui/node_modules/.cache/babel-loader/b561d429cea6143e1bf7e6e7e690f9e6ce1dce4adfcacb57d7c5578195d1d190.json,sha256=AkxAWJb79WFmtlFxzmkh7ln8QSHPAr6-4pbDSPlhSbY,21854
|
|
8895
8887
|
xinference/web/ui/node_modules/.cache/babel-loader/b5668f9ffbc4d20fc901eaa34a1b551b8d1f87d651553076c1428c25b33b78f3.json,sha256=TRTJxF6RR39AVSjaIHlP2sdBwTJ-zVMjdi9kw-ID_2U,1063
|
|
8896
8888
|
xinference/web/ui/node_modules/.cache/babel-loader/b5683615b50f648a4cbe8373eb57d972662712c08f772cc18a55e186e5a5dbb5.json,sha256=mjVlPu9K1ajjbsfZG0slz7D130i92hw5Sox5xnigK44,2121
|
|
@@ -10547,7 +10539,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/d75bd2b9f3cd24f7e0865a953dd4f
|
|
|
10547
10539
|
xinference/web/ui/node_modules/.cache/babel-loader/d760e46bd29bac1e8ccb58ec2f980ec7604c51c01bbff339d276b391fde84589.json,sha256=EDAxqswNYSv0iW8aVetIYgYsNm0WlrVxTIXRi1u8-p4,1292
|
|
10548
10540
|
xinference/web/ui/node_modules/.cache/babel-loader/d7680380a675a9632f0861b67901d9dfc62977c71409126711644b510bf17e2f.json,sha256=SVKIMqJLsgScB4B_jLpVFVD60-Z-ffxQ2SnAscNdkHo,1298
|
|
10549
10541
|
xinference/web/ui/node_modules/.cache/babel-loader/d777212982ce7c44eec08a43ac0f5f92e31bc01431455dc16503287af91557dc.json,sha256=jjjIi1oIslJhj6qoBW5O1DmAlRPpGTTUgyh-_J044aw,1732
|
|
10550
|
-
xinference/web/ui/node_modules/.cache/babel-loader/d779b915f83f9c7b5a72515b6932fdd114f1822cef90ae01cc0d12bca59abc2d.json,sha256=fz--sF_EV1z6PeNcg0E75mPBgJbq8VSE-PekIGisRCY,171742
|
|
10551
10542
|
xinference/web/ui/node_modules/.cache/babel-loader/d77c0486a00b7d63203ccdc00003af61ac325310ff6ac3a0c643116417afecc8.json,sha256=0AkYYcbMjO1jDcU6aXX0de2tWn1x_znGIRO1ISCe0xw,13676
|
|
10552
10543
|
xinference/web/ui/node_modules/.cache/babel-loader/d79d0270028cdc880a77c99ef91be97ddf98199fd14e7c5ef097df499e031657.json,sha256=AeIpEQtHn_qkZlgZNZzlLyNeFC065saJFWy92d-M9Sk,1183
|
|
10553
10544
|
xinference/web/ui/node_modules/.cache/babel-loader/d79ff821e7f345834bd5036f81f0bad0f39c1eef7607c262b7c7d138950ddff0.json,sha256=H7x8_TtNcA50hO-cuEIeO9yMfKAS9EMon1hIYvcdGzM,1313
|
|
@@ -10591,7 +10582,6 @@ xinference/web/ui/node_modules/.cache/babel-loader/d86155b77af22529d6997010f8bfe
|
|
|
10591
10582
|
xinference/web/ui/node_modules/.cache/babel-loader/d86570a46b75a4bc809e1cd40a7cd6354a834d888357291b691a6d2339a661e9.json,sha256=FMvaJ05o5_t12r-lxpH6Z4hF41PJw2DegB6nKecsgWU,517
|
|
10592
10583
|
xinference/web/ui/node_modules/.cache/babel-loader/d86b5c56a2969b9e50a07240b052d3bec982fb0e3b9d8b14465c47ffb23b82fb.json,sha256=7xW0TIYf2kx1saa0aY-QDY2y_iDoarr4nX-psmnRak4,1487
|
|
10593
10584
|
xinference/web/ui/node_modules/.cache/babel-loader/d872ac4de05e41116863f3f0627bd2d8ae01cb4769bd4c56546bdb7fd8cdce51.json,sha256=gN0kum79VgHkI_dI7szi6IF4L6YROlionHadMENz7aw,1325
|
|
10594
|
-
xinference/web/ui/node_modules/.cache/babel-loader/d87824cb266194447a9c0c69ebab2d507bfc3e3148976173760d18c035e9dd26.json,sha256=LYHpoN493tGNM5Tra_kkFQ6R6fdClS_28rGL4g1ct28,27619
|
|
10595
10585
|
xinference/web/ui/node_modules/.cache/babel-loader/d87c42838adca21a9243e091a72bbc26990dd6e6a03d0c0cb81df686a4d8de9c.json,sha256=DpW-9Qi7V2H4THGONGeIwr5dUGCmRKig2pdDLCu_o7c,1069
|
|
10596
10586
|
xinference/web/ui/node_modules/.cache/babel-loader/d87d880802f0350db3afb5cc11188628b26f57f937b0a0692dd1fa3c8a54aed9.json,sha256=MyRhqRDjZ-6fhkwCrqTgWLEIHuuLu7TciFxuqMeo-1c,1247
|
|
10597
10587
|
xinference/web/ui/node_modules/.cache/babel-loader/d87e4a9f1242317c7ec19320e1db41450e8586b13f685371a29ebac9a1471019.json,sha256=nnvVCFT29j2jDlRX45SMK65wJWmoxLadUQEUV5q6IoQ,1296
|
|
@@ -11944,6 +11934,7 @@ xinference/web/ui/node_modules/.cache/babel-loader/f3d82de80e6654040319d65a5b804
|
|
|
11944
11934
|
xinference/web/ui/node_modules/.cache/babel-loader/f3d8a21f34b7b99b62ccc3b59881419a8fcc8f903866e4e4ccf6f9696d84b082.json,sha256=P4TkaRfMeSwfUn-_GBejwWkIIjZ1oBoEndYjl5Yb8e0,1349
|
|
11945
11935
|
xinference/web/ui/node_modules/.cache/babel-loader/f3da6f41ad10652f31cd2ca1d53c0739a0c60934f2ff1d160a90f986c790985a.json,sha256=IYXopTLWLwyfriLeYMzESg_YZf3H28M_QEoyXsNGW_I,627
|
|
11946
11936
|
xinference/web/ui/node_modules/.cache/babel-loader/f3ddc5202f93d45f07ae2d1b175bd7c01a77e733345dcf68f87108963ffb253f.json,sha256=dLZHi6YKHje4P90_Kgug4lq25ouh4WM-24A2pXa98N0,2447
|
|
11937
|
+
xinference/web/ui/node_modules/.cache/babel-loader/f3e02274cb1964e99b1fe69cbb6db233d3d8d7dd05d50ebcdb8e66d50b224b7b.json,sha256=4iXuSLKuTQFtFgJcaCZqNDWWDJBqhUkc8u0ObHKJlxw,14676
|
|
11947
11938
|
xinference/web/ui/node_modules/.cache/babel-loader/f3eadf0b3bd2a99dfbc4f599112fc9a273e97b8b72d69098bbac5e475eaaa5fd.json,sha256=ihZqmcg88ttMHEciqrjxNs8rQi1GcvuKU1wmAFmZPu4,1701
|
|
11948
11939
|
xinference/web/ui/node_modules/.cache/babel-loader/f3eb19dd9376ba5733b8556f52c9d1730260ebe5269b9b4736245646d2c36520.json,sha256=nwrdddQVwT4myCUGQyk2XwLYZM-KGGlJre8MAB6gYc0,3484
|
|
11949
11940
|
xinference/web/ui/node_modules/.cache/babel-loader/f3ebe787cdb6bdfaa234056d24f6f406d1e0928e7235967ddffc2af4fdb316d5.json,sha256=ZJaoMuK5FYDMWKkYfCl4_AZBFVg0xEBYlsGh01vMoBI,1391
|
|
@@ -15437,9 +15428,9 @@ xinference/web/ui/node_modules/yargs-parser/package.json,sha256=BSwbOzgetKXMK4u0
|
|
|
15437
15428
|
xinference/web/ui/node_modules/yocto-queue/package.json,sha256=6U1XHQPGXJTqsiFvT953ORihUtXTblZy4fXBWP9qxC0,725
|
|
15438
15429
|
xinference/web/ui/node_modules/yup/package.json,sha256=xRFSROB9NKxqSWHEVFvSTsPs9Ll074uo8OS1zEw0qhA,1206
|
|
15439
15430
|
xinference/web/ui/node_modules/yup/node_modules/type-fest/package.json,sha256=JTv2zTTVgxQ2H82m1-6qEpdMv08lHjFx4Puf_MsbB_Q,1134
|
|
15440
|
-
xinference-0.13.
|
|
15441
|
-
xinference-0.13.
|
|
15442
|
-
xinference-0.13.
|
|
15443
|
-
xinference-0.13.
|
|
15444
|
-
xinference-0.13.
|
|
15445
|
-
xinference-0.13.
|
|
15431
|
+
xinference-0.13.2.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
15432
|
+
xinference-0.13.2.dist-info/METADATA,sha256=EmYaz9n8oJHqQSU8Er7kqRuuN01VWaRBLZ8lgQMCMgc,16721
|
|
15433
|
+
xinference-0.13.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
15434
|
+
xinference-0.13.2.dist-info/entry_points.txt,sha256=-lDyyzqWMFQF0Rgm7VxBNz0V-bMBMQLRR3pvQ-Y8XTY,226
|
|
15435
|
+
xinference-0.13.2.dist-info/top_level.txt,sha256=L1rQt7pl6m8tmKXpWVHzP-GtmzAxp663rXxGE7qnK00,11
|
|
15436
|
+
xinference-0.13.2.dist-info/RECORD,,
|