Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -81,7 +81,7 @@ with gr.Blocks() as demo:
|
|
81 |
top_p = gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p (nucleus sampling)")
|
82 |
|
83 |
with gr.Column():
|
84 |
-
chat_output = gr.
|
85 |
user_input = gr.Textbox(placeholder="Type your message here...", label="Your Message")
|
86 |
submit_btn = gr.Button("Send")
|
87 |
|
|
|
81 |
top_p = gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p (nucleus sampling)")
|
82 |
|
83 |
with gr.Column():
|
84 |
+
chat_output = gr.Chatbot(label="Chat History")
|
85 |
user_input = gr.Textbox(placeholder="Type your message here...", label="Your Message")
|
86 |
submit_btn = gr.Button("Send")
|
87 |
|