xinference 1.4.1__py3-none-any.whl → 1.5.0.post1__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 (104) hide show
  1. xinference/_version.py +3 -3
  2. xinference/api/restful_api.py +50 -1
  3. xinference/client/restful/restful_client.py +82 -2
  4. xinference/constants.py +3 -0
  5. xinference/core/chat_interface.py +297 -83
  6. xinference/core/model.py +1 -0
  7. xinference/core/progress_tracker.py +16 -8
  8. xinference/core/supervisor.py +45 -1
  9. xinference/core/worker.py +262 -37
  10. xinference/deploy/cmdline.py +33 -1
  11. xinference/model/audio/core.py +11 -1
  12. xinference/model/audio/megatts.py +105 -0
  13. xinference/model/audio/model_spec.json +24 -1
  14. xinference/model/audio/model_spec_modelscope.json +26 -1
  15. xinference/model/core.py +14 -0
  16. xinference/model/embedding/core.py +6 -1
  17. xinference/model/flexible/core.py +6 -1
  18. xinference/model/image/core.py +6 -1
  19. xinference/model/image/model_spec.json +17 -1
  20. xinference/model/image/model_spec_modelscope.json +17 -1
  21. xinference/model/llm/__init__.py +0 -4
  22. xinference/model/llm/core.py +4 -0
  23. xinference/model/llm/llama_cpp/core.py +40 -16
  24. xinference/model/llm/llm_family.json +415 -84
  25. xinference/model/llm/llm_family.py +24 -1
  26. xinference/model/llm/llm_family_modelscope.json +449 -0
  27. xinference/model/llm/mlx/core.py +16 -2
  28. xinference/model/llm/transformers/__init__.py +14 -0
  29. xinference/model/llm/transformers/core.py +30 -6
  30. xinference/model/llm/transformers/gemma3.py +17 -2
  31. xinference/model/llm/transformers/intern_vl.py +28 -18
  32. xinference/model/llm/transformers/minicpmv26.py +21 -2
  33. xinference/model/llm/transformers/qwen-omni.py +308 -0
  34. xinference/model/llm/transformers/qwen2_audio.py +1 -1
  35. xinference/model/llm/transformers/qwen2_vl.py +20 -4
  36. xinference/model/llm/utils.py +11 -1
  37. xinference/model/llm/vllm/core.py +35 -0
  38. xinference/model/llm/vllm/distributed_executor.py +8 -2
  39. xinference/model/rerank/core.py +6 -1
  40. xinference/model/utils.py +118 -1
  41. xinference/model/video/core.py +6 -1
  42. xinference/thirdparty/megatts3/__init__.py +0 -0
  43. xinference/thirdparty/megatts3/tts/frontend_function.py +175 -0
  44. xinference/thirdparty/megatts3/tts/gradio_api.py +93 -0
  45. xinference/thirdparty/megatts3/tts/infer_cli.py +277 -0
  46. xinference/thirdparty/megatts3/tts/modules/aligner/whisper_small.py +318 -0
  47. xinference/thirdparty/megatts3/tts/modules/ar_dur/ar_dur_predictor.py +362 -0
  48. xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/layers.py +64 -0
  49. xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/nar_tts_modules.py +73 -0
  50. xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/rel_transformer.py +403 -0
  51. xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/rot_transformer.py +649 -0
  52. xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/seq_utils.py +342 -0
  53. xinference/thirdparty/megatts3/tts/modules/ar_dur/commons/transformer.py +767 -0
  54. xinference/thirdparty/megatts3/tts/modules/llm_dit/cfm.py +309 -0
  55. xinference/thirdparty/megatts3/tts/modules/llm_dit/dit.py +180 -0
  56. xinference/thirdparty/megatts3/tts/modules/llm_dit/time_embedding.py +44 -0
  57. xinference/thirdparty/megatts3/tts/modules/llm_dit/transformer.py +230 -0
  58. xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/diag_gaussian.py +67 -0
  59. xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/hifigan_modules.py +283 -0
  60. xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/seanet_encoder.py +38 -0
  61. xinference/thirdparty/megatts3/tts/modules/wavvae/decoder/wavvae_v3.py +60 -0
  62. xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/conv.py +154 -0
  63. xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/lstm.py +51 -0
  64. xinference/thirdparty/megatts3/tts/modules/wavvae/encoder/common_modules/seanet.py +126 -0
  65. xinference/thirdparty/megatts3/tts/utils/audio_utils/align.py +36 -0
  66. xinference/thirdparty/megatts3/tts/utils/audio_utils/io.py +95 -0
  67. xinference/thirdparty/megatts3/tts/utils/audio_utils/plot.py +90 -0
  68. xinference/thirdparty/megatts3/tts/utils/commons/ckpt_utils.py +171 -0
  69. xinference/thirdparty/megatts3/tts/utils/commons/hparams.py +215 -0
  70. xinference/thirdparty/megatts3/tts/utils/text_utils/dict.json +1 -0
  71. xinference/thirdparty/megatts3/tts/utils/text_utils/ph_tone_convert.py +94 -0
  72. xinference/thirdparty/megatts3/tts/utils/text_utils/split_text.py +90 -0
  73. xinference/thirdparty/megatts3/tts/utils/text_utils/text_encoder.py +280 -0
  74. xinference/types.py +10 -0
  75. xinference/utils.py +54 -0
  76. xinference/web/ui/build/asset-manifest.json +6 -6
  77. xinference/web/ui/build/index.html +1 -1
  78. xinference/web/ui/build/static/css/main.0f6523be.css +2 -0
  79. xinference/web/ui/build/static/css/main.0f6523be.css.map +1 -0
  80. xinference/web/ui/build/static/js/main.58bd483c.js +3 -0
  81. xinference/web/ui/build/static/js/main.58bd483c.js.map +1 -0
  82. xinference/web/ui/node_modules/.cache/babel-loader/3bff8cbe9141f937f4d98879a9771b0f48e0e4e0dbee8e647adbfe23859e7048.json +1 -0
  83. xinference/web/ui/node_modules/.cache/babel-loader/4500b1a622a031011f0a291701e306b87e08cbc749c50e285103536b85b6a914.json +1 -0
  84. xinference/web/ui/node_modules/.cache/babel-loader/51709f5d3e53bcf19e613662ef9b91fb9174942c5518987a248348dd4e1e0e02.json +1 -0
  85. xinference/web/ui/node_modules/.cache/babel-loader/69081049f0c7447544b7cfd73dd13d8846c02fe5febe4d81587e95c89a412d5b.json +1 -0
  86. xinference/web/ui/node_modules/.cache/babel-loader/b8551e9775a01b28ae674125c688febe763732ea969ae344512e64ea01bf632e.json +1 -0
  87. xinference/web/ui/node_modules/.cache/babel-loader/bf2b211b0d1b6465eff512d64c869d748f803c5651a7c24e48de6ea3484a7bfe.json +1 -0
  88. xinference/web/ui/src/locales/en.json +2 -1
  89. xinference/web/ui/src/locales/zh.json +2 -1
  90. {xinference-1.4.1.dist-info → xinference-1.5.0.post1.dist-info}/METADATA +129 -114
  91. {xinference-1.4.1.dist-info → xinference-1.5.0.post1.dist-info}/RECORD +96 -60
  92. {xinference-1.4.1.dist-info → xinference-1.5.0.post1.dist-info}/WHEEL +1 -1
  93. xinference/web/ui/build/static/css/main.b494ae7e.css +0 -2
  94. xinference/web/ui/build/static/css/main.b494ae7e.css.map +0 -1
  95. xinference/web/ui/build/static/js/main.5ca4eea1.js +0 -3
  96. xinference/web/ui/build/static/js/main.5ca4eea1.js.map +0 -1
  97. xinference/web/ui/node_modules/.cache/babel-loader/0f0967acaec5df1d45b80010949c258d64297ebbb0f44b8bb3afcbd45c6f0ec4.json +0 -1
  98. xinference/web/ui/node_modules/.cache/babel-loader/27bcada3ee8f89d21184b359f022fc965f350ffaca52c9814c29f1fc37121173.json +0 -1
  99. xinference/web/ui/node_modules/.cache/babel-loader/68249645124f37d01eef83b1d897e751f895bea919b6fb466f907c1f87cebc84.json +0 -1
  100. xinference/web/ui/node_modules/.cache/babel-loader/e547bbb18abb4a474b675a8d5782d25617566bea0af8caa9b836ce5649e2250a.json +0 -1
  101. /xinference/web/ui/build/static/js/{main.5ca4eea1.js.LICENSE.txt → main.58bd483c.js.LICENSE.txt} +0 -0
  102. {xinference-1.4.1.dist-info → xinference-1.5.0.post1.dist-info}/entry_points.txt +0 -0
  103. {xinference-1.4.1.dist-info → xinference-1.5.0.post1.dist-info/licenses}/LICENSE +0 -0
  104. {xinference-1.4.1.dist-info → xinference-1.5.0.post1.dist-info}/top_level.txt +0 -0
@@ -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,{useContext,useEffect,useState}from'react';import{useCookies}from'react-cookie';import{useTranslation}from'react-i18next';import{useNavigate}from'react-router-dom';import{ApiContext}from'../../components/apiContext';import ErrorMessageSnackBar from'../../components/errorMessageSnackBar';import fetchWrapper from'../../components/fetchWrapper';import SuccessMessageSnackBar from'../../components/successMessageSnackBar';import Title from'../../components/Title';import{isValidBearerToken}from'../../components/utils';import{featureModels}from'./data/data';import LaunchCustom from'./launchCustom';import LaunchModelComponent from'./LaunchModel';import{jsx as _jsx}from\"react/jsx-runtime\";import{jsxs as _jsxs}from\"react/jsx-runtime\";var LaunchModel=function LaunchModel(){var _React$useState=React.useState(sessionStorage.getItem('modelType')?sessionStorage.getItem('modelType'):'/launch_model/llm'),_React$useState2=_slicedToArray(_React$useState,2),value=_React$useState2[0],setValue=_React$useState2[1];var _useState=useState(-1),_useState2=_slicedToArray(_useState,2),gpuAvailable=_useState2[0],setGPUAvailable=_useState2[1];var _useContext=useContext(ApiContext),setErrorMsg=_useContext.setErrorMsg;var _useCookies=useCookies(['token']),_useCookies2=_slicedToArray(_useCookies,1),cookie=_useCookies2[0];var navigate=useNavigate();var _useTranslation=useTranslation(),t=_useTranslation.t;var handleTabChange=function handleTabChange(event,newValue){setValue(newValue);navigate(newValue);sessionStorage.setItem('modelType',newValue);newValue==='/launch_model/custom/llm'?sessionStorage.setItem('subType',newValue):'';};useEffect(function(){if(sessionStorage.getItem('auth')==='true'&&!isValidBearerToken(sessionStorage.getItem('token'))&&!isValidBearerToken(cookie.token)){navigate('/login',{replace:true});}if(gpuAvailable===-1){fetchWrapper.get('/v1/cluster/devices').then(function(data){return setGPUAvailable(parseInt(data,10));}).catch(function(error){console.error('Error:',error);if(error.response.status!==403&&error.response.status!==401){setErrorMsg(error.message);}});}},[cookie.token]);return/*#__PURE__*/_jsxs(Box,{m:\"20px\",children:[/*#__PURE__*/_jsx(Title,{title:t('menu.launchModel')}),/*#__PURE__*/_jsx(ErrorMessageSnackBar,{}),/*#__PURE__*/_jsx(SuccessMessageSnackBar,{}),/*#__PURE__*/_jsxs(TabContext,{value:value,children:[/*#__PURE__*/_jsx(Box,{sx:{borderBottom:1,borderColor:'divider'},children:/*#__PURE__*/_jsxs(TabList,{value:value,onChange:handleTabChange,\"aria-label\":\"tabs\",children:[/*#__PURE__*/_jsx(Tab,{label:t('model.languageModels'),value:\"/launch_model/llm\"}),/*#__PURE__*/_jsx(Tab,{label:t('model.embeddingModels'),value:\"/launch_model/embedding\"}),/*#__PURE__*/_jsx(Tab,{label:t('model.rerankModels'),value:\"/launch_model/rerank\"}),/*#__PURE__*/_jsx(Tab,{label:t('model.imageModels'),value:\"/launch_model/image\"}),/*#__PURE__*/_jsx(Tab,{label:t('model.audioModels'),value:\"/launch_model/audio\"}),/*#__PURE__*/_jsx(Tab,{label:t('model.videoModels'),value:\"/launch_model/video\"}),/*#__PURE__*/_jsx(Tab,{label:t('model.customModels'),value:\"/launch_model/custom/llm\"})]})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/launch_model/llm\",sx:{padding:0},children:/*#__PURE__*/_jsx(LaunchModelComponent,{modelType:'LLM',gpuAvailable:gpuAvailable,featureModels:featureModels.find(function(item){return item.type==='llm';}).feature_models})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/launch_model/embedding\",sx:{padding:0},children:/*#__PURE__*/_jsx(LaunchModelComponent,{modelType:'embedding',gpuAvailable:gpuAvailable,featureModels:featureModels.find(function(item){return item.type==='embedding';}).feature_models})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/launch_model/rerank\",sx:{padding:0},children:/*#__PURE__*/_jsx(LaunchModelComponent,{modelType:'rerank',gpuAvailable:gpuAvailable,featureModels:featureModels.find(function(item){return item.type==='rerank';}).feature_models})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/launch_model/image\",sx:{padding:0},children:/*#__PURE__*/_jsx(LaunchModelComponent,{modelType:'image',featureModels:featureModels.find(function(item){return item.type==='image';}).feature_models})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/launch_model/audio\",sx:{padding:0},children:/*#__PURE__*/_jsx(LaunchModelComponent,{modelType:'audio',featureModels:featureModels.find(function(item){return item.type==='audio';}).feature_models})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/launch_model/video\",sx:{padding:0},children:/*#__PURE__*/_jsx(LaunchModelComponent,{modelType:'video',featureModels:featureModels.find(function(item){return item.type==='video';}).feature_models})}),/*#__PURE__*/_jsx(TabPanel,{value:\"/launch_model/custom/llm\",sx:{padding:0},children:/*#__PURE__*/_jsx(LaunchCustom,{gpuAvailable:gpuAvailable})})]})]});};export default LaunchModel;","map":{"version":3,"names":["TabContext","TabList","TabPanel","Box","Tab","React","useContext","useEffect","useState","useCookies","useTranslation","useNavigate","ApiContext","ErrorMessageSnackBar","fetchWrapper","SuccessMessageSnackBar","Title","isValidBearerToken","featureModels","LaunchCustom","LaunchModelComponent","jsx","_jsx","jsxs","_jsxs","LaunchModel","_React$useState","sessionStorage","getItem","_React$useState2","_slicedToArray","value","setValue","_useState","_useState2","gpuAvailable","setGPUAvailable","_useContext","setErrorMsg","_useCookies","_useCookies2","cookie","navigate","_useTranslation","t","handleTabChange","event","newValue","setItem","token","replace","get","then","data","parseInt","catch","error","console","response","status","message","m","children","title","sx","borderBottom","borderColor","onChange","label","padding","modelType","find","item","type","feature_models"],"sources":["/home/runner/work/inference/inference/xinference/web/ui/src/scenes/launch_model/index.js"],"sourcesContent":["import { TabContext, TabList, TabPanel } from '@mui/lab'\nimport { Box, Tab } from '@mui/material'\nimport React, { useContext, useEffect, useState } from 'react'\nimport { useCookies } from 'react-cookie'\nimport { useTranslation } from 'react-i18next'\nimport { useNavigate } from 'react-router-dom'\n\nimport { ApiContext } from '../../components/apiContext'\nimport ErrorMessageSnackBar from '../../components/errorMessageSnackBar'\nimport fetchWrapper from '../../components/fetchWrapper'\nimport SuccessMessageSnackBar from '../../components/successMessageSnackBar'\nimport Title from '../../components/Title'\nimport { isValidBearerToken } from '../../components/utils'\nimport { featureModels } from './data/data'\nimport LaunchCustom from './launchCustom'\nimport LaunchModelComponent from './LaunchModel'\n\nconst LaunchModel = () => {\n const [value, setValue] = React.useState(\n sessionStorage.getItem('modelType')\n ? sessionStorage.getItem('modelType')\n : '/launch_model/llm'\n )\n const [gpuAvailable, setGPUAvailable] = useState(-1)\n\n const { setErrorMsg } = useContext(ApiContext)\n const [cookie] = useCookies(['token'])\n const navigate = useNavigate()\n const { t } = useTranslation()\n\n const handleTabChange = (event, newValue) => {\n setValue(newValue)\n navigate(newValue)\n sessionStorage.setItem('modelType', newValue)\n newValue === '/launch_model/custom/llm'\n ? sessionStorage.setItem('subType', newValue)\n : ''\n }\n\n useEffect(() => {\n if (\n sessionStorage.getItem('auth') === 'true' &&\n !isValidBearerToken(sessionStorage.getItem('token')) &&\n !isValidBearerToken(cookie.token)\n ) {\n navigate('/login', { replace: true })\n }\n\n if (gpuAvailable === -1) {\n fetchWrapper\n .get('/v1/cluster/devices')\n .then((data) => setGPUAvailable(parseInt(data, 10)))\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 }\n }, [cookie.token])\n\n return (\n <Box m=\"20px\">\n <Title title={t('menu.launchModel')} />\n <ErrorMessageSnackBar />\n <SuccessMessageSnackBar />\n <TabContext value={value}>\n <Box sx={{ borderBottom: 1, borderColor: 'divider' }}>\n <TabList value={value} onChange={handleTabChange} aria-label=\"tabs\">\n <Tab label={t('model.languageModels')} value=\"/launch_model/llm\" />\n <Tab\n label={t('model.embeddingModels')}\n value=\"/launch_model/embedding\"\n />\n <Tab label={t('model.rerankModels')} value=\"/launch_model/rerank\" />\n <Tab label={t('model.imageModels')} value=\"/launch_model/image\" />\n <Tab label={t('model.audioModels')} value=\"/launch_model/audio\" />\n <Tab label={t('model.videoModels')} value=\"/launch_model/video\" />\n <Tab\n label={t('model.customModels')}\n value=\"/launch_model/custom/llm\"\n />\n </TabList>\n </Box>\n <TabPanel value=\"/launch_model/llm\" sx={{ padding: 0 }}>\n <LaunchModelComponent\n modelType={'LLM'}\n gpuAvailable={gpuAvailable}\n featureModels={\n featureModels.find((item) => item.type === 'llm').feature_models\n }\n />\n </TabPanel>\n <TabPanel value=\"/launch_model/embedding\" sx={{ padding: 0 }}>\n <LaunchModelComponent\n modelType={'embedding'}\n gpuAvailable={gpuAvailable}\n featureModels={\n featureModels.find((item) => item.type === 'embedding')\n .feature_models\n }\n />\n </TabPanel>\n <TabPanel value=\"/launch_model/rerank\" sx={{ padding: 0 }}>\n <LaunchModelComponent\n modelType={'rerank'}\n gpuAvailable={gpuAvailable}\n featureModels={\n featureModels.find((item) => item.type === 'rerank')\n .feature_models\n }\n />\n </TabPanel>\n <TabPanel value=\"/launch_model/image\" sx={{ padding: 0 }}>\n <LaunchModelComponent\n modelType={'image'}\n featureModels={\n featureModels.find((item) => item.type === 'image').feature_models\n }\n />\n </TabPanel>\n <TabPanel value=\"/launch_model/audio\" sx={{ padding: 0 }}>\n <LaunchModelComponent\n modelType={'audio'}\n featureModels={\n featureModels.find((item) => item.type === 'audio').feature_models\n }\n />\n </TabPanel>\n <TabPanel value=\"/launch_model/video\" sx={{ padding: 0 }}>\n <LaunchModelComponent\n modelType={'video'}\n featureModels={\n featureModels.find((item) => item.type === 'video').feature_models\n }\n />\n </TabPanel>\n <TabPanel value=\"/launch_model/custom/llm\" sx={{ padding: 0 }}>\n <LaunchCustom gpuAvailable={gpuAvailable} />\n </TabPanel>\n </TabContext>\n </Box>\n )\n}\n\nexport default LaunchModel\n"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
@@ -99,7 +99,8 @@
99
99
  "confirmDeleteCacheFiles": "Confirm deletion of cache files? This action is irreversible.",
100
100
  "commandLineTip": "Please confirm whether the model names are consistent.",
101
101
  "featured": "featured",
102
- "all": "all"
102
+ "all": "all",
103
+ "cancelledSuccessfully": "Cancelled Successfully!"
103
104
  },
104
105
 
105
106
  "runningModels": {
@@ -99,7 +99,8 @@
99
99
  "confirmDeleteCacheFiles": "确认删除缓存文件吗?此操作无法恢复。",
100
100
  "commandLineTip": "请确定模型名称是否一致。",
101
101
  "featured": "推荐",
102
- "all": "全部"
102
+ "all": "全部",
103
+ "cancelledSuccessfully": "取消成功!"
103
104
  },
104
105
 
105
106
  "runningModels": {
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: xinference
3
- Version: 1.4.1
3
+ Version: 1.5.0.post1
4
4
  Summary: Model Serving Made Easy
5
5
  Home-page: https://github.com/xorbitsai/inference
6
6
  Author: Qin Xuye
@@ -19,7 +19,7 @@ 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.4.4
22
+ Requires-Dist: xoscar>=0.6.1
23
23
  Requires-Dist: torch
24
24
  Requires-Dist: gradio
25
25
  Requires-Dist: pillow
@@ -31,9 +31,9 @@ Requires-Dist: pydantic
31
31
  Requires-Dist: fastapi>=0.110.3
32
32
  Requires-Dist: uvicorn
33
33
  Requires-Dist: huggingface-hub>=0.19.4
34
- Requires-Dist: typing-extensions
35
- Requires-Dist: modelscope>=1.10.0
36
- Requires-Dist: sse-starlette>=1.6.5
34
+ Requires-Dist: typing_extensions
35
+ Requires-Dist: modelscope>=1.19.0
36
+ Requires-Dist: sse_starlette>=1.6.5
37
37
  Requires-Dist: openai>=1.40.0
38
38
  Requires-Dist: python-jose[cryptography]
39
39
  Requires-Dist: passlib[bcrypt]
@@ -44,31 +44,62 @@ Requires-Dist: async-timeout
44
44
  Requires-Dist: peft
45
45
  Requires-Dist: timm
46
46
  Requires-Dist: setproctitle
47
+ Provides-Extra: dev
48
+ Requires-Dist: cython>=0.29; extra == "dev"
49
+ Requires-Dist: pytest>=3.5.0; extra == "dev"
50
+ Requires-Dist: pytest-cov>=2.5.0; extra == "dev"
51
+ Requires-Dist: pytest-timeout>=1.2.0; extra == "dev"
52
+ Requires-Dist: pytest-forked>=1.0; extra == "dev"
53
+ Requires-Dist: pytest-asyncio>=0.14.0; extra == "dev"
54
+ Requires-Dist: pytest-mock>=3.11.1; extra == "dev"
55
+ Requires-Dist: ipython>=6.5.0; extra == "dev"
56
+ Requires-Dist: sphinx>=3.0.0; extra == "dev"
57
+ Requires-Dist: pydata-sphinx-theme>=0.3.0; extra == "dev"
58
+ Requires-Dist: sphinx-intl>=0.9.9; extra == "dev"
59
+ Requires-Dist: jieba>=0.42.0; extra == "dev"
60
+ Requires-Dist: flake8>=3.8.0; extra == "dev"
61
+ Requires-Dist: black; extra == "dev"
62
+ Requires-Dist: openai>=1.40.0; extra == "dev"
63
+ Requires-Dist: langchain; extra == "dev"
64
+ Requires-Dist: langchain-community; extra == "dev"
65
+ Requires-Dist: orjson; extra == "dev"
66
+ Requires-Dist: sphinx-tabs; extra == "dev"
67
+ Requires-Dist: sphinx-design; extra == "dev"
47
68
  Provides-Extra: all
69
+ Requires-Dist: uv; extra == "all"
48
70
  Requires-Dist: llama-cpp-python!=0.2.58,>=0.2.25; extra == "all"
49
71
  Requires-Dist: xllamacpp; extra == "all"
50
72
  Requires-Dist: transformers>=4.46.0; extra == "all"
51
73
  Requires-Dist: torch>=2.0.0; extra == "all"
52
74
  Requires-Dist: accelerate>=0.28.0; extra == "all"
53
75
  Requires-Dist: sentencepiece; extra == "all"
54
- Requires-Dist: transformers-stream-generator; extra == "all"
76
+ Requires-Dist: transformers_stream_generator; extra == "all"
55
77
  Requires-Dist: bitsandbytes; extra == "all"
56
78
  Requires-Dist: protobuf; extra == "all"
57
79
  Requires-Dist: einops; extra == "all"
58
80
  Requires-Dist: tiktoken>=0.6.0; extra == "all"
59
81
  Requires-Dist: sentence-transformers>=3.1.0; extra == "all"
82
+ Requires-Dist: vllm>=0.2.6; sys_platform == "linux" and extra == "all"
60
83
  Requires-Dist: imageio-ffmpeg; extra == "all"
61
- Requires-Dist: controlnet-aux; extra == "all"
84
+ Requires-Dist: controlnet_aux; extra == "all"
62
85
  Requires-Dist: orjson; extra == "all"
63
86
  Requires-Dist: gptqmodel; extra == "all"
87
+ Requires-Dist: autoawq<0.2.6; sys_platform != "darwin" and extra == "all"
64
88
  Requires-Dist: optimum; extra == "all"
65
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"
66
95
  Requires-Dist: attrdict; extra == "all"
67
96
  Requires-Dist: timm>=0.9.16; extra == "all"
68
97
  Requires-Dist: torchvision; extra == "all"
69
98
  Requires-Dist: FlagEmbedding; extra == "all"
70
99
  Requires-Dist: funasr<1.1.17; extra == "all"
71
100
  Requires-Dist: omegaconf~=2.3.0; extra == "all"
101
+ Requires-Dist: nemo_text_processing<1.1.0; sys_platform == "linux" and extra == "all"
102
+ Requires-Dist: WeTextProcessing<1.0.4; sys_platform == "linux" and extra == "all"
72
103
  Requires-Dist: librosa; extra == "all"
73
104
  Requires-Dist: xxhash; extra == "all"
74
105
  Requires-Dist: torchaudio; extra == "all"
@@ -95,29 +126,86 @@ Requires-Dist: cachetools; extra == "all"
95
126
  Requires-Dist: silero-vad; extra == "all"
96
127
  Requires-Dist: vector-quantize-pytorch<=1.17.3,>=1.14.24; extra == "all"
97
128
  Requires-Dist: torchdiffeq; extra == "all"
98
- Requires-Dist: x-transformers>=1.31.14; extra == "all"
129
+ Requires-Dist: x_transformers>=1.31.14; extra == "all"
99
130
  Requires-Dist: pypinyin; extra == "all"
100
131
  Requires-Dist: tomli; extra == "all"
101
132
  Requires-Dist: vocos; extra == "all"
133
+ Requires-Dist: librosa; extra == "all"
102
134
  Requires-Dist: jieba; extra == "all"
103
135
  Requires-Dist: soundfile; extra == "all"
104
136
  Requires-Dist: qwen-vl-utils!=0.0.9; extra == "all"
105
- Requires-Dist: datamodel-code-generator; extra == "all"
137
+ Requires-Dist: qwen_omni_utils; extra == "all"
138
+ Requires-Dist: datamodel_code_generator; extra == "all"
106
139
  Requires-Dist: jsonschema; extra == "all"
107
140
  Requires-Dist: verovio>=4.3.1; extra == "all"
141
+ Requires-Dist: accelerate>=0.28.0; extra == "all"
108
142
  Requires-Dist: blobfile; extra == "all"
109
- Requires-Dist: autoawq<0.2.6; sys_platform != "darwin" and extra == "all"
110
- Requires-Dist: mlx-lm>=0.21.5; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
111
- Requires-Dist: mlx-vlm>=0.1.11; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
112
- Requires-Dist: mlx-whisper; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
113
- Requires-Dist: f5-tts-mlx; (sys_platform == "darwin" and platform_machine == "arm64") and extra == "all"
114
- Requires-Dist: vllm>=0.2.6; sys_platform == "linux" and extra == "all"
115
- Requires-Dist: sglang[srt]>=0.4.2.post4; sys_platform == "linux" and extra == "all"
116
- Requires-Dist: nemo-text-processing<1.1.0; sys_platform == "linux" and extra == "all"
117
- Requires-Dist: WeTextProcessing<1.0.4; sys_platform == "linux" and extra == "all"
143
+ Requires-Dist: langdetect; extra == "all"
144
+ Requires-Dist: pyloudnorm; extra == "all"
145
+ Provides-Extra: intel
146
+ Requires-Dist: torch==2.1.0a0; extra == "intel"
147
+ Requires-Dist: intel_extension_for_pytorch==2.1.10+xpu; extra == "intel"
148
+ Provides-Extra: llama-cpp
149
+ Requires-Dist: llama-cpp-python!=0.2.58,>=0.2.25; extra == "llama-cpp"
150
+ Requires-Dist: xllamacpp; extra == "llama-cpp"
151
+ Provides-Extra: transformers
152
+ Requires-Dist: transformers>=4.46.0; extra == "transformers"
153
+ Requires-Dist: torch; extra == "transformers"
154
+ Requires-Dist: accelerate>=0.28.0; extra == "transformers"
155
+ Requires-Dist: sentencepiece; extra == "transformers"
156
+ Requires-Dist: transformers_stream_generator; extra == "transformers"
157
+ Requires-Dist: bitsandbytes; sys_platform == "linux" and extra == "transformers"
158
+ Requires-Dist: protobuf; extra == "transformers"
159
+ Requires-Dist: einops; extra == "transformers"
160
+ 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
+ Requires-Dist: optimum; extra == "transformers"
164
+ Requires-Dist: attrdict; extra == "transformers"
165
+ Requires-Dist: timm>=0.9.16; extra == "transformers"
166
+ Requires-Dist: torchvision; extra == "transformers"
167
+ Requires-Dist: peft; extra == "transformers"
168
+ Requires-Dist: eva-decord; extra == "transformers"
169
+ Requires-Dist: jj-pytorchvideo; extra == "transformers"
170
+ Requires-Dist: qwen-vl-utils!=0.0.9; extra == "transformers"
171
+ Requires-Dist: qwen_omni_utils; extra == "transformers"
172
+ Requires-Dist: datamodel_code_generator; extra == "transformers"
173
+ Requires-Dist: jsonschema; extra == "transformers"
174
+ Requires-Dist: blobfile; extra == "transformers"
175
+ Provides-Extra: vllm
176
+ Requires-Dist: vllm>=0.2.6; extra == "vllm"
177
+ Provides-Extra: sglang
178
+ Requires-Dist: sglang[srt]>=0.4.2.post4; sys_platform == "linux" and extra == "sglang"
179
+ Provides-Extra: mlx
180
+ Requires-Dist: mlx-lm>=0.21.5; extra == "mlx"
181
+ Requires-Dist: mlx-vlm>=0.1.11; extra == "mlx"
182
+ Requires-Dist: mlx-whisper; extra == "mlx"
183
+ Requires-Dist: f5-tts-mlx; extra == "mlx"
184
+ Requires-Dist: qwen_vl_utils!=0.0.9; extra == "mlx"
185
+ Requires-Dist: tomli; extra == "mlx"
186
+ Provides-Extra: embedding
187
+ Requires-Dist: sentence-transformers>=3.1.0; extra == "embedding"
188
+ Provides-Extra: rerank
189
+ Requires-Dist: FlagEmbedding; extra == "rerank"
190
+ Provides-Extra: image
191
+ Requires-Dist: diffusers>=0.32.0; extra == "image"
192
+ Requires-Dist: controlnet_aux; extra == "image"
193
+ Requires-Dist: deepcache; extra == "image"
194
+ Requires-Dist: gguf; extra == "image"
195
+ Requires-Dist: verovio>=4.3.1; extra == "image"
196
+ Requires-Dist: transformers>=4.37.2; extra == "image"
197
+ Requires-Dist: tiktoken>=0.6.0; extra == "image"
198
+ Requires-Dist: accelerate>=0.28.0; extra == "image"
199
+ Requires-Dist: torch; extra == "image"
200
+ Requires-Dist: torchvision; extra == "image"
201
+ Provides-Extra: video
202
+ Requires-Dist: diffusers>=0.32.0; extra == "video"
203
+ Requires-Dist: imageio-ffmpeg; extra == "video"
118
204
  Provides-Extra: audio
119
205
  Requires-Dist: funasr<1.1.17; extra == "audio"
120
206
  Requires-Dist: omegaconf~=2.3.0; extra == "audio"
207
+ Requires-Dist: nemo_text_processing<1.1.0; sys_platform == "linux" and extra == "audio"
208
+ Requires-Dist: WeTextProcessing<1.0.4; sys_platform == "linux" and extra == "audio"
121
209
  Requires-Dist: librosa; extra == "audio"
122
210
  Requires-Dist: xxhash; extra == "audio"
123
211
  Requires-Dist: torchaudio; extra == "audio"
@@ -141,49 +229,27 @@ Requires-Dist: cachetools; extra == "audio"
141
229
  Requires-Dist: silero-vad; extra == "audio"
142
230
  Requires-Dist: vector-quantize-pytorch<=1.17.3,>=1.14.24; extra == "audio"
143
231
  Requires-Dist: torchdiffeq; extra == "audio"
144
- Requires-Dist: x-transformers>=1.31.14; extra == "audio"
232
+ Requires-Dist: x_transformers>=1.31.14; extra == "audio"
145
233
  Requires-Dist: pypinyin; extra == "audio"
146
234
  Requires-Dist: tomli; extra == "audio"
147
235
  Requires-Dist: vocos; extra == "audio"
236
+ Requires-Dist: librosa; extra == "audio"
148
237
  Requires-Dist: jieba; extra == "audio"
149
238
  Requires-Dist: soundfile; extra == "audio"
150
- Requires-Dist: cached-path; extra == "audio"
239
+ Requires-Dist: cached_path; extra == "audio"
151
240
  Requires-Dist: unidic-lite; extra == "audio"
152
241
  Requires-Dist: cn2an; extra == "audio"
153
242
  Requires-Dist: mecab-python3; extra == "audio"
154
243
  Requires-Dist: num2words; extra == "audio"
155
244
  Requires-Dist: pykakasi; extra == "audio"
156
245
  Requires-Dist: fugashi; extra == "audio"
157
- Requires-Dist: g2p-en; extra == "audio"
246
+ Requires-Dist: g2p_en; extra == "audio"
158
247
  Requires-Dist: anyascii; extra == "audio"
159
248
  Requires-Dist: gruut[de,es,fr]; extra == "audio"
160
249
  Requires-Dist: kokoro>=0.7.15; extra == "audio"
161
250
  Requires-Dist: misaki[en,ja,zh]>=0.7.15; extra == "audio"
162
- Requires-Dist: nemo-text-processing<1.1.0; sys_platform == "linux" and extra == "audio"
163
- Requires-Dist: WeTextProcessing<1.0.4; sys_platform == "linux" and extra == "audio"
164
- Provides-Extra: benchmark
165
- Requires-Dist: psutil; extra == "benchmark"
166
- Provides-Extra: dev
167
- Requires-Dist: cython>=0.29; extra == "dev"
168
- Requires-Dist: pytest>=3.5.0; extra == "dev"
169
- Requires-Dist: pytest-cov>=2.5.0; extra == "dev"
170
- Requires-Dist: pytest-timeout>=1.2.0; extra == "dev"
171
- Requires-Dist: pytest-forked>=1.0; extra == "dev"
172
- Requires-Dist: pytest-asyncio>=0.14.0; extra == "dev"
173
- Requires-Dist: pytest-mock>=3.11.1; extra == "dev"
174
- Requires-Dist: ipython>=6.5.0; extra == "dev"
175
- Requires-Dist: sphinx>=3.0.0; extra == "dev"
176
- Requires-Dist: pydata-sphinx-theme>=0.3.0; extra == "dev"
177
- Requires-Dist: sphinx-intl>=0.9.9; extra == "dev"
178
- Requires-Dist: jieba>=0.42.0; extra == "dev"
179
- Requires-Dist: flake8>=3.8.0; extra == "dev"
180
- Requires-Dist: black; extra == "dev"
181
- Requires-Dist: openai>=1.40.0; extra == "dev"
182
- Requires-Dist: langchain; extra == "dev"
183
- Requires-Dist: langchain-community; extra == "dev"
184
- Requires-Dist: orjson; extra == "dev"
185
- Requires-Dist: sphinx-tabs; extra == "dev"
186
- Requires-Dist: sphinx-design; extra == "dev"
251
+ Requires-Dist: langdetect; extra == "audio"
252
+ Requires-Dist: pyloudnorm; extra == "audio"
187
253
  Provides-Extra: doc
188
254
  Requires-Dist: ipython>=6.5.0; extra == "doc"
189
255
  Requires-Dist: sphinx>=3.0.0; extra == "doc"
@@ -191,66 +257,15 @@ Requires-Dist: pydata-sphinx-theme>=0.3.0; extra == "doc"
191
257
  Requires-Dist: sphinx-intl>=0.9.9; extra == "doc"
192
258
  Requires-Dist: sphinx-tabs; extra == "doc"
193
259
  Requires-Dist: sphinx-design; extra == "doc"
194
- Requires-Dist: prometheus-client; extra == "doc"
260
+ Requires-Dist: prometheus_client; extra == "doc"
195
261
  Requires-Dist: timm; extra == "doc"
196
- Provides-Extra: embedding
197
- Requires-Dist: sentence-transformers>=3.1.0; extra == "embedding"
198
- Provides-Extra: image
199
- Requires-Dist: diffusers>=0.32.0; extra == "image"
200
- Requires-Dist: controlnet-aux; extra == "image"
201
- Requires-Dist: deepcache; extra == "image"
202
- Requires-Dist: gguf; extra == "image"
203
- Requires-Dist: verovio>=4.3.1; extra == "image"
204
- Requires-Dist: transformers>=4.37.2; extra == "image"
205
- Requires-Dist: tiktoken>=0.6.0; extra == "image"
206
- Requires-Dist: accelerate>=0.28.0; extra == "image"
207
- Requires-Dist: torch; extra == "image"
208
- Requires-Dist: torchvision; extra == "image"
209
- Provides-Extra: intel
210
- Requires-Dist: torch==2.1.0a0; extra == "intel"
211
- Requires-Dist: intel-extension-for-pytorch==2.1.10+xpu; extra == "intel"
212
- Provides-Extra: llama_cpp
213
- Requires-Dist: llama-cpp-python!=0.2.58,>=0.2.25; extra == "llama-cpp"
214
- Requires-Dist: xllamacpp; extra == "llama-cpp"
215
- Provides-Extra: mlx
216
- Requires-Dist: mlx-lm>=0.21.5; extra == "mlx"
217
- Requires-Dist: mlx-vlm>=0.1.11; extra == "mlx"
218
- Requires-Dist: mlx-whisper; extra == "mlx"
219
- Requires-Dist: f5-tts-mlx; extra == "mlx"
220
- Requires-Dist: qwen-vl-utils!=0.0.9; extra == "mlx"
221
- Requires-Dist: tomli; extra == "mlx"
222
- Provides-Extra: rerank
223
- Requires-Dist: FlagEmbedding; extra == "rerank"
224
- Provides-Extra: sglang
225
- Requires-Dist: sglang[srt]>=0.4.2.post4; sys_platform == "linux" and extra == "sglang"
226
- Provides-Extra: transformers
227
- Requires-Dist: transformers>=4.46.0; extra == "transformers"
228
- Requires-Dist: torch; extra == "transformers"
229
- Requires-Dist: accelerate>=0.28.0; extra == "transformers"
230
- Requires-Dist: sentencepiece; extra == "transformers"
231
- Requires-Dist: transformers-stream-generator; extra == "transformers"
232
- Requires-Dist: protobuf; extra == "transformers"
233
- Requires-Dist: einops; extra == "transformers"
234
- Requires-Dist: tiktoken; extra == "transformers"
235
- Requires-Dist: gptqmodel; extra == "transformers"
236
- Requires-Dist: optimum; extra == "transformers"
237
- Requires-Dist: attrdict; extra == "transformers"
238
- Requires-Dist: timm>=0.9.16; extra == "transformers"
239
- Requires-Dist: torchvision; extra == "transformers"
240
- Requires-Dist: peft; extra == "transformers"
241
- Requires-Dist: eva-decord; extra == "transformers"
242
- Requires-Dist: jj-pytorchvideo; extra == "transformers"
243
- Requires-Dist: qwen-vl-utils!=0.0.9; extra == "transformers"
244
- Requires-Dist: datamodel-code-generator; extra == "transformers"
245
- Requires-Dist: jsonschema; extra == "transformers"
246
- Requires-Dist: blobfile; extra == "transformers"
247
- Requires-Dist: autoawq<0.2.6; sys_platform != "darwin" and extra == "transformers"
248
- Requires-Dist: bitsandbytes; sys_platform == "linux" and extra == "transformers"
249
- Provides-Extra: video
250
- Requires-Dist: diffusers>=0.32.0; extra == "video"
251
- Requires-Dist: imageio-ffmpeg; extra == "video"
252
- Provides-Extra: vllm
253
- Requires-Dist: vllm>=0.2.6; extra == "vllm"
262
+ Provides-Extra: benchmark
263
+ Requires-Dist: psutil; extra == "benchmark"
264
+ Provides-Extra: virtualenv
265
+ Requires-Dist: uv; extra == "virtualenv"
266
+ Dynamic: description
267
+ Dynamic: description-content-type
268
+ Dynamic: license-file
254
269
 
255
270
  <div align="center">
256
271
  <img src="./assets/xorbits-logo.png" width="180px" alt="xorbits" />
@@ -301,14 +316,14 @@ potential of cutting-edge AI models.
301
316
  - Support SGLang backend: [#1161](https://github.com/xorbitsai/inference/pull/1161)
302
317
  - Support LoRA for LLM and image models: [#1080](https://github.com/xorbitsai/inference/pull/1080)
303
318
  ### New Models
304
- - Built-in support for [Gemma-3-it](https://blog.google/technology/developers/gemma-3/): [#3077](https://github.com/xorbitsai/inference/pull/3077)
305
- - Built-in support for [QwQ-32B](https://qwenlm.github.io/blog/qwq-32b/): [#3005](https://github.com/xorbitsai/inference/pull/3005)
306
- - Built-in support for [DeepSeek V3 and R1](https://github.com/deepseek-ai/DeepSeek-R1): [#2864](https://github.com/xorbitsai/inference/pull/2864)
307
- - Built-in support for [InternVL2.5](https://internvl.github.io/blog/2024-12-05-InternVL-2.5/): [#2776](https://github.com/xorbitsai/inference/pull/2776)
308
- - Built-in support for [DeepSeek-R1-Distill-Llama](https://github.com/deepseek-ai/DeepSeek-R1?tab=readme-ov-file#deepseek-r1-distill-models): [#2811](https://github.com/xorbitsai/inference/pull/2811)
309
- - Built-in support for [DeepSeek-R1-Distill-Qwen](https://github.com/deepseek-ai/DeepSeek-R1?tab=readme-ov-file#deepseek-r1-distill-models): [#2781](https://github.com/xorbitsai/inference/pull/2781)
310
- - Built-in support for [Kokoro-82M](https://huggingface.co/hexgrad/Kokoro-82M): [#2790](https://github.com/xorbitsai/inference/pull/2790)
311
- - Built-in support for [qwen2.5-vl](https://github.com/QwenLM/Qwen2.5-VL): [#2788](https://github.com/xorbitsai/inference/pull/2788)
319
+ - Built-in support for [Qwen2.5-Omni](https://github.com/QwenLM/Qwen2.5-Omni): [#3279](https://github.com/xorbitsai/inference/pull/3279)
320
+ - Built-in support for [Skywork-OR1](https://github.com/SkyworkAI/Skywork-OR1): [#3274](https://github.com/xorbitsai/inference/pull/3274)
321
+ - Built-in support for [GLM-4-0414](https://github.com/THUDM/GLM-4): [#3251](https://github.com/xorbitsai/inference/pull/3251)
322
+ - Built-in support for [SeaLLMs-v3](https://github.com/DAMO-NLP-SG/DAMO-SeaLLMs): [#3248](https://github.com/xorbitsai/inference/pull/3248)
323
+ - Built-in support for [paraformer-zh](https://huggingface.co/funasr/paraformer-zh): [#3236](https://github.com/xorbitsai/inference/pull/3236)
324
+ - 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
+ - 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)
312
327
  ### Integrations
313
328
  - [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.
314
329
  - [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.