-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
105 lines (93 loc) · 1.75 KB
/
pyproject.toml
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "uniteai"
version = "0.3.0"
description = "AI, Inside your Editor."
readme = "README.md"
license = "Apache-2.0"
authors = [{ name = "Josh Freckleton"}]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
requires-python = ">=3.7"
dependencies = [
"pygls",
"Thespian",
"PyYAML",
"requests",
]
[project.optional-dependencies]
local_llm = [
"accelerate",
"bitsandbytes",
"einops",
"fastapi",
"scipy",
"transformers",
"llama-cpp-python",
"uvicorn",
"sentencepiece",
"autoawq"
]
openai = ["openai"]
transcription = [
"PyAudio",
"SpeechRecognition",
"openai-whisper",
"soundfile",
]
speech_to_text = [
"TTS",
"sounddevice",
]
document_chat = [
"GitPython",
"nbformat",
"youtube-transcript-api",
"InstructorEmbedding",
"sentence-transformers",
"pypdf",
"beautifulsoup4",
"pandas"
]
all = [
"accelerate",
"bitsandbytes",
"einops",
"fastapi",
"scipy",
"transformers",
"llama-cpp-python",
"uvicorn",
"sentencepiece",
"openai",
"PyAudio",
"SpeechRecognition",
"openai-whisper",
"soundfile",
"GitPython",
"nbformat",
"youtube-transcript-api",
"InstructorEmbedding",
"sentence-transformers",
"pypdf",
"beautifulsoup4",
"pandas"
]
[tool.hatch.build.targets.sdist]
include = [
"/uniteai",
]
[tool.hatch.build.targets.wheel.force-include]
".uniteai.yml.example" = ".uniteai.yml.example"
[project.scripts]
uniteai_lsp = "uniteai.lsp_server:main"
uniteai_llm = "uniteai.llm_server:main"
[project.urls]
"Homepage" = "https://github.com/freckletonj/uniteai"
"Bug Tracker" = "https://github.com/freckletonj/uniteai/issues"
[tool.pip]
extra-index-url = "..."