forked from PearlMody05/CraniMEM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 750 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (33 loc) · 750 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
34
35
36
[project]
name = "cranimem"
version = "0.1.0"
description = "Robust memory system for LLM agents"
requires-python = ">=3.10"
license = { text = "MIT" }
keywords = ["llm", "memory", "agents", "rag", "neo4j"]
dependencies = [
"pydantic<2.12",
"pydantic-settings",
"python-dotenv",
"langchain",
"langchain-core",
"langchain-community",
"langchain-huggingface",
"langchain-groq",
"langchain-google-genai",
"langgraph",
"transformers",
"accelerate",
"bitsandbytes",
"sentence-transformers",
"faiss-cpu",
"neo4j",
"numpy",
"torch",
"huggingface-hub",
]
[tool.setuptools]
packages = { find = { include = ["cranimem*"] } }
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"