25 lines
586 B
TOML
25 lines
586 B
TOML
[project]
|
|
name = "memory-poc"
|
|
version = "0.1.0"
|
|
description = "Temporal + Semantic + Entity Memory System for AI agents using PostgreSQL"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"psycopg2-binary>=2.9.0",
|
|
"pgvector>=0.2.0",
|
|
"python-dotenv>=1.0.0",
|
|
"openai>=1.0.0",
|
|
"pydantic>=2.0.0",
|
|
"nltk>=3.8.0",
|
|
"networkx>=3.0",
|
|
"matplotlib>=3.7.0",
|
|
"rich>=13.0.0",
|
|
"spacy>=3.7.0",
|
|
"pyvis>=0.3.0",
|
|
"sentence-transformers>=2.2.0",
|
|
"torch>=2.0.0",
|
|
"pytest>=7.0.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
"fastcoref>=2.1.0",
|
|
]
|