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