File size: 457 Bytes
493f80f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from setuptools import setup, find_packages
setup(
name="telechat3_vllm_patch",
version="1.1.0",
packages=find_packages(
include=["telechat3_tool_parser.py", "telechat3_reasoning.py"]
),
entry_points={
"vllm.general_plugins": [
"telechat3_tool_parser = telechat3_tool_parser:register_tool_parser",
"telechat3_reasoning = telechat3_reasoning:register_reasoning",
]
},
)
|