Commit
·
fc2b639
1
Parent(s):
817d943
updated config
Browse files- README.md +6 -1
- requirements.txt +16 -0
README.md
CHANGED
@@ -3,8 +3,13 @@ title: Pixtral Demo
|
|
3 |
emoji: 🐠
|
4 |
colorFrom: blue
|
5 |
colorTo: pink
|
6 |
-
sdk:
|
|
|
|
|
7 |
pinned: false
|
|
|
|
|
|
|
8 |
---
|
9 |
|
10 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
3 |
emoji: 🐠
|
4 |
colorFrom: blue
|
5 |
colorTo: pink
|
6 |
+
sdk: streamlit
|
7 |
+
sdk_version: 1.40.1
|
8 |
+
app_file: app.py
|
9 |
pinned: false
|
10 |
+
preload_from_hub:
|
11 |
+
- mistralai/Pixtral-12B-2409
|
12 |
+
- lightonai/MonoQwen2-VL-v0.1
|
13 |
---
|
14 |
|
15 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
requirements.txt
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
numpy
|
2 |
+
torch==2.4.0
|
3 |
+
wheel==0.45.1
|
4 |
+
clip @ git+https://github.com/openai/CLIP.git@main
|
5 |
+
torchvision
|
6 |
+
vllm==0.6.3
|
7 |
+
pillow==10.3.0
|
8 |
+
PyMuPDF==1.24.13
|
9 |
+
pandas==2.2.3
|
10 |
+
faiss-cpu
|
11 |
+
huggingface==0.0.1
|
12 |
+
huggingface-hub==0.26.2
|
13 |
+
md2pdf==1.0.1
|
14 |
+
pypdf==5.1.0
|
15 |
+
streamlit==1.40.1
|
16 |
+
fuzzywuzzy
|