-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
55 lines (50 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
51
52
53
54
55
[tool.poetry]
name = "athina"
version = "1.7.11"
description = "Python SDK to configure and run evaluations for your LLM-based application"
authors = ["Shiv Sakhuja <shiv@athina.ai>", "Akshat Gupta <akshat@athina.ai>", "Vivek Aditya <vivek@athina.ai>", "Akhil Bisht <akhil@athina.ai>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
retrying = "^1.3.4"
timeout-decorator = "^0.5.0"
tiktoken = "^0.8.0"
openai = "^1.3.4"
colorlog = "^6.7.0"
pyyaml = "^6.0.1"
ragas = "^0.2.8"
pandas = "*"
datasets = "^2.16.0"
python-dotenv = "^1.0.0"
requests = "^2.31.0"
litellm = "1.59.6"
jinja2 = "^3.1.4"
pinecone-client = "^4.1.0"
qdrant-client = "^1.9.1"
marvin = "^2.3.4"
pydantic = "^2.6.3"
pydantic-settings = "^2.2.1"
pydantic_core = "^2.16.3"
tokenizers = ">=0.19,<0.20"
jsonschema = "^4.22.0"
jsonpath-ng = "^1.6.0"
RestrictedPython = "^7.1"
bandit = "^1.7.8"
weaviate-client = "^4.7.1"
editdistance = "^0.8.1"
textdistance = "^4.6.3"
textstat = "^0.7.4"
chromadb-client = "^0.5.20"
llama-index = "^0.11.0"
llama-index-vector-stores-pinecone = "^0.3.1"
llama-index-vector-stores-qdrant = "^0.3.0"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.27.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.packages]]
include = "athina/**/*"
[tool.poetry.scripts]
athina = "athina.cli.cli:main"
install_guardrails = "athina.scripts.guardrails:install"