lukecq commited on
Commit
7f53bff
·
verified ·
1 Parent(s): bc3efba

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -12,6 +12,11 @@ from huggingface_hub import login
12
  TOKEN = os.environ.get("TOKEN", None)
13
  login(token=TOKEN)
14
 
 
 
 
 
 
15
  def load_model_processor(model_path):
16
  processor = AutoProcessor.from_pretrained(model_path)
17
  llm = LLM(
 
12
  TOKEN = os.environ.get("TOKEN", None)
13
  login(token=TOKEN)
14
 
15
+ print("transformers version:", transformers.__version__)
16
+ print("vllm version:", vllm.__version__)
17
+ print("gradio version:", gradio.__version__)
18
+
19
+
20
  def load_model_processor(model_path):
21
  processor = AutoProcessor.from_pretrained(model_path)
22
  llm = LLM(