-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (37 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
55 lines (37 loc) · 1.12 KB
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
[tool.poetry]
name = "quotientai"
version = "0.4.17"
authors = [
"Freddie Vargus <freddie@quotientai.co>",
"Michael Goitia Sarmiento <mike@quotientai.co>"
]
description = "Python library for tracing, logging, and detecting problems with AI Agents"
readme = "README.md"
keywords = ["quotient", "evaluation", "llms", "machine learning", "ai", "logging", "tracing", "hallucinations"]
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
[tool.poetry.dependencies]
python = "^3.9"
typer = ">=0.16.0"
rich = "^13.7.0"
click = "^8.1.7"
httpx = ">=0.27.0"
tenacity = ">=9.0.0"
pyjwt = "^2.10.1"
pydantic = ">=2.10.6"
opentelemetry-exporter-otlp = "^1.34.0"
opentelemetry-sdk = "^1.34.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-asyncio = "^0.25.3"
pytest-cov = "^5.0.0"
pytest-mock = "^3.14.0"
pre-commit = "^3.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
quotient = "quotientai.cli.entrypoint:app"