L0SG's picture
Upload Nemotron-Labs-Audex-2B
5e79b62 verified
Raw
History Blame Contribute Delete
713 Bytes
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "audex-2b-vllm-plugin"
version = "0.0.1"
description = "Out-of-tree Audex-2B audio-understanding model and processor for vLLM 0.20."
requires-python = ">=3.10"
# Registers the Audex-2B model in every vLLM process (engine core + TP workers)
# via vLLM's general-plugin mechanism. The dense backbone is registered by the
# separate nemotron-dense-vllm plugin. The import package is `audex_2b_vllm`
# (distinct from the 30B `audex_30b_a3b_vllm`) so both can be co-installed.
[project.entry-points."vllm.general_plugins"]
audex_2b = "audex_2b_vllm.plugin:register"
[tool.setuptools]
packages = ["audex_2b_vllm"]