Spaces:
Runtime error
Runtime error
AdityaBolt commited on
Update app.py
Browse files
app.py
CHANGED
|
@@ -37,8 +37,5 @@ inputs = [
|
|
| 37 |
output = gr.outputs.Textbox(label="Your Personalized Letter")
|
| 38 |
|
| 39 |
|
| 40 |
-
iface = gr.Interface(fn=
|
| 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()
|