Leon4gr45 commited on
Commit
fb40632
·
verified ·
1 Parent(s): 067a4c6

Create requirements.txt

Browse files
Files changed (1) hide show
  1. 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