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