Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
113 |
-
|
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=[
|