Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -66,13 +66,19 @@ with block:
|
|
66 |
lines=1,
|
67 |
type="password",
|
68 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
|
70 |
chatbot = gr.Chatbot()
|
71 |
|
72 |
with gr.Row():
|
73 |
message = gr.Textbox(
|
74 |
-
label="Enter
|
75 |
-
placeholder="
|
76 |
lines=1,
|
77 |
)
|
78 |
submit = gr.Button(value="Send", variant="secondary").style(full_width=False)
|
|
|
66 |
lines=1,
|
67 |
type="password",
|
68 |
)
|
69 |
+
canvas_url = gr.Textbox(
|
70 |
+
placeholder="Enter your Discussion URL",
|
71 |
+
show_label=False,
|
72 |
+
lines=1,
|
73 |
+
type="password",
|
74 |
+
)
|
75 |
|
76 |
chatbot = gr.Chatbot()
|
77 |
|
78 |
with gr.Row():
|
79 |
message = gr.Textbox(
|
80 |
+
label="Enter your response here!",
|
81 |
+
placeholder="Start typing your response and interact with the chatbot...",
|
82 |
lines=1,
|
83 |
)
|
84 |
submit = gr.Button(value="Send", variant="secondary").style(full_width=False)
|