xinference 1.5.1__py3-none-any.whl → 1.6.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (96) hide show
  1. xinference/_version.py +3 -3
  2. xinference/api/restful_api.py +97 -8
  3. xinference/client/restful/restful_client.py +51 -11
  4. xinference/core/media_interface.py +758 -0
  5. xinference/core/model.py +49 -9
  6. xinference/core/worker.py +31 -37
  7. xinference/deploy/utils.py +0 -3
  8. xinference/model/audio/__init__.py +16 -27
  9. xinference/model/audio/core.py +1 -0
  10. xinference/model/audio/cosyvoice.py +4 -2
  11. xinference/model/audio/model_spec.json +20 -3
  12. xinference/model/audio/model_spec_modelscope.json +18 -1
  13. xinference/model/embedding/__init__.py +16 -24
  14. xinference/model/image/__init__.py +15 -25
  15. xinference/model/llm/__init__.py +37 -110
  16. xinference/model/llm/core.py +15 -6
  17. xinference/model/llm/llama_cpp/core.py +25 -353
  18. xinference/model/llm/llm_family.json +613 -89
  19. xinference/model/llm/llm_family.py +9 -1
  20. xinference/model/llm/llm_family_modelscope.json +540 -90
  21. xinference/model/llm/mlx/core.py +6 -3
  22. xinference/model/llm/reasoning_parser.py +281 -5
  23. xinference/model/llm/sglang/core.py +16 -3
  24. xinference/model/llm/transformers/chatglm.py +2 -2
  25. xinference/model/llm/transformers/cogagent.py +1 -1
  26. xinference/model/llm/transformers/cogvlm2.py +1 -1
  27. xinference/model/llm/transformers/core.py +9 -3
  28. xinference/model/llm/transformers/glm4v.py +1 -1
  29. xinference/model/llm/transformers/minicpmv26.py +1 -1
  30. xinference/model/llm/transformers/qwen-omni.py +6 -0
  31. xinference/model/llm/transformers/qwen_vl.py +1 -1
  32. xinference/model/llm/utils.py +68 -45
  33. xinference/model/llm/vllm/core.py +38 -18
  34. xinference/model/llm/vllm/xavier/test/test_xavier.py +1 -10
  35. xinference/model/rerank/__init__.py +13 -24
  36. xinference/model/video/__init__.py +15 -25
  37. xinference/model/video/core.py +3 -3
  38. xinference/model/video/diffusers.py +133 -16
  39. xinference/model/video/model_spec.json +54 -0
  40. xinference/model/video/model_spec_modelscope.json +56 -0
  41. xinference/thirdparty/cosyvoice/bin/average_model.py +5 -4
  42. xinference/thirdparty/cosyvoice/bin/export_jit.py +50 -20
  43. xinference/thirdparty/cosyvoice/bin/export_onnx.py +136 -51
  44. xinference/thirdparty/cosyvoice/bin/inference.py +15 -5
  45. xinference/thirdparty/cosyvoice/bin/train.py +7 -2
  46. xinference/thirdparty/cosyvoice/cli/cosyvoice.py +72 -52
  47. xinference/thirdparty/cosyvoice/cli/frontend.py +58 -58
  48. xinference/thirdparty/cosyvoice/cli/model.py +140 -155
  49. xinference/thirdparty/cosyvoice/dataset/processor.py +9 -5
  50. xinference/thirdparty/cosyvoice/flow/decoder.py +656 -54
  51. xinference/thirdparty/cosyvoice/flow/flow.py +69 -11
  52. xinference/thirdparty/cosyvoice/flow/flow_matching.py +167 -63
  53. xinference/thirdparty/cosyvoice/flow/length_regulator.py +1 -0
  54. xinference/thirdparty/cosyvoice/hifigan/discriminator.py +91 -1
  55. xinference/thirdparty/cosyvoice/hifigan/f0_predictor.py +4 -1
  56. xinference/thirdparty/cosyvoice/hifigan/generator.py +4 -1
  57. xinference/thirdparty/cosyvoice/hifigan/hifigan.py +2 -2
  58. xinference/thirdparty/cosyvoice/llm/llm.py +198 -18
  59. xinference/thirdparty/cosyvoice/transformer/embedding.py +12 -4
  60. xinference/thirdparty/cosyvoice/transformer/upsample_encoder.py +124 -21
  61. xinference/thirdparty/cosyvoice/utils/class_utils.py +13 -0
  62. xinference/thirdparty/cosyvoice/utils/common.py +1 -1
  63. xinference/thirdparty/cosyvoice/utils/file_utils.py +40 -2
  64. xinference/thirdparty/cosyvoice/utils/frontend_utils.py +7 -0
  65. xinference/thirdparty/cosyvoice/utils/mask.py +4 -0
  66. xinference/thirdparty/cosyvoice/utils/train_utils.py +5 -1
  67. xinference/thirdparty/matcha/hifigan/xutils.py +3 -3
  68. xinference/types.py +0 -71
  69. xinference/web/ui/build/asset-manifest.json +3 -3
  70. xinference/web/ui/build/index.html +1 -1
  71. xinference/web/ui/build/static/js/main.ae579a97.js +3 -0
  72. xinference/web/ui/build/static/js/main.ae579a97.js.map +1 -0
  73. xinference/web/ui/node_modules/.cache/babel-loader/0196a4b09e3264614e54360d5f832c46b31d964ec58296765ebff191ace6adbf.json +1 -0
  74. xinference/web/ui/node_modules/.cache/babel-loader/12e02ee790dbf57ead09a241a93bb5f893393aa36628ca741d44390e836a103f.json +1 -0
  75. xinference/web/ui/node_modules/.cache/babel-loader/18fa271456b31cded36c05c4c71c6b2b1cf4e4128c1e32f0e45d8b9f21764397.json +1 -0
  76. xinference/web/ui/node_modules/.cache/babel-loader/2fdc61dcb6a9d1fbcb44be592d0e87d8c3f21297a7327559ef5345665f8343f7.json +1 -0
  77. xinference/web/ui/node_modules/.cache/babel-loader/3d596a3e8dd6430d7ce81d164e32c31f8d47cfa5f725c328a298754d78563e14.json +1 -0
  78. xinference/web/ui/node_modules/.cache/babel-loader/8472e58a31720892d534f3febda31f746b25ec4aa60787eef34217b074e67965.json +1 -0
  79. xinference/web/ui/src/locales/en.json +6 -4
  80. xinference/web/ui/src/locales/zh.json +6 -4
  81. {xinference-1.5.1.dist-info → xinference-1.6.0.dist-info}/METADATA +56 -36
  82. {xinference-1.5.1.dist-info → xinference-1.6.0.dist-info}/RECORD +87 -87
  83. {xinference-1.5.1.dist-info → xinference-1.6.0.dist-info}/WHEEL +1 -1
  84. xinference/core/image_interface.py +0 -377
  85. xinference/thirdparty/cosyvoice/bin/export_trt.sh +0 -9
  86. xinference/web/ui/build/static/js/main.91e77b5c.js +0 -3
  87. xinference/web/ui/build/static/js/main.91e77b5c.js.map +0 -1
  88. xinference/web/ui/node_modules/.cache/babel-loader/0f0adb2283a8f469d097a7a0ebb754624fa52414c83b83696c41f2e6a737ceda.json +0 -1
  89. xinference/web/ui/node_modules/.cache/babel-loader/5e6edb0fb87e3798f142e9abf8dd2dc46bab33a60d31dff525797c0c99887097.json +0 -1
  90. xinference/web/ui/node_modules/.cache/babel-loader/6087820be1bd5c02c42dff797e7df365448ef35ab26dd5d6bd33e967e05cbfd4.json +0 -1
  91. xinference/web/ui/node_modules/.cache/babel-loader/8157db83995c671eb57abc316c337f867d1dc63fb83520bb4ff351fee57dcce2.json +0 -1
  92. xinference/web/ui/node_modules/.cache/babel-loader/f04f666b77b44d7be3e16034d6b0074de2ba9c254f1fae15222b3148608fa8b3.json +0 -1
  93. /xinference/web/ui/build/static/js/{main.91e77b5c.js.LICENSE.txt → main.ae579a97.js.LICENSE.txt} +0 -0
  94. {xinference-1.5.1.dist-info → xinference-1.6.0.dist-info}/entry_points.txt +0 -0
  95. {xinference-1.5.1.dist-info → xinference-1.6.0.dist-info}/licenses/LICENSE +0 -0
  96. {xinference-1.5.1.dist-info → xinference-1.6.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1 @@
1
+ {"ast":null,"code":"import _toConsumableArray from\"/home/runner/work/inference/inference/xinference/web/ui/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js\";import _slicedToArray from\"/home/runner/work/inference/inference/xinference/web/ui/node_modules/@babel/runtime/helpers/esm/slicedToArray.js\";import{Box,Button,ButtonGroup,Chip,FormControl,InputLabel,MenuItem,Select}from'@mui/material';import React,{useContext,useEffect,useState}from'react';import{useCookies}from'react-cookie';import{useTranslation}from'react-i18next';import{ApiContext}from'../../components/apiContext';import fetchWrapper from'../../components/fetchWrapper';import HotkeyFocusTextField from'../../components/hotkeyFocusTextField';import ModelCard from'./modelCard';import{jsx as _jsx}from\"react/jsx-runtime\";import{jsxs as _jsxs}from\"react/jsx-runtime\";var modelAbilityArr=['generate','chat','vision','reasoning'];var audioModelTypeArr=['audio2text','text2audio','audio2audio'];var LaunchModelComponent=function LaunchModelComponent(_ref){var modelType=_ref.modelType,gpuAvailable=_ref.gpuAvailable,featureModels=_ref.featureModels;var _useContext=useContext(ApiContext),isCallingApi=_useContext.isCallingApi,setIsCallingApi=_useContext.setIsCallingApi,endPoint=_useContext.endPoint;var _useContext2=useContext(ApiContext),isUpdatingModel=_useContext2.isUpdatingModel;var _useContext3=useContext(ApiContext),setErrorMsg=_useContext3.setErrorMsg;var _useCookies=useCookies(['token']),_useCookies2=_slicedToArray(_useCookies,1),cookie=_useCookies2[0];var _useState=useState([]),_useState2=_slicedToArray(_useState,2),registrationData=_useState2[0],setRegistrationData=_useState2[1];// States used for filtering\nvar _useState3=useState(''),_useState4=_slicedToArray(_useState3,2),searchTerm=_useState4[0],setSearchTerm=_useState4[1];var _useState5=useState(''),_useState6=_slicedToArray(_useState5,2),LLMModelAbility=_useState6[0],setLLMModelAbility=_useState6[1];var _useState7=useState(''),_useState8=_slicedToArray(_useState7,2),status=_useState8[0],setStatus=_useState8[1];var _useState9=useState([]),_useState10=_slicedToArray(_useState9,2),statusArr=_useState10[0],setStatusArr=_useState10[1];var _useState11=useState([]),_useState12=_slicedToArray(_useState11,2),completeDeleteArr=_useState12[0],setCompleteDeleteArr=_useState12[1];var _useState13=useState([]),_useState14=_slicedToArray(_useState13,2),collectionArr=_useState14[0],setCollectionArr=_useState14[1];var _useState15=useState([]),_useState16=_slicedToArray(_useState15,2),filterArr=_useState16[0],setFilterArr=_useState16[1];var _useTranslation=useTranslation(),t=_useTranslation.t;var _useState17=useState('featured'),_useState18=_slicedToArray(_useState17,2),modelListType=_useState18[0],setModelListType=_useState18[1];var _useState19=useState(''),_useState20=_slicedToArray(_useState19,2),audioModelAbility=_useState20[0],setAudioModelAbility=_useState20[1];var filter=function filter(registration){if(searchTerm!==''){if(!registration||typeof searchTerm!=='string')return false;var modelName=registration.model_name?registration.model_name.toLowerCase():'';var modelDescription=registration.model_description?registration.model_description.toLowerCase():'';if(!modelName.includes(searchTerm.toLowerCase())&&!modelDescription.includes(searchTerm.toLowerCase())){return false;}}if(modelListType==='featured'){if(featureModels.length&&!featureModels.includes(registration.model_name)){return false;}}if(LLMModelAbility&&(Array.isArray(registration.model_ability)&&registration.model_ability.indexOf(LLMModelAbility)<0||typeof registration.model_ability==='string'&&registration.model_ability!==LLMModelAbility))return false;if(audioModelAbility&&(Array.isArray(registration.model_ability)&&registration.model_ability.indexOf(audioModelAbility)<0||typeof registration.model_ability==='string'&&registration.model_ability!==audioModelAbility))return false;if(completeDeleteArr.includes(registration.model_name)){registration.model_specs.forEach(function(item){item.cache_status=Array.isArray(item)?[false]:false;});}if(statusArr.length===1){if(statusArr[0]==='cached'){var _registration$model_s;var judge=((_registration$model_s=registration.model_specs)===null||_registration$model_s===void 0?void 0:_registration$model_s.some(function(spec){return filterCache(spec);}))||(registration===null||registration===void 0?void 0:registration.cache_status);return judge&&!completeDeleteArr.includes(registration.model_name);}else{return collectionArr===null||collectionArr===void 0?void 0:collectionArr.includes(registration.model_name);}}else if(statusArr.length>1){var _registration$model_s2;var _judge=((_registration$model_s2=registration.model_specs)===null||_registration$model_s2===void 0?void 0:_registration$model_s2.some(function(spec){return filterCache(spec);}))||(registration===null||registration===void 0?void 0:registration.cache_status);return _judge&&!completeDeleteArr.includes(registration.model_name)&&(collectionArr===null||collectionArr===void 0?void 0:collectionArr.includes(registration.model_name));}return true;};var filterCache=function filterCache(spec){if(Array.isArray(spec.cache_status)){var _spec$cache_status;return(_spec$cache_status=spec.cache_status)===null||_spec$cache_status===void 0?void 0:_spec$cache_status.some(function(cs){return cs;});}else{return spec.cache_status===true;}};var handleCompleteDelete=function handleCompleteDelete(model_name){setCompleteDeleteArr([].concat(_toConsumableArray(completeDeleteArr),[model_name]));};var update=function update(){if(isCallingApi||isUpdatingModel||cookie.token!=='no_auth'&&!sessionStorage.getItem('token'))return;try{setIsCallingApi(true);fetchWrapper.get(\"/v1/model_registrations/\".concat(modelType,\"?detailed=true\")).then(function(data){var builtinRegistrations=data.filter(function(v){return v.is_builtin;});setRegistrationData(builtinRegistrations);var collectionData=JSON.parse(localStorage.getItem('collectionArr'));setCollectionArr(collectionData);}).catch(function(error){console.error('Error:',error);if(error.response.status!==403&&error.response.status!==401){setErrorMsg(error.message);}});}catch(error){console.error('Error:',error);}finally{setIsCallingApi(false);}};useEffect(function(){update();},[cookie.token]);var getCollectionArr=function getCollectionArr(data){setCollectionArr(data);};var handleChangeFilter=function handleChangeFilter(type,value){var typeMap={LLMModelAbility:{setter:setLLMModelAbility,filterArr:modelAbilityArr},audioModelAbility:{setter:setAudioModelAbility,filterArr:audioModelTypeArr},status:{setter:setStatus,filterArr:[]}};var _ref2=typeMap[type]||{},setter=_ref2.setter,excludeArr=_ref2.filterArr;if(!setter)return;setter(value);var updatedFilterArr=[].concat(_toConsumableArray(filterArr.filter(function(item){return!excludeArr.includes(item);})),[value]);setFilterArr(updatedFilterArr);if(type==='status'){setStatusArr(updatedFilterArr.filter(function(item){return![].concat(modelAbilityArr,audioModelTypeArr).includes(item);}));}};var handleDeleteChip=function handleDeleteChip(item){setFilterArr(filterArr.filter(function(subItem){return subItem!==item;}));if(item===LLMModelAbility){setLLMModelAbility('');}else if(item===audioModelAbility){setAudioModelAbility('');}else{setStatusArr(statusArr.filter(function(subItem){return subItem!==item;}));if(item===status)setStatus('');}};var handleModelType=function handleModelType(newModelType){if(newModelType!==null){setModelListType(newModelType);}};return/*#__PURE__*/_jsxs(Box,{m:\"20px\",children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:'grid',gridTemplateColumns:function(){var baseColumns=['LLM','audio'].includes(modelType)?['150px','150px']:['150px'];return featureModels.length?[].concat(baseColumns,['150px','1fr']).join(' '):[].concat(baseColumns,['1fr']).join(' ');}(),columnGap:'20px',margin:'30px 2rem',alignItems:'center'},children:[featureModels.length>0&&/*#__PURE__*/_jsx(FormControl,{sx:{minWidth:120},size:\"small\",children:/*#__PURE__*/_jsxs(ButtonGroup,{children:[/*#__PURE__*/_jsx(Button,{fullWidth:true,onClick:function onClick(){return handleModelType('featured');},variant:modelListType==='featured'?'contained':'outlined',children:t('launchModel.featured')}),/*#__PURE__*/_jsx(Button,{fullWidth:true,onClick:function onClick(){return handleModelType('all');},variant:modelListType==='all'?'contained':'outlined',children:t('launchModel.all')})]})}),modelType==='LLM'&&/*#__PURE__*/_jsxs(FormControl,{sx:{minWidth:120},size:\"small\",children:[/*#__PURE__*/_jsx(InputLabel,{id:\"ability-select-label\",children:t('launchModel.modelAbility')}),/*#__PURE__*/_jsx(Select,{id:\"ability\",labelId:\"ability-select-label\",label:\"Model Ability\",onChange:function onChange(e){return handleChangeFilter('LLMModelAbility',e.target.value);},value:LLMModelAbility,size:\"small\",sx:{width:'150px'},children:modelAbilityArr.map(function(item){return/*#__PURE__*/_jsx(MenuItem,{value:item,children:t(\"launchModel.\".concat(item))},item);})})]}),modelType==='audio'&&/*#__PURE__*/_jsxs(FormControl,{sx:{minWidth:120},size:\"small\",children:[/*#__PURE__*/_jsx(InputLabel,{id:\"ability-select-label\",children:t('launchModel.modelAbility')}),/*#__PURE__*/_jsx(Select,{id:\"ability\",labelId:\"ability-select-label\",label:\"Model Ability\",onChange:function onChange(e){return handleChangeFilter('audioModelAbility',e.target.value);},value:audioModelAbility,size:\"small\",sx:{width:'150px'},children:audioModelTypeArr.map(function(item){return/*#__PURE__*/_jsx(MenuItem,{value:item,children:item},item);})})]}),/*#__PURE__*/_jsxs(FormControl,{sx:{minWidth:120},size:\"small\",children:[/*#__PURE__*/_jsx(InputLabel,{id:\"select-status\",children:t('launchModel.status')}),/*#__PURE__*/_jsxs(Select,{id:\"status\",labelId:\"select-status\",label:t('launchModel.status'),onChange:function onChange(e){return handleChangeFilter('status',e.target.value);},value:status,size:\"small\",sx:{width:'150px'},children:[/*#__PURE__*/_jsx(MenuItem,{value:\"cached\",children:t('launchModel.cached')}),/*#__PURE__*/_jsx(MenuItem,{value:\"favorite\",children:t('launchModel.favorite')})]})]}),/*#__PURE__*/_jsx(FormControl,{sx:{marginTop:1},variant:\"outlined\",margin:\"normal\",children:/*#__PURE__*/_jsx(HotkeyFocusTextField,{id:\"search\",type:\"search\",label:t('launchModel.search'),value:searchTerm,onChange:function onChange(e){return setSearchTerm(e.target.value);},size:\"small\",hotkey:\"Enter\",t:t})})]}),/*#__PURE__*/_jsx(\"div\",{style:{margin:'0 0 30px 30px'},children:filterArr.map(function(item,index){return/*#__PURE__*/_jsx(Chip,{label:t(\"launchModel.\".concat(item)),variant:\"outlined\",size:\"small\",color:\"primary\",style:{marginRight:10},onDelete:function onDelete(){return handleDeleteChip(item);}},index);})}),/*#__PURE__*/_jsx(\"div\",{style:{display:'grid',gridTemplateColumns:'repeat(auto-fill, minmax(300px, 1fr))',paddingLeft:'2rem',gridGap:'2rem 0rem'},children:registrationData.filter(function(registration){return filter(registration);}).sort(function(a,b){if(modelListType==='featured'){var indexA=featureModels.indexOf(a.model_name);var indexB=featureModels.indexOf(b.model_name);return(indexA!==-1?indexA:Infinity)-(indexB!==-1?indexB:Infinity);}return 0;}).map(function(filteredRegistration){return/*#__PURE__*/_jsx(ModelCard,{url:endPoint,modelData:filteredRegistration,gpuAvailable:gpuAvailable,modelType:modelType,onHandleCompleteDelete:handleCompleteDelete,onGetCollectionArr:getCollectionArr},filteredRegistration.model_name);})})]});};export default LaunchModelComponent;","map":{"version":3,"names":["Box","Button","ButtonGroup","Chip","FormControl","InputLabel","MenuItem","Select","React","useContext","useEffect","useState","useCookies","useTranslation","ApiContext","fetchWrapper","HotkeyFocusTextField","ModelCard","jsx","_jsx","jsxs","_jsxs","modelAbilityArr","audioModelTypeArr","LaunchModelComponent","_ref","modelType","gpuAvailable","featureModels","_useContext","isCallingApi","setIsCallingApi","endPoint","_useContext2","isUpdatingModel","_useContext3","setErrorMsg","_useCookies","_useCookies2","_slicedToArray","cookie","_useState","_useState2","registrationData","setRegistrationData","_useState3","_useState4","searchTerm","setSearchTerm","_useState5","_useState6","LLMModelAbility","setLLMModelAbility","_useState7","_useState8","status","setStatus","_useState9","_useState10","statusArr","setStatusArr","_useState11","_useState12","completeDeleteArr","setCompleteDeleteArr","_useState13","_useState14","collectionArr","setCollectionArr","_useState15","_useState16","filterArr","setFilterArr","_useTranslation","t","_useState17","_useState18","modelListType","setModelListType","_useState19","_useState20","audioModelAbility","setAudioModelAbility","filter","registration","modelName","model_name","toLowerCase","modelDescription","model_description","includes","length","Array","isArray","model_ability","indexOf","model_specs","forEach","item","cache_status","_registration$model_s","judge","some","spec","filterCache","_registration$model_s2","_spec$cache_status","cs","handleCompleteDelete","concat","_toConsumableArray","update","token","sessionStorage","getItem","get","then","data","builtinRegistrations","v","is_builtin","collectionData","JSON","parse","localStorage","catch","error","console","response","message","getCollectionArr","handleChangeFilter","type","value","typeMap","setter","_ref2","excludeArr","updatedFilterArr","handleDeleteChip","subItem","handleModelType","newModelType","m","children","style","display","gridTemplateColumns","baseColumns","join","columnGap","margin","alignItems","sx","minWidth","size","fullWidth","onClick","variant","id","labelId","label","onChange","e","target","width","map","marginTop","hotkey","index","color","marginRight","onDelete","paddingLeft","gridGap","sort","a","b","indexA","indexB","Infinity","filteredRegistration","url","modelData","onHandleCompleteDelete","onGetCollectionArr"],"sources":["/home/runner/work/inference/inference/xinference/web/ui/src/scenes/launch_model/LaunchModel.js"],"sourcesContent":["import {\n Box,\n Button,\n ButtonGroup,\n Chip,\n FormControl,\n InputLabel,\n MenuItem,\n Select,\n} from '@mui/material'\nimport React, { useContext, useEffect, useState } from 'react'\nimport { useCookies } from 'react-cookie'\nimport { useTranslation } from 'react-i18next'\n\nimport { ApiContext } from '../../components/apiContext'\nimport fetchWrapper from '../../components/fetchWrapper'\nimport HotkeyFocusTextField from '../../components/hotkeyFocusTextField'\nimport ModelCard from './modelCard'\n\nconst modelAbilityArr = ['generate', 'chat', 'vision', 'reasoning']\nconst audioModelTypeArr = ['audio2text', 'text2audio', 'audio2audio']\n\nconst LaunchModelComponent = ({ modelType, gpuAvailable, featureModels }) => {\n const { isCallingApi, setIsCallingApi, endPoint } = useContext(ApiContext)\n const { isUpdatingModel } = useContext(ApiContext)\n const { setErrorMsg } = useContext(ApiContext)\n const [cookie] = useCookies(['token'])\n\n const [registrationData, setRegistrationData] = useState([])\n // States used for filtering\n const [searchTerm, setSearchTerm] = useState('')\n const [LLMModelAbility, setLLMModelAbility] = useState('')\n const [status, setStatus] = useState('')\n const [statusArr, setStatusArr] = useState([])\n const [completeDeleteArr, setCompleteDeleteArr] = useState([])\n const [collectionArr, setCollectionArr] = useState([])\n const [filterArr, setFilterArr] = useState([])\n const { t } = useTranslation()\n const [modelListType, setModelListType] = useState('featured')\n const [audioModelAbility, setAudioModelAbility] = useState('')\n\n const filter = (registration) => {\n if (searchTerm !== '') {\n if (!registration || typeof searchTerm !== 'string') return false\n const modelName = registration.model_name\n ? registration.model_name.toLowerCase()\n : ''\n const modelDescription = registration.model_description\n ? registration.model_description.toLowerCase()\n : ''\n\n if (\n !modelName.includes(searchTerm.toLowerCase()) &&\n !modelDescription.includes(searchTerm.toLowerCase())\n ) {\n return false\n }\n }\n\n if (modelListType === 'featured') {\n if (\n featureModels.length &&\n !featureModels.includes(registration.model_name)\n ) {\n return false\n }\n }\n\n if (\n LLMModelAbility &&\n ((Array.isArray(registration.model_ability) &&\n registration.model_ability.indexOf(LLMModelAbility) < 0) ||\n (typeof registration.model_ability === 'string' &&\n registration.model_ability !== LLMModelAbility))\n )\n return false\n\n if (\n audioModelAbility &&\n ((Array.isArray(registration.model_ability) &&\n registration.model_ability.indexOf(audioModelAbility) < 0) ||\n (typeof registration.model_ability === 'string' &&\n registration.model_ability !== audioModelAbility))\n )\n return false\n\n if (completeDeleteArr.includes(registration.model_name)) {\n registration.model_specs.forEach((item) => {\n item.cache_status = Array.isArray(item) ? [false] : false\n })\n }\n\n if (statusArr.length === 1) {\n if (statusArr[0] === 'cached') {\n const judge =\n registration.model_specs?.some((spec) => filterCache(spec)) ||\n registration?.cache_status\n return judge && !completeDeleteArr.includes(registration.model_name)\n } else {\n return collectionArr?.includes(registration.model_name)\n }\n } else if (statusArr.length > 1) {\n const judge =\n registration.model_specs?.some((spec) => filterCache(spec)) ||\n registration?.cache_status\n return (\n judge &&\n !completeDeleteArr.includes(registration.model_name) &&\n collectionArr?.includes(registration.model_name)\n )\n }\n\n return true\n }\n\n const filterCache = (spec) => {\n if (Array.isArray(spec.cache_status)) {\n return spec.cache_status?.some((cs) => cs)\n } else {\n return spec.cache_status === true\n }\n }\n\n const handleCompleteDelete = (model_name) => {\n setCompleteDeleteArr([...completeDeleteArr, model_name])\n }\n\n const update = () => {\n if (\n isCallingApi ||\n isUpdatingModel ||\n (cookie.token !== 'no_auth' && !sessionStorage.getItem('token'))\n )\n return\n\n try {\n setIsCallingApi(true)\n\n fetchWrapper\n .get(`/v1/model_registrations/${modelType}?detailed=true`)\n .then((data) => {\n const builtinRegistrations = data.filter((v) => v.is_builtin)\n setRegistrationData(builtinRegistrations)\n const collectionData = JSON.parse(\n localStorage.getItem('collectionArr')\n )\n setCollectionArr(collectionData)\n })\n .catch((error) => {\n console.error('Error:', error)\n if (error.response.status !== 403 && error.response.status !== 401) {\n setErrorMsg(error.message)\n }\n })\n } catch (error) {\n console.error('Error:', error)\n } finally {\n setIsCallingApi(false)\n }\n }\n\n useEffect(() => {\n update()\n }, [cookie.token])\n\n const getCollectionArr = (data) => {\n setCollectionArr(data)\n }\n\n const handleChangeFilter = (type, value) => {\n const typeMap = {\n LLMModelAbility: {\n setter: setLLMModelAbility,\n filterArr: modelAbilityArr,\n },\n audioModelAbility: {\n setter: setAudioModelAbility,\n filterArr: audioModelTypeArr,\n },\n status: { setter: setStatus, filterArr: [] },\n }\n\n const { setter, filterArr: excludeArr } = typeMap[type] || {}\n if (!setter) return\n\n setter(value)\n\n const updatedFilterArr = [\n ...filterArr.filter((item) => !excludeArr.includes(item)),\n value,\n ]\n\n setFilterArr(updatedFilterArr)\n\n if (type === 'status') {\n setStatusArr(\n updatedFilterArr.filter(\n (item) => ![...modelAbilityArr, ...audioModelTypeArr].includes(item)\n )\n )\n }\n }\n\n const handleDeleteChip = (item) => {\n setFilterArr(\n filterArr.filter((subItem) => {\n return subItem !== item\n })\n )\n if (item === LLMModelAbility) {\n setLLMModelAbility('')\n } else if (item === audioModelAbility) {\n setAudioModelAbility('')\n } else {\n setStatusArr(\n statusArr.filter((subItem) => {\n return subItem !== item\n })\n )\n if (item === status) setStatus('')\n }\n }\n\n const handleModelType = (newModelType) => {\n if (newModelType !== null) {\n setModelListType(newModelType)\n }\n }\n\n return (\n <Box m=\"20px\">\n <div\n style={{\n display: 'grid',\n gridTemplateColumns: (() => {\n const baseColumns = ['LLM', 'audio'].includes(modelType)\n ? ['150px', '150px']\n : ['150px']\n return featureModels.length\n ? [...baseColumns, '150px', '1fr'].join(' ')\n : [...baseColumns, '1fr'].join(' ')\n })(),\n columnGap: '20px',\n margin: '30px 2rem',\n alignItems: 'center',\n }}\n >\n {featureModels.length > 0 && (\n <FormControl sx={{ minWidth: 120 }} size=\"small\">\n <ButtonGroup>\n <Button\n fullWidth\n onClick={() => handleModelType('featured')}\n variant={\n modelListType === 'featured' ? 'contained' : 'outlined'\n }\n >\n {t('launchModel.featured')}\n </Button>\n <Button\n fullWidth\n onClick={() => handleModelType('all')}\n variant={modelListType === 'all' ? 'contained' : 'outlined'}\n >\n {t('launchModel.all')}\n </Button>\n </ButtonGroup>\n </FormControl>\n )}\n {modelType === 'LLM' && (\n <FormControl sx={{ minWidth: 120 }} size=\"small\">\n <InputLabel id=\"ability-select-label\">\n {t('launchModel.modelAbility')}\n </InputLabel>\n <Select\n id=\"ability\"\n labelId=\"ability-select-label\"\n label=\"Model Ability\"\n onChange={(e) =>\n handleChangeFilter('LLMModelAbility', e.target.value)\n }\n value={LLMModelAbility}\n size=\"small\"\n sx={{ width: '150px' }}\n >\n {modelAbilityArr.map((item) => (\n <MenuItem key={item} value={item}>\n {t(`launchModel.${item}`)}\n </MenuItem>\n ))}\n </Select>\n </FormControl>\n )}\n {modelType === 'audio' && (\n <FormControl sx={{ minWidth: 120 }} size=\"small\">\n <InputLabel id=\"ability-select-label\">\n {t('launchModel.modelAbility')}\n </InputLabel>\n <Select\n id=\"ability\"\n labelId=\"ability-select-label\"\n label=\"Model Ability\"\n onChange={(e) =>\n handleChangeFilter('audioModelAbility', e.target.value)\n }\n value={audioModelAbility}\n size=\"small\"\n sx={{ width: '150px' }}\n >\n {audioModelTypeArr.map((item) => (\n <MenuItem key={item} value={item}>\n {item}\n </MenuItem>\n ))}\n </Select>\n </FormControl>\n )}\n <FormControl sx={{ minWidth: 120 }} size=\"small\">\n <InputLabel id=\"select-status\">{t('launchModel.status')}</InputLabel>\n <Select\n id=\"status\"\n labelId=\"select-status\"\n label={t('launchModel.status')}\n onChange={(e) => handleChangeFilter('status', e.target.value)}\n value={status}\n size=\"small\"\n sx={{ width: '150px' }}\n >\n <MenuItem value=\"cached\">{t('launchModel.cached')}</MenuItem>\n <MenuItem value=\"favorite\">{t('launchModel.favorite')}</MenuItem>\n </Select>\n </FormControl>\n\n <FormControl sx={{ marginTop: 1 }} variant=\"outlined\" margin=\"normal\">\n <HotkeyFocusTextField\n id=\"search\"\n type=\"search\"\n label={t('launchModel.search')}\n value={searchTerm}\n onChange={(e) => setSearchTerm(e.target.value)}\n size=\"small\"\n hotkey=\"Enter\"\n t={t}\n />\n </FormControl>\n </div>\n <div style={{ margin: '0 0 30px 30px' }}>\n {filterArr.map((item, index) => (\n <Chip\n key={index}\n label={t(`launchModel.${item}`)}\n variant=\"outlined\"\n size=\"small\"\n color=\"primary\"\n style={{ marginRight: 10 }}\n onDelete={() => handleDeleteChip(item)}\n />\n ))}\n </div>\n <div\n style={{\n display: 'grid',\n gridTemplateColumns: 'repeat(auto-fill, minmax(300px, 1fr))',\n paddingLeft: '2rem',\n gridGap: '2rem 0rem',\n }}\n >\n {registrationData\n .filter((registration) => filter(registration))\n .sort((a, b) => {\n if (modelListType === 'featured') {\n const indexA = featureModels.indexOf(a.model_name)\n const indexB = featureModels.indexOf(b.model_name)\n return (\n (indexA !== -1 ? indexA : Infinity) -\n (indexB !== -1 ? indexB : Infinity)\n )\n }\n return 0\n })\n .map((filteredRegistration) => (\n <ModelCard\n key={filteredRegistration.model_name}\n url={endPoint}\n modelData={filteredRegistration}\n gpuAvailable={gpuAvailable}\n modelType={modelType}\n onHandleCompleteDelete={handleCompleteDelete}\n onGetCollectionArr={getCollectionArr}\n />\n ))}\n </div>\n </Box>\n )\n}\n\nexport default LaunchModelComponent\n"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
@@ -4,7 +4,8 @@
4
4
  "runningModels": "Running Models",
5
5
  "registerModel": "Register Model",
6
6
  "clusterInfo": "Cluster Information",
7
- "contactUs": "Contact Us"
7
+ "contactUs": "Contact Us",
8
+ "documentation": "Documentation"
8
9
  },
9
10
 
10
11
  "model": {
@@ -24,9 +25,9 @@
24
25
  "chat": "chat",
25
26
  "vision": "vl-chat",
26
27
  "reasoning": "reasoning",
27
- "text-to-audio": "text-to-audio",
28
- "audio-to-text": "audio-to-text",
29
- "audio-to-audio": "audio-to-audio",
28
+ "text2audio": "text2audio",
29
+ "audio2text": "audio2text",
30
+ "audio2audio": "audio2audio",
30
31
  "status": "Status",
31
32
  "cached": "Cached",
32
33
  "manageCachedModels": "Manage Cached Models",
@@ -68,6 +69,7 @@
68
69
  "modelPath.optional": "(Optional) Model Path, For PyTorch, provide the model directory. For GGML/GGUF, provide the model file path.",
69
70
  "GGUFQuantization.optional": "(Optional) GGUF quantization format, quantizing the Transformer part.",
70
71
  "GGUFModelPath.optional": "(Optional) GGUF model path, should be a file ending with .gguf.",
72
+ "enableThinking": "Enable Thinking",
71
73
  "parsingReasoningContent": "Parsing Reasoning Content",
72
74
  "CPUOffload": "CPU Offload",
73
75
  "CPUOffload.tip": "Unload the model to the CPU. Recommend to enable this when resources are limited or when using the GGUF option.",
@@ -4,7 +4,8 @@
4
4
  "runningModels": "运行模型",
5
5
  "registerModel": "注册模型",
6
6
  "clusterInfo": "集群信息",
7
- "contactUs": "联系我们"
7
+ "contactUs": "联系我们",
8
+ "documentation": "文档"
8
9
  },
9
10
 
10
11
  "model": {
@@ -24,9 +25,9 @@
24
25
  "chat": "聊天",
25
26
  "vision": "视觉聊天",
26
27
  "reasoning": "推理",
27
- "text-to-audio": "text-to-audio",
28
- "audio-to-text": "audio-to-text",
29
- "audio-to-audio": "audio-to-audio",
28
+ "text2audio": "text2audio",
29
+ "audio2text": "audio2text",
30
+ "audio2audio": "audio2audio",
30
31
  "status": "状态",
31
32
  "cached": "已缓存",
32
33
  "manageCachedModels": "管理缓存模型",
@@ -68,6 +69,7 @@
68
69
  "modelPath.optional": "(可选) 模型路径,对于 PyTorch,提供模型目录;对于 GGML/GGUF,提供模型文件路径。",
69
70
  "GGUFQuantization.optional": "(可选) GGUF量化格式,对Transformer部分进行量化。",
70
71
  "GGUFModelPath.optional": "(可选) GGUF模型路径,应为以 .gguf 结尾的文件。",
72
+ "enableThinking": "开启思考模式",
71
73
  "parsingReasoningContent": "解析推理内容",
72
74
  "CPUOffload": "CPU卸载",
73
75
  "CPUOffload.tip": "将模型卸载到CPU。当资源有限或使用GGUF选项时,建议启用此功能。",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xinference
3
- Version: 1.5.1
3
+ Version: 1.6.0
4
4
  Summary: Model Serving Made Easy
5
5
  Home-page: https://github.com/xorbitsai/inference
6
6
  Author: Qin Xuye
@@ -19,11 +19,11 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
19
19
  Classifier: Topic :: Software Development :: Libraries
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
- Requires-Dist: xoscar>=0.6.1
22
+ Requires-Dist: xoscar>=0.7.2
23
23
  Requires-Dist: torch
24
24
  Requires-Dist: gradio
25
25
  Requires-Dist: pillow
26
- Requires-Dist: click
26
+ Requires-Dist: click<8.2.0
27
27
  Requires-Dist: tqdm>=4.27
28
28
  Requires-Dist: tabulate
29
29
  Requires-Dist: requests
@@ -67,35 +67,50 @@ Requires-Dist: sphinx-tabs; extra == "dev"
67
67
  Requires-Dist: sphinx-design; extra == "dev"
68
68
  Provides-Extra: all
69
69
  Requires-Dist: uv; extra == "all"
70
- Requires-Dist: llama-cpp-python!=0.2.58,>=0.2.25; extra == "all"
71
70
  Requires-Dist: xllamacpp; extra == "all"
72
71
  Requires-Dist: transformers>=4.46.0; extra == "all"
73
- Requires-Dist: torch>=2.0.0; extra == "all"
72
+ Requires-Dist: torch; extra == "all"
74
73
  Requires-Dist: accelerate>=0.28.0; extra == "all"
75
74
  Requires-Dist: sentencepiece; extra == "all"
76
75
  Requires-Dist: transformers_stream_generator; extra == "all"
77
- Requires-Dist: bitsandbytes; extra == "all"
76
+ Requires-Dist: bitsandbytes; sys_platform == "linux" and extra == "all"
78
77
  Requires-Dist: protobuf; extra == "all"
79
78
  Requires-Dist: einops; extra == "all"
80
- Requires-Dist: tiktoken>=0.6.0; extra == "all"
81
- Requires-Dist: sentence-transformers>=3.1.0; extra == "all"
82
- Requires-Dist: vllm>=0.2.6; sys_platform == "linux" and extra == "all"
83
- Requires-Dist: imageio-ffmpeg; extra == "all"
84
- Requires-Dist: controlnet_aux; extra == "all"
85
- Requires-Dist: orjson; extra == "all"
86
- Requires-Dist: gptqmodel; extra == "all"
87
- Requires-Dist: autoawq<0.2.6; sys_platform != "darwin" and extra == "all"
79
+ Requires-Dist: tiktoken; extra == "all"
88
80
  Requires-Dist: optimum; extra == "all"
89
- Requires-Dist: outlines>=0.0.34; extra == "all"
90
- Requires-Dist: sglang[srt]>=0.4.2.post4; sys_platform == "linux" and extra == "all"
91
- Requires-Dist: mlx-lm>=0.21.5; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
92
- Requires-Dist: mlx-vlm>=0.1.11; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
93
- Requires-Dist: mlx-whisper; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
94
- Requires-Dist: f5-tts-mlx; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
95
81
  Requires-Dist: attrdict; extra == "all"
96
82
  Requires-Dist: timm>=0.9.16; extra == "all"
97
83
  Requires-Dist: torchvision; extra == "all"
84
+ Requires-Dist: peft; extra == "all"
85
+ Requires-Dist: eva-decord; extra == "all"
86
+ Requires-Dist: jj-pytorchvideo; extra == "all"
87
+ Requires-Dist: qwen-vl-utils!=0.0.9; extra == "all"
88
+ Requires-Dist: qwen_omni_utils; extra == "all"
89
+ Requires-Dist: datamodel_code_generator; extra == "all"
90
+ Requires-Dist: jsonschema; extra == "all"
91
+ Requires-Dist: blobfile; extra == "all"
92
+ Requires-Dist: vllm>=0.2.6; extra == "all"
93
+ Requires-Dist: sglang[srt]>=0.4.2.post4; sys_platform == "linux" and extra == "all"
94
+ Requires-Dist: mlx-lm>=0.21.5; extra == "all"
95
+ Requires-Dist: mlx-vlm>=0.1.11; extra == "all"
96
+ Requires-Dist: mlx-whisper; extra == "all"
97
+ Requires-Dist: f5-tts-mlx; extra == "all"
98
+ Requires-Dist: qwen_vl_utils!=0.0.9; extra == "all"
99
+ Requires-Dist: tomli; extra == "all"
100
+ Requires-Dist: sentence-transformers>=3.1.0; extra == "all"
98
101
  Requires-Dist: FlagEmbedding; extra == "all"
102
+ Requires-Dist: diffusers>=0.32.0; extra == "all"
103
+ Requires-Dist: controlnet_aux; extra == "all"
104
+ Requires-Dist: deepcache; extra == "all"
105
+ Requires-Dist: gguf; extra == "all"
106
+ Requires-Dist: verovio>=4.3.1; extra == "all"
107
+ Requires-Dist: transformers>=4.37.2; extra == "all"
108
+ Requires-Dist: tiktoken>=0.6.0; extra == "all"
109
+ Requires-Dist: accelerate>=0.28.0; extra == "all"
110
+ Requires-Dist: torch; extra == "all"
111
+ Requires-Dist: torchvision; extra == "all"
112
+ Requires-Dist: diffusers>=0.32.0; extra == "all"
113
+ Requires-Dist: imageio-ffmpeg; extra == "all"
99
114
  Requires-Dist: funasr<1.1.17; extra == "all"
100
115
  Requires-Dist: omegaconf~=2.3.0; extra == "all"
101
116
  Requires-Dist: nemo_text_processing<1.1.0; sys_platform == "linux" and extra == "all"
@@ -104,20 +119,18 @@ Requires-Dist: librosa; extra == "all"
104
119
  Requires-Dist: xxhash; extra == "all"
105
120
  Requires-Dist: torchaudio; extra == "all"
106
121
  Requires-Dist: ChatTTS>=0.2.1; extra == "all"
122
+ Requires-Dist: tiktoken; extra == "all"
123
+ Requires-Dist: torch>=2.0.0; extra == "all"
107
124
  Requires-Dist: lightning>=2.0.0; extra == "all"
108
125
  Requires-Dist: hydra-core>=1.3.2; extra == "all"
109
126
  Requires-Dist: inflect; extra == "all"
110
127
  Requires-Dist: conformer; extra == "all"
111
128
  Requires-Dist: diffusers>=0.32.0; extra == "all"
112
- Requires-Dist: gguf; extra == "all"
113
129
  Requires-Dist: gdown; extra == "all"
114
130
  Requires-Dist: pyarrow; extra == "all"
115
131
  Requires-Dist: HyperPyYAML; extra == "all"
116
132
  Requires-Dist: onnxruntime>=1.16.0; extra == "all"
117
- Requires-Dist: boto3<1.28.65,>=1.28.55; extra == "all"
118
- Requires-Dist: tensorizer~=2.9.0; extra == "all"
119
- Requires-Dist: eva-decord; extra == "all"
120
- Requires-Dist: jj-pytorchvideo; extra == "all"
133
+ Requires-Dist: pyworld>=0.3.4; extra == "all"
121
134
  Requires-Dist: loguru; extra == "all"
122
135
  Requires-Dist: natsort; extra == "all"
123
136
  Requires-Dist: loralib; extra == "all"
@@ -133,20 +146,24 @@ Requires-Dist: vocos; extra == "all"
133
146
  Requires-Dist: librosa; extra == "all"
134
147
  Requires-Dist: jieba; extra == "all"
135
148
  Requires-Dist: soundfile; extra == "all"
136
- Requires-Dist: qwen-vl-utils!=0.0.9; extra == "all"
137
- Requires-Dist: qwen_omni_utils; extra == "all"
138
- Requires-Dist: datamodel_code_generator; extra == "all"
139
- Requires-Dist: jsonschema; extra == "all"
140
- Requires-Dist: verovio>=4.3.1; extra == "all"
141
- Requires-Dist: accelerate>=0.28.0; extra == "all"
142
- Requires-Dist: blobfile; extra == "all"
149
+ Requires-Dist: cached_path; extra == "all"
150
+ Requires-Dist: unidic-lite; extra == "all"
151
+ Requires-Dist: cn2an; extra == "all"
152
+ Requires-Dist: mecab-python3; extra == "all"
153
+ Requires-Dist: num2words; extra == "all"
154
+ Requires-Dist: pykakasi; extra == "all"
155
+ Requires-Dist: fugashi; extra == "all"
156
+ Requires-Dist: g2p_en; extra == "all"
157
+ Requires-Dist: anyascii; extra == "all"
158
+ Requires-Dist: gruut[de,es,fr]; extra == "all"
159
+ Requires-Dist: kokoro>=0.7.15; extra == "all"
160
+ Requires-Dist: misaki[en,ja,zh]>=0.7.15; extra == "all"
143
161
  Requires-Dist: langdetect; extra == "all"
144
162
  Requires-Dist: pyloudnorm; extra == "all"
145
163
  Provides-Extra: intel
146
164
  Requires-Dist: torch==2.1.0a0; extra == "intel"
147
165
  Requires-Dist: intel_extension_for_pytorch==2.1.10+xpu; extra == "intel"
148
166
  Provides-Extra: llama-cpp
149
- Requires-Dist: llama-cpp-python!=0.2.58,>=0.2.25; extra == "llama-cpp"
150
167
  Requires-Dist: xllamacpp; extra == "llama-cpp"
151
168
  Provides-Extra: transformers
152
169
  Requires-Dist: transformers>=4.46.0; extra == "transformers"
@@ -158,8 +175,6 @@ Requires-Dist: bitsandbytes; sys_platform == "linux" and extra == "transformers"
158
175
  Requires-Dist: protobuf; extra == "transformers"
159
176
  Requires-Dist: einops; extra == "transformers"
160
177
  Requires-Dist: tiktoken; extra == "transformers"
161
- Requires-Dist: gptqmodel; extra == "transformers"
162
- Requires-Dist: autoawq<0.2.6; sys_platform != "darwin" and extra == "transformers"
163
178
  Requires-Dist: optimum; extra == "transformers"
164
179
  Requires-Dist: attrdict; extra == "transformers"
165
180
  Requires-Dist: timm>=0.9.16; extra == "transformers"
@@ -172,6 +187,10 @@ Requires-Dist: qwen_omni_utils; extra == "transformers"
172
187
  Requires-Dist: datamodel_code_generator; extra == "transformers"
173
188
  Requires-Dist: jsonschema; extra == "transformers"
174
189
  Requires-Dist: blobfile; extra == "transformers"
190
+ Provides-Extra: transformers-quantization
191
+ Requires-Dist: bitsandbytes; sys_platform == "linux" and extra == "transformers-quantization"
192
+ Requires-Dist: gptqmodel; extra == "transformers-quantization"
193
+ Requires-Dist: autoawq!=0.2.6; sys_platform != "darwin" and extra == "transformers-quantization"
175
194
  Provides-Extra: vllm
176
195
  Requires-Dist: vllm>=0.2.6; extra == "vllm"
177
196
  Provides-Extra: sglang
@@ -221,6 +240,7 @@ Requires-Dist: gdown; extra == "audio"
221
240
  Requires-Dist: pyarrow; extra == "audio"
222
241
  Requires-Dist: HyperPyYAML; extra == "audio"
223
242
  Requires-Dist: onnxruntime>=1.16.0; extra == "audio"
243
+ Requires-Dist: pyworld>=0.3.4; extra == "audio"
224
244
  Requires-Dist: loguru; extra == "audio"
225
245
  Requires-Dist: natsort; extra == "audio"
226
246
  Requires-Dist: loralib; extra == "audio"
@@ -316,6 +336,7 @@ potential of cutting-edge AI models.
316
336
  - Support SGLang backend: [#1161](https://github.com/xorbitsai/inference/pull/1161)
317
337
  - Support LoRA for LLM and image models: [#1080](https://github.com/xorbitsai/inference/pull/1080)
318
338
  ### New Models
339
+ - Built-in support for [Qwen3](https://qwenlm.github.io/blog/qwen3/): [#3347](https://github.com/xorbitsai/inference/pull/3347)
319
340
  - Built-in support for [Qwen2.5-Omni](https://github.com/QwenLM/Qwen2.5-Omni): [#3279](https://github.com/xorbitsai/inference/pull/3279)
320
341
  - Built-in support for [Skywork-OR1](https://github.com/SkyworkAI/Skywork-OR1): [#3274](https://github.com/xorbitsai/inference/pull/3274)
321
342
  - Built-in support for [GLM-4-0414](https://github.com/THUDM/GLM-4): [#3251](https://github.com/xorbitsai/inference/pull/3251)
@@ -323,7 +344,6 @@ potential of cutting-edge AI models.
323
344
  - Built-in support for [paraformer-zh](https://huggingface.co/funasr/paraformer-zh): [#3236](https://github.com/xorbitsai/inference/pull/3236)
324
345
  - Built-in support for [InternVL3](https://internvl.github.io/blog/2025-04-11-InternVL-3.0/): [#3235](https://github.com/xorbitsai/inference/pull/3235)
325
346
  - Built-in support for [MegaTTS3](https://github.com/bytedance/MegaTTS3): [#3224](https://github.com/xorbitsai/inference/pull/3224)
326
- - Built-in support for [Deepseek-VL2](https://github.com/deepseek-ai/DeepSeek-VL2): [#3179](https://github.com/xorbitsai/inference/pull/3179)
327
347
  ### Integrations
328
348
  - [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.
329
349
  - [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.