AdityaBolt commited on
Commit
5f1e18d
·
verified ·
1 Parent(s): 93a2328

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -37,8 +37,5 @@ inputs = [
37
  output = gr.outputs.Textbox(label="Your Personalized Letter")
38
 
39
 
40
- iface = gr.Interface(fn=write_letter, inputs=inputs, outputs=output,
41
- title="Create Your Personalized Letter",
42
- description="Fill in the details below to generate your personalized letter. Have fun!")
43
-
44
  iface.launch()
 
37
  output = gr.outputs.Textbox(label="Your Personalized Letter")
38
 
39
 
40
+ iface = gr.Interface(fn=hello_world, inputs="text", outputs="text")
 
 
 
41
  iface.launch()