AashitaK commited on
Commit
fd61366
·
verified ·
1 Parent(s): f2ef830

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -16,7 +16,11 @@ logging.basicConfig(
16
  if __name__ == "__main__":
17
  try:
18
  # Instantiate the ChatbotInterface class and create the interface
19
- chatbot_interface = ChatbotInterface()
 
 
 
 
20
  demo = chatbot_interface.create_interface()
21
 
22
  # Launch the Gradio interface
 
16
  if __name__ == "__main__":
17
  try:
18
  # Instantiate the ChatbotInterface class and create the interface
19
+ model = "gpt-4o-mini",
20
+ temperature = 0,
21
+ max_output_tokens = 600,
22
+ max_num_results = 10,
23
+ chatbot_interface = ChatbotInterface(model, temperature, max_output_tokens, max_num_results)
24
  demo = chatbot_interface.create_interface()
25
 
26
  # Launch the Gradio interface