-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
36 lines (33 loc) · 948 Bytes
/
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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cogsgpt"
version = "1.0.2"
description = "A multi-modal LLM integrated ChatGPT with Azure Cognitive Service"
readme = "README.md"
authors = [{ name = "weitian", email = "weitian.bnu@gmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["chatgpt", "cognitive service", "llm"]
dependencies = [
"azure-ai-vision",
"azure-cognitiveservices-vision-computervision",
"azure-ai-formrecognizer",
"azure-ai-textanalytics==5.3.0b1",
"azure-cognitiveservices-speech",
"colorlog",
"jinja2",
"langchain",
"openai",
"pillow",
"tiktoken",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/whiskyboy/cogsgpt"