Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -12,7 +12,7 @@ def chat_with_bot(user_input):
|
|
| 12 |
interface = gr.Interface(
|
| 13 |
fn=chat_with_bot, # Function to call for processing the input
|
| 14 |
inputs=gr.Textbox(label="Enter your message"), # User input (text)
|
| 15 |
-
outputs=gr.Textbox(label="Chatbot Response",
|
| 16 |
title="Chat with DeepSeek", # Optional: Add a title to your interface
|
| 17 |
description="Chat with an AI model powered by DeepSeek!" # Optional: Add a description
|
| 18 |
)
|
|
|
|
| 12 |
interface = gr.Interface(
|
| 13 |
fn=chat_with_bot, # Function to call for processing the input
|
| 14 |
inputs=gr.Textbox(label="Enter your message"), # User input (text)
|
| 15 |
+
outputs=gr.Textbox(label="Chatbot Response", lines=30, height=300), # Model output (text)
|
| 16 |
title="Chat with DeepSeek", # Optional: Add a title to your interface
|
| 17 |
description="Chat with an AI model powered by DeepSeek!" # Optional: Add a description
|
| 18 |
)
|