forked from mem0ai/mem0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 836 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 = "mem0ai"
version = "0.0.6"
description = "Long-term memory for AI Agents"
authors = ["Deshraj Yadav <[email protected]>", "Taranjeet Singh <[email protected]>"]
exclude = [
"db",
"configs",
"notebooks",
"embedchain",
]
packages = [
{ include = "mem0" },
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
qdrant-client = "^1.9.1"
pydantic = "^2.7.3"
openai = "^1.33.0"
posthog = "^3.5.0"
groq = "^0.9.0"
together = "^1.2.1"
boto3 = "^1.34.144"
litellm = "^1.41.24"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
[tool.poetry.group.dev.dependencies]
ruff = "^0.4.8"
isort = "^5.13.2"
pytest = "^8.2.2"
ipykernel = "^6.29.5"
[tool.poetry.group.optional.dependencies]
ollama = "^0.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"