Test / app.py
ThomasSimonini's picture
Update app.py
89a14cf
raw history blame
No virus
182 Bytes
import gradio as gr
from transformers import pipeline
pipe = pipeline("conversational", model="meta-llama/Llama-2-7b-chat-hf")
demo = gr.Interface.from_pipeline(pipe)
demo.launch()