-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (38 loc) · 1.64 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
from setuptools import find_packages, setup
setup(
name="mindcraft",
version="0.2.4",
packages=find_packages(),
package_data={p: ["*"] for p in find_packages()},
url="https://github.com/josejuanmartinez/mindcraft",
download_url="https://github.com/josejuanmartinez/mindcraft",
license="MIT",
install_requires=[
"transformers==4.36.2",
"sentence_transformers==2.2.2",
"autoawq==0.1.8",
"requests~=2.31.0",
"torch==2.1.2"
],
python_requires=">=3.10.0",
author="Juan.Martinez",
author_email="[email protected]",
description="Mindcraft: an LLM-based engine for creating real NPCs. Empowered by Hugging Face, quantized LLMs with "
"AWQ (thanks @TheBloke) and vLLM. It follows a RAG approach with chunk or sentence splitting, and a "
"vector store. Right now, ChromaDB is the supported Vector Store and chunk splitting using `tiktoken` "
"or sentence splitting using `spacy` are available.",
keywords=["nlp", "llm", "npc", "conversations", "videogames"],
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Environment :: GPU :: NVIDIA CUDA :: 12 :: 12.1',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Games/Entertainment'
]
)