Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -116,6 +116,8 @@ print("Model loaded!")
|
|
116 |
# Create Gradio interface with chat
|
117 |
demo = gr.Interface(
|
118 |
fn=chat_response,
|
|
|
|
|
119 |
title="Admissions Agent Assistant",
|
120 |
description="Chat with an AI-powered admissions coordinator. The agent will maintain context of your conversation.",
|
121 |
examples=[
|
@@ -127,4 +129,4 @@ demo = gr.Interface(
|
|
127 |
)
|
128 |
|
129 |
if __name__ == "__main__":
|
130 |
-
demo.launch(share=True) # Remove
|
|
|
116 |
# Create Gradio interface with chat
|
117 |
demo = gr.Interface(
|
118 |
fn=chat_response,
|
119 |
+
inputs=gr.inputs.Textbox(lines=2, placeholder="Enter your message here..."),
|
120 |
+
outputs=gr.outputs.Textbox(),
|
121 |
title="Admissions Agent Assistant",
|
122 |
description="Chat with an AI-powered admissions coordinator. The agent will maintain context of your conversation.",
|
123 |
examples=[
|
|
|
129 |
)
|
130 |
|
131 |
if __name__ == "__main__":
|
132 |
+
demo.launch(share=True) # Remove s
|