tykiww's picture
Update app.py
0bb2563 verified
raw
history blame
243 Bytes
import gradio as gr
gr.Markdown("# Instruction Tuning with Unsloth")
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet,
inputs="text",
outputs="text")
demo.launch()