-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
62 lines (56 loc) · 1.28 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[project]
name = "agents-memory"
version = "0.1.0"
description = "Plug-and-play memory for agents — proposition extraction, entity-filtered retrieval, hybrid search"
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [{name = "MIH AI B.V."}]
requires-python = ">=3.11"
dependencies = [
"hindsight-client>=0.4.13",
"numpy>=2.4.2",
"openai>=1.0.0",
"python-dotenv>=1.2.1",
"tqdm>=4.67.3",
]
[project.optional-dependencies]
benchmark = [
"pandas>=2.0.0",
"numpy>=1.24.0",
"simplemem>=0.1.0",
"python-dotenv>=1.0.0",
"memu-py>=1.3.0; python_version >= '3.13'",
"mem0ai>=0.1.0",
"httpx>=0.27.0",
"tqdm>=4.66.0",
"graphiti-core[kuzu]>=0.5",
"matplotlib>=3.10.8",
"huggingface_hub>=0.20.0",
]
dev = [
"pytest>=7.0.0",
"ruff>=0.15.0",
"mypy>=1.0.0",
]
training = [
"torch>=2.0.0",
"transformers>=4.45.0",
"trl>=0.12.0",
"peft>=0.13.0",
"datasets>=3.0.0",
"bitsandbytes>=0.44.0",
"accelerate>=1.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/agents_memory"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
[tool.mypy]
python_version = "3.11"
strict = true