File size: 262 Bytes
bdf3e70
 
 
 
 
1e282db
 
0bb2563
1e282db
 
 
0bb2563
1e282db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio as gr

def greet(name):
    return "Hello " + name + "!!"

with gr.Blocks() as demo:
    gr.Markdown("# Instruction Tuning with Unsloth")

    gr.Interface(fn=greet, 
                 inputs="text", 
                 outputs="text")

demo.launch()