Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
fschwartzer
/
codellama
like
0
Runtime error
App
Files
Files
Community
95ba508
codellama
/
app.py
fschwartzer
Update app.py
1c68d40
about 1 year ago
raw
Copy download link
history
blame
Safe
165 Bytes
import
gradio
as
gr
from
transformers
import
pipeline
pipe = pipeline(model=
"meta-llama/Llama-2-13b-chat-hf"
)
demo = gr.Interface.from_pipeline(pipe)
demo.launch()