Initial commit

This commit is contained in:
2025-12-29 18:29:35 +03:00
commit 0599dbcdf4
7 changed files with 3693 additions and 0 deletions

19
pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "rag-llm"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"chromadb>=1.4.0",
"langchain-chroma>=1.1.0",
"langchain-community>=0.4.1",
"langchain-ollama>=1.0.1",
"nest-asyncio>=1.6.0",
"prompt-toolkit>=3.0.52",
"python-dotenv>=1.2.1",
"rich>=14.2.0",
"torch>=2.9.1",
"unstructured[md]>=0.18.21",
"watchdog>=6.0.0",
]