Update app.py
Browse files
app.py
CHANGED
@@ -54,7 +54,7 @@ with gr.Blocks() as app:
|
|
54 |
gr.Markdown("## Chatbot with DeepSeek Models")
|
55 |
|
56 |
with gr.Row():
|
57 |
-
chat_interface = gr.ChatInterface(chat,
|
58 |
model_selector = gr.Dropdown(
|
59 |
choices=list(MODEL_NAMES.keys()), value="DeepSeek-R1-Distill-Llama-8B", label="Select Model"
|
60 |
)
|
|
|
54 |
gr.Markdown("## Chatbot with DeepSeek Models")
|
55 |
|
56 |
with gr.Row():
|
57 |
+
chat_interface = gr.ChatInterface(chat, type="messages", flagging_mode="manual", save_history=True)
|
58 |
model_selector = gr.Dropdown(
|
59 |
choices=list(MODEL_NAMES.keys()), value="DeepSeek-R1-Distill-Llama-8B", label="Select Model"
|
60 |
)
|