Spaces:
Runtime error
Runtime error
Commit
·
55d3c49
1
Parent(s):
80cf518
fix indentation
Browse files
app.py
CHANGED
@@ -67,8 +67,8 @@ with gr.Blocks() as demo:
|
|
67 |
with gr.Column(scale=2):
|
68 |
chatbot = gr.Chatbot()
|
69 |
with gr.Row():
|
70 |
-
|
71 |
-
|
72 |
|
73 |
# First add user's message to the conversation history
|
74 |
# Then get reply from the tutor and add that to the conversation history
|
|
|
67 |
with gr.Column(scale=2):
|
68 |
chatbot = gr.Chatbot()
|
69 |
with gr.Row():
|
70 |
+
user_chat_input = gr.Textbox(label="User input", scale=9)
|
71 |
+
user_chat_submit = gr.Button("Ask/answer model", scale=1)
|
72 |
|
73 |
# First add user's message to the conversation history
|
74 |
# Then get reply from the tutor and add that to the conversation history
|