Cioni223 commited on
Commit
99acc60
·
verified ·
1 Parent(s): 0ce1d80

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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 share=True as it's not needed for HF Spaces
 
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