forked from athina-ai/athina-evals
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (30 loc) · 879 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
[tool.poetry]
name = "athina"
version = "1.2.1"
description = "Python SDK to configure and run evaluations for your LLM-based application"
authors = ["Shiv Sakhuja <[email protected]>", "Akshat Gupta <[email protected]>", "Vivek Aditya <[email protected]>", "Akhil Bisht <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
retrying = "^1.3.4"
timeout-decorator = "^0.5.0"
openai = "^1.3.4"
colorlog = "^6.7.0"
pyyaml = "^6.0.1"
ragas = "^0.0.22"
pandas = "*"
langchain = ">=0.0.350"
datasets = "^2.16.0"
python-dotenv = "^1.0.0"
requests = "^2.31.0"
langchain-openai = "^0.0.3"
llama-index = "^0.9.40"
[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"