File size: 243 Bytes
bdf3e70
 
0bb2563
 
bdf3e70
 
 
0bb2563
 
 
 
 
 
 
bdf3e70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()