We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fdf9d1 commit 4682976Copy full SHA for 4682976
setup.py
@@ -4,6 +4,7 @@
4
name="optillm",
5
version="0.0.1",
6
packages=find_packages(),
7
+ py_modules=['optillm'],
8
install_requires=[
9
"numpy",
10
"networkx",
@@ -27,6 +28,11 @@
27
28
"ipython",
29
"ipykernel",
30
],
31
+ entry_points={
32
+ 'console_scripts': [
33
+ 'optillm=optillm:main', # Points directly to the main function in optillm.py
34
+ ],
35
+ },
36
author="codelion",
37
author_email="codelion@okyasoft.com",
38
description="An optimizing inference proxy for LLMs.",
0 commit comments