Скелет проекта

This commit is contained in:
2026-01-30 22:21:12 +03:00
commit 84ded7d7a9
30 changed files with 752 additions and 0 deletions

17
pyproject.toml Normal file
View File

@@ -0,0 +1,17 @@
[project]
name = "rag-agent"
version = "0.1.0"
description = "Custom RAG agent with Postgres-backed vector index"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"psycopg[binary]>=3.1.18",
"pgvector>=0.2.5",
"pydantic>=2.7.0",
]
[project.scripts]
rag-agent = "rag_agent.cli:main"
[tool.ruff]
line-length = 100