Скелет проекта
This commit is contained in:
17
pyproject.toml
Normal file
17
pyproject.toml
Normal 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
|
||||
Reference in New Issue
Block a user