-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 796 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (30 loc) · 796 Bytes
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
[tool.poetry]
name = "tovana"
version = "0.0.8"
description = "Memory management system to enhance AI agents with personalized, context-aware responses"
authors = ["Assaf Elovic <assaf.elovic@gmail.com>", "Eden Marco <emarco177@gmail.com>"]
exclude = [
"notebooks",
]
license = "Apache License 2.0"
readme = "README.md"
packages = [
{ include = "gptmem" },
]
[tool.poetry.dependencies]
python = "^3.10"
langchain = "^0.2.14"
langchain-openai = "^0.1.22"
aiofiles = "^24.1.0"
langgraph = "^0.2.14"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
isort = "^5.13.2"
pytest-xdist = "^3.6.1"
python-dotenv = "^1.0.1"
black = "^24.8.0"
langchain-anthropic = "^0.1.23"
langchain-mistralai = "^0.1.12"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"