Refactor code structure for improved readability and maintainability

This commit is contained in:
Dontrail Cotlage
2026-02-04 02:15:47 +00:00
parent 56d301de3e
commit c58cea33c5
19 changed files with 5428 additions and 0 deletions

12
poc/Dockerfile.mock-llm Normal file
View File

@@ -0,0 +1,12 @@
# Mock LLM server for POC testing without real API calls
FROM python:3.11-slim
RUN pip install --no-cache-dir fastapi uvicorn
WORKDIR /app
COPY mock_llm_server.py ./
EXPOSE 8080
CMD ["uvicorn", "mock_llm_server:app", "--host", "0.0.0.0", "--port", "8080"]