[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