-
Notifications
You must be signed in to change notification settings - Fork 78
/
pyproject.toml
42 lines (37 loc) · 999 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
[tool.poetry]
name = "openbb-agents"
version = "0.0.4"
description = "LLMs X OpenBB Platform"
authors = ["Michael Struwig <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
jupyterlab = "^4.0.9"
sentence-transformers = "^2.2.2"
tiktoken = "^0.5.1"
faiss-cpu = "^1.7.4"
magentic = {extras = ["anthropic", "litellm"], version = "^0.24.0"}
pydantic = "2.7.1"
openbb = "4.1.7"
langchain = "^0.1.17"
langchain-community = "^0.0.37"
langchain-openai = "^0.1.6"
openbb-yfinance = "^1.1.5"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.5.0"
pytest = "^7.4.3"
pytest-asyncio = "^0.23.6"
pytest-xdist = "^3.6.1"
ruff = ">=0.1.6"
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"B", # flake8-bugbear
"I", # isort
]
[tool.pytest.ini_options]
addopts = "--pdbcls=IPython.terminal.debugger:TerminalPdb" # use ipdb instead of pdb
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"