feat: solution for 'Практическое задание: Агент с RAG-памятью'

This commit is contained in:
2026-05-28 18:21:32 +03:00
parent 61d5771c9b
commit 1ed458ad3c
7 changed files with 265 additions and 138 deletions
+17
View File
@@ -0,0 +1,17 @@
[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"