-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
50 lines (46 loc) · 1.39 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
[tool.poetry]
name = "graphsignal"
version = "0.15.6"
description = "Graphsignal Tracer for Python"
authors = ["Graphsignal, Inc. <devops@graphsignal.com>"]
license = "Apache-2.0"
homepage = "https://graphsignal.com"
repository = "https://graphsignal.com"
readme = "README.md"
keywords = ["LLM observability", "LLM analytics", "Agent observability", "Agent analytics"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: System :: Monitoring",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
urllib3 = ">=1.25.3,<2.1.0"
python-dateutil = "*"
pydantic = ">2"
typing-extensions = ">4.7.1"
[tool.poetry.dev-dependencies]
torch = "*"
openai = "*"
tiktoken = "*"
langchain = "*"
langchainhub = "*"
numexpr = "*"
llama_index = "*"
nltk = "*"
langchain-community = "*"
llama-index-llms-langchain = "*"
[tool.poetry.scripts]
update-client = "tools.update_client:main"
test = "tools.run_tests:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"