krishna-k commited on
Commit
7272753
·
verified ·
1 Parent(s): d5995b9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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", 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
  )
 
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=10), # 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
  )