google-gemma / app.py
richardkimsm89's picture
Update app.py
f56245e verified
raw
history blame
247 Bytes
import gradio as gr
gr.load(
"google/gemma-2-2b-it",
src = "models",
inputs = [gr.Textbox(label = "Input")],
outputs = [gr.Textbox(label = "Output")],
title = "Demo",
examples = [
["Hello, World."]
]
).launch()