forked from szczyglis-dev/py-gpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
97 lines (93 loc) · 3.18 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
[tool.poetry]
name = "odaia"
version = "2.3.6"
description = "Orpheus Desktop AI Assistant powered by GPT-4, GPT-4o, GPT-4V, GPT-3.5, DALL-E 3, Llama 3, Mistral, Gemini, Claude, Langchain LLMs, Llama-index, Whisper with chatbot, assistant, text completion, vision and image generation, internet access, chat with files, commands and code execution, file upload and download, and more."
authors = ["Jean Guillaume Isabelle <info@jgwill.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/jgwill/odaia"
repository = "https://github.com/jgwill/odaia"
documentation = "https://pygpt.readthedocs.io/"
keywords = ["py_gpt", "py-gpt", "pygpt", "desktop", "app", "gpt", "gpt4", "gpt4-o", "gpt4-v", "gpt3.5", "gpt-4", "gpt-4V", "gpt-3.5", "llama3", "mistral", "gemini", "claude", "tts", "whisper", "vision", "chatgpt", "dall-e", "chat",
"chatbot", "assistant", "text completion", "image generation", "ai", "api", "openai", "api key", "langchain", "llama-index", "presets", "ui", "qt", "pyside"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
packages = [
{ from = "src", include = "pygpt_net" },
]
include = [
"CHANGELOG.md",
"icon.png",
"README.md",
]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
beautifulsoup4 = "^4.12.3"
chromadb = "^0.4.23"
croniter = "^2.0.1"
docker = "^7.0.0"
docx2txt = "^0.8"
EbookLib = "^0.18"
langchain = "^0.2.14"
langchain-community = "^0.2.12"
langchain-experimental = "^0.0.64"
langchain-openai = "^0.1.22"
llama-index = "^0.10.65"
llama-index-core = "0.10.67"
llama-index-embeddings-azure-openai = "^0.1.6"
llama-index-embeddings-openai = "^0.1.6"
llama-index-embeddings-ollama = "^0.2.0"
llama-index-llms-anthropic = "^0.1.17"
llama-index-llms-openai = "0.1.29"
llama-index-llms-azure-openai = "^0.1.10"
llama-index-llms-gemini = "^0.2.0"
llama-index-llms-ollama = "^0.2.2"
llama-index-vector-stores-chroma = "^0.1.4"
llama-index-vector-stores-elasticsearch = "^0.1.4"
llama-index-vector-stores-pinecone = "^0.1.3"
llama-index-vector-stores-redis = "^0.1.2"
llama-index-readers-chatgpt-plugin = "^0.1.3"
llama-index-readers-database = "^0.1.4"
llama-index-readers-file = "^0.1.33"
llama-index-readers-github = "^0.1.9"
llama-index-readers-google = "^0.2.11"
llama-index-readers-microsoft-onedrive = "^0.1.9"
llama-index-readers-twitter = "^0.1.3"
llama-index-readers-web = "^0.1.23"
Markdown = "^3.7"
nbconvert = "^7.16.1"
openai = ">=1.41.0,<1.50.0"
opencv-python = "^4.9.0.80"
packaging = "^23.2"
pandas = "^2.2.0"
pillow = "^10.2.0"
pinecone-client = "^3.1.0"
PyAudio = "^0.2.14"
Pygments = "^2.18.0"
pydub = "^0.25.1"
pygame = "^2.5.2"
pypdf = "^4.0.2"
pyserial = "^3.5"
PySide6 = "6.4.2"
PySide6-Addons = "6.4.2"
PySide6-Essentials = "6.4.2"
redis = "^5.0.1"
qt-material = "^2.14"
SpeechRecognition = "^3.10.1"
show-in-file-manager = "^1.1.4"
SQLAlchemy = "^2.0.27"
tiktoken = "^0.7.0"
wikipedia = "^1.4.0"
youtube-transcript-api = "^0.6.2"
[tool.poetry.group.dev.dependencies]
pyinstaller = "^6.4.0"
pytest = "^7.4.3"
[tool.poetry.scripts]
odaiaapp = 'pygpt_net.app:run'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"