feat: solution for 'Агент с RAG-памятью'
CI / build (push) Has been cancelled

This commit is contained in:
2026-06-29 17:42:08 +03:00
parent f3a37e6521
commit e47bfa261d
6 changed files with 222 additions and 80 deletions
+13 -9
View File
@@ -1,15 +1,19 @@
[project]
name = "rag-agent"
name = "agent-s-rag-pamyatyu"
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",
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"]