44brabal commited on
Commit
038b629
β€’
1 Parent(s): 5807199

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ # Use a pipeline as a high-level helper
4
+ from transformers import pipeline
5
+
6
+ pipe = pipeline("text-generation", model="Qwen/Qwen-14B", trust_remote_code=True)