-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
84 lines (63 loc) · 1.89 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
from setuptools import setup, find_packages
setup(
name='vital-llm-reasoner',
version='0.0.6',
author='Marc Hadfield',
author_email='[email protected]',
description='Vital LLM Reasoner',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/vital-ai/vital-llm-reasoner',
packages=find_packages(exclude=["test", "test_data"]),
license='Apache License 2.0',
install_requires=[
# 'pygame', # user for local test
'lark',
'langchain-openai==0.2.1',
'openai==1.52.0',
'langchain==0.3.9',
'langchain_openai',
'langchain_core',
'pyahocorasick>=2.1.0',
'numpy>=1.21.0',
'torch',
'transformers',
'sentencepiece',
'tqdm',
'nltk',
'bs4',
'pdfplumber',
'scrapy',
'scrapy-playwright',
'playwright',
'markitdown',
'black',
'google-search-results>=2.4.2',
'requests',
'vital-logic>=0.1.0',
'vital-ai-vitalsigns>=0.1.27',
'vital-ai-domain>=0.1.4',
'pyyaml',
'vital-ai-haley-kg>=0.1.24',
'kgraphservice>=0.0.6',
# 'pandas>=2.2.3',
# 'scikit-learn>=1.6.0',
'sentence_transformers>=3.3.1',
# remove this, update Orchestrator
'llama-cpp-python>=0.2.20'
],
extras_require={
"llamacpp": [
'llama-cpp-python>=0.2.20',
],
"vllm": [
'vllm>=0.7.0',
]
},
classifiers=[
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.11',
)