Files
prakticheskoe-zadanie-agent…/pyproject.toml
T

17 lines
452 B
TOML

[project]
name = "rag-agent"
version = "0.1.0"
description = "AI agent with local RAG memory using Qdrant and Ollama"
authors = [{name = "Your Name", email = "you@example.com"}]
requires-python = ">=3.10"
dependencies = [
"langchain>=0.1.0",
"langchain-qdrant>=0.1.0",
"langchain-ollama>=0.1.0",
"qdrant-client>=1.0.0",
"python-dotenv>=1.0.0"
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"