tykiww commited on
Commit
0bb2563
·
verified ·
1 Parent(s): bdf3e70

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -1,7 +1,15 @@
1
  import gradio as gr
2
 
 
 
3
  def greet(name):
4
  return "Hello " + name + "!!"
5
 
6
- demo = gr.Interface(fn=greet, inputs="text", outputs="text")
 
 
 
 
 
 
7
  demo.launch()
 
1
  import gradio as gr
2
 
3
+ gr.Markdown("# Instruction Tuning with Unsloth")
4
+
5
  def greet(name):
6
  return "Hello " + name + "!!"
7
 
8
+
9
+
10
+
11
+
12
+ demo = gr.Interface(fn=greet,
13
+ inputs="text",
14
+ outputs="text")
15
  demo.launch()