Refactor agent API structure and add core functionality with FastAPI integration

This commit is contained in:
2026-05-10 13:09:58 +02:00
parent 58250d22a3
commit 4c758f7733
10 changed files with 63 additions and 51 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app
ENV PYTHONPATH=/app
CMD ["uvicorn", "agent-api.main:app", "--host", "0.0.0.0", "--port", "8000"]