Spaces:
Sleeping
Sleeping
fff
Browse files
app.py
CHANGED
@@ -7,6 +7,7 @@ def chatinterface_fn(message,history):
|
|
7 |
return f"{message} return"
|
8 |
|
9 |
with gr.Blocks() as demo:
|
10 |
-
gr.
|
11 |
-
gr.
|
|
|
12 |
demo.launch()
|
|
|
7 |
return f"{message} return"
|
8 |
|
9 |
with gr.Blocks() as demo:
|
10 |
+
name = gr.TextBox(label="name")
|
11 |
+
output= gr.Interface(fn=greet, inputs=["text","slider"], outputs="text")
|
12 |
+
a= gr.ChatInterface(chatinterface_fn).launch()
|
13 |
demo.launch()
|