textbox
Browse files
app.py
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
#generates an AI description of your character
|
4 |
-
def describe(
|
5 |
return "Hello " + name + "!!"
|
6 |
|
7 |
-
iface = gr.Interface(fn=describe, inputs=gr.Textbox(label="HI"), outputs="text")
|
8 |
iface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
#generates an AI description of your character
|
4 |
+
def describe(names):
|
5 |
return "Hello " + name + "!!"
|
6 |
|
7 |
+
iface = gr.Interface(fn=describe, inputs=gr.Textbox(label="HI",show_label=True), outputs="text")
|
8 |
iface.launch()
|