daniel-was-taken commited on
Commit
0a80497
·
verified ·
1 Parent(s): 3a7c270

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -179,6 +179,7 @@ demo = gr.ChatInterface(
179
  respond,
180
  title="🎓 CS Query - RAG-Powered Academic Assistant",
181
  description="Ask questions about Computer Science topics and get answers based on the uploaded academic documents.",
 
182
  examples=[
183
  [
184
  "What are reasonable adjustments for students with disabilities?",
@@ -217,4 +218,6 @@ if __name__ == "__main__":
217
  main()
218
  demo.launch(
219
  inbrowser=True, # Open in browser automatically
 
 
220
  )
 
179
  respond,
180
  title="🎓 CS Query - RAG-Powered Academic Assistant",
181
  description="Ask questions about Computer Science topics and get answers based on the uploaded academic documents.",
182
+ chatbot=gr.Chatbot(height=500),
183
  examples=[
184
  [
185
  "What are reasonable adjustments for students with disabilities?",
 
218
  main()
219
  demo.launch(
220
  inbrowser=True, # Open in browser automatically
221
+ height=800, # Increase overall height
222
+ width="100%", # Use full width
223
  )