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

This commit is contained in:
2026-07-01 14:05:59 +03:00
parent bd49075b6e
commit 39d55136ad
14 changed files with 332 additions and 406 deletions
+14 -11
View File
@@ -1,16 +1,19 @@
[project]
name = "agent-s-rag-pamyatyu"
[tool.poetry]
name = "rag-agent"
version = "0.1.0"
description = "Agent with RAG memory using Qdrant and Ollama"
description = "RAG agent using Ollama embeddings and Qdrant vector store."
authors = ["Your Name <you@example.com>"]
readme = "README.md"
requires-python = ">=3.9"
packages = [{include = "src"}]
[project.dependencies]
langchain = ">=0.1.0"
langchain-qdrant = ">=0.1.0"
langchain-ollama = ">=0.1.0"
python-dotenv = ">=1.0.0"
[tool.poetry.dependencies]
python = "^3.10"
langchain = "0.2.0"
langchain-community = "0.2.0"
qdrant-client = "1.8.0"
openai = "1.12.0"
python-dotenv = "1.0.0"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"