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
+17
View File
@@ -0,0 +1,17 @@
FROM python:3.11-slim
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy source code
COPY src ./src
COPY data ./data
COPY main.py .
# Expose port if needed (not required for CLI)
# EXPOSE 8000
CMD ["python", "src/main.py"]