-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 956 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
37
38
39
40
41
42
43
[tool.poetry]
name = "ada-python"
version = "0.5.0"
description = "Ada, making LLMs easier to work with."
authors = ["Will Beebe"]
packages = [
{include = "abcs", from="src"},
{include = "agents", from="src"},
{include = "tools", from="src"},
{include = "storage", from="src"},
# {include = "metrics", from="src"},
{include = "data", from="."}
]
[tool.poetry.dependencies]
python = "^3.11"
pydantic = "^2.7.0"
openai = "^1.35.3"
anthropic = "^0.29.0"
requests = "^2.31.0"
cohere = "^5.5.8"
websocket = "^0.2.1"
groq = "^0.9.0"
yfinance = "^0.2.38"
openai-multi-tool-use-parallel-patch = "^0.2.0"
ollama = "^0.2.1"
neo4j = "^5.22.0"
google-generativeai = "^0.7.2"
[tool.poetry.dev-dependencies]
pytest = "^8.1.1"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
select = ["E", "F", "W", "I001"]
ignore = ["E501", "F541"]
fixable = ["W", "I001"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"