feat: solution for 'Агент с RAG-памятью'

This commit is contained in:
2026-06-24 14:17:50 +03:00
commit 589a621340
10 changed files with 276 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
[project]
name = "rag-agent"
version = "0.1.0"
description = "Agent with RAG memory using LangChain 1.x, Qdrant, and Ollama."
requires-python = ">=3.10"
dependencies = [
"langchain==1.0.0",
"langchain-community==0.0.20",
"langchain-ollama==0.0.3",
"qdrant-client==1.0.0",
"python-dotenv==1.0.0",
]
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"