Spaces:
Runtime error
Runtime error
Create requirements.txt
Browse files- requirements.txt +18 -0
requirements.txt
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# For the vLLM engine
|
2 |
+
vllm
|
3 |
+
|
4 |
+
# For the web server and API
|
5 |
+
fastapi
|
6 |
+
uvicorn
|
7 |
+
|
8 |
+
# For the web UI
|
9 |
+
gradio==4.31.0
|
10 |
+
|
11 |
+
# Pydantic is used for API data validation
|
12 |
+
pydantic
|
13 |
+
|
14 |
+
# Required by vLLM and underlying models
|
15 |
+
transformers
|
16 |
+
accelerate
|
17 |
+
|
18 |
+
# torch is provided by the base Docker image, so it is not needed here
|