elapt1c commited on
Commit
f710225
·
verified ·
1 Parent(s): 451a825

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -107,10 +107,10 @@ def history_to_transformer_format(history):
107
  return history_formatted
108
 
109
 
110
- iface = gr.ChatInterface(
111
  fn=chat_with_model,
112
- chatbox=gr.Textbox(placeholder="Type your message here..."), # Changed Chatbox to Textbox
113
- chatbot=gr.Chatbot(),
114
  title="ElapticAI-1a Chatbot",
115
  description="Simple chatbot interface for ElapticAI-1a model. Talk to the model and see its responses!",
116
  examples=[
 
107
  return history_formatted
108
 
109
 
110
+ iface = gr.Interface( # Changed from gr.ChatInterface to gr.Interface
111
  fn=chat_with_model,
112
+ inputs=gr.Textbox(placeholder="Type your message here..."), # Explicitly define inputs as gr.Textbox
113
+ outputs=gr.Chatbot(), # Explicitly define outputs as gr.Chatbot
114
  title="ElapticAI-1a Chatbot",
115
  description="Simple chatbot interface for ElapticAI-1a model. Talk to the model and see its responses!",
116
  examples=[