Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
44brabal
/
ai
like
0
Runtime error
App
Files
Files
Community
bd2ed68
ai
/
app.py
44brabal
Create app.py
038b629
about 1 year ago
raw
Copy download link
history
blame
Safe
177 Bytes
import
gradio
as
gr
# Use a pipeline as a high-level helper
from
transformers
import
pipeline
pipe = pipeline(
"text-generation"
, model=
"Qwen/Qwen-14B"
, trust_remote_code=
True
)