Spaces:
Sleeping
Sleeping
requirements file modified for versionNo for numpy modified
Browse files- Dockerfile +10 -0
- ReadMe.md +11 -0
- requirements.txt +1 -1
Dockerfile
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM python:3.11-slim
|
| 2 |
+
|
| 3 |
+
WORKDIR /app
|
| 4 |
+
COPY . /app
|
| 5 |
+
|
| 6 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 7 |
+
|
| 8 |
+
EXPOSE 7860
|
| 9 |
+
|
| 10 |
+
CMD ["python", "hipaathesis.py"]
|
ReadMe.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Pdf Extract
|
| 3 |
+
emoji: 🐢
|
| 4 |
+
colorFrom: purple
|
| 5 |
+
colorTo: blue
|
| 6 |
+
sdk: docker
|
| 7 |
+
pinned: false
|
| 8 |
+
short_description: A python app with integrated LLM's - for summary & qa
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
requirements.txt
CHANGED
|
@@ -2,7 +2,7 @@ cryptography==46.0.1
|
|
| 2 |
fastapi==0.118.0
|
| 3 |
fitz==0.0.1.dev2
|
| 4 |
nltk==3.9.1
|
| 5 |
-
numpy
|
| 6 |
opencv_python==4.12.0.88
|
| 7 |
Pillow==11.3.0
|
| 8 |
pydantic==2.11.9
|
|
|
|
| 2 |
fastapi==0.118.0
|
| 3 |
fitz==0.0.1.dev2
|
| 4 |
nltk==3.9.1
|
| 5 |
+
numpy<2.3.0,>=2
|
| 6 |
opencv_python==4.12.0.88
|
| 7 |
Pillow==11.3.0
|
| 8 |
pydantic==2.11.9
|