20 lines
476 B
TOML
20 lines
476 B
TOML
[project]
|
|
name = "agent-s-rag-pamyatyu"
|
|
version = "0.1.0"
|
|
description = "A simple RAG agent with interactive CLI using LangChain tools."
|
|
authors = [
|
|
{ name = "Artur Kuzakhmetov", email = "artur@example.com" }
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"langchain>=0.0.0",
|
|
"python-dotenv>=0.21.0"
|
|
]
|
|
|
|
[project.scripts]
|
|
agent-s-rag = "src.main:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta" |