azlaan428 commited on
Commit ·
3a58896
1
Parent(s): 49714cd
Add HuggingFace Spaces deployment config
Browse files- Dockerfile +24 -0
- README.md +11 -0
Dockerfile
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM python:3.11-slim
|
| 2 |
+
|
| 3 |
+
WORKDIR /app
|
| 4 |
+
|
| 5 |
+
# Install system dependencies
|
| 6 |
+
RUN apt-get update && apt-get install -y \
|
| 7 |
+
gcc \
|
| 8 |
+
g++ \
|
| 9 |
+
&& rm -rf /var/lib/apt/lists/*
|
| 10 |
+
|
| 11 |
+
# Copy requirements first for layer caching
|
| 12 |
+
COPY requirements.txt .
|
| 13 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 14 |
+
|
| 15 |
+
# Copy application code
|
| 16 |
+
COPY . .
|
| 17 |
+
|
| 18 |
+
# Hugging Face Spaces runs on port 7860
|
| 19 |
+
ENV PORT=7860
|
| 20 |
+
ENV PYTHONUNBUFFERED=1
|
| 21 |
+
|
| 22 |
+
EXPOSE 7860
|
| 23 |
+
|
| 24 |
+
CMD ["python", "app.py"]
|
README.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# ARIA — Autonomous Research Intelligence Agent
|
| 2 |
|
| 3 |
> Multi-agent biomedical literature synthesis · AMD Developer Hackathon 2026
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: ARIA - AMD Biomedical Research Intelligence Assistant
|
| 3 |
+
emoji: 🧬
|
| 4 |
+
colorFrom: cyan
|
| 5 |
+
colorTo: blue
|
| 6 |
+
sdk: docker
|
| 7 |
+
pinned: false
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
... your existing README content below ...
|
| 11 |
+
|
| 12 |
# ARIA — Autonomous Research Intelligence Agent
|
| 13 |
|
| 14 |
> Multi-agent biomedical literature synthesis · AMD Developer Hackathon 2026
|