AashitaK commited on
Commit
f985285
·
verified ·
1 Parent(s): 1b126bd

Update app.py

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