meta-llama / app.py
richardkimsm89's picture
Update app.py
ad24851 verified
raw
history blame
259 Bytes
import gradio as gr
gr.load(
"meta-llama/Llama-3.2-1B-Instruct",
src = "models",
inputs = [gr.Textbox(label = "Input")],
outputs = [gr.Textbox(label = "Output")],
title = "Demo",
examples = [
["Hello, Llama."]
]
).launch()