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