Johnny Lee commited on
Commit
1757e4d
·
1 Parent(s): 7b9ca1f
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -549,7 +549,11 @@ async def respond(
549
 
550
  class ChatbotConfig(BaseModel):
551
  app_title: str = "CBS Technology Strategy - Fall 2023"
552
- chatbot_modes: List[str] = [ChatbotMode.DEBATE_PARTNER.value]
 
 
 
 
553
  case_options: List[str] = poll_questions.get_case_names()
554
  default_case_option: str = "Netflix"
555
 
 
549
 
550
  class ChatbotConfig(BaseModel):
551
  app_title: str = "CBS Technology Strategy - Fall 2023"
552
+ chatbot_modes: List[str] = [
553
+ ChatbotMode.DEBATE_PARTNER.value,
554
+ ChatbotMode.RESEARCH_ASSISTANT.value,
555
+ ChatbotMode.RESEARCH_ASSISTANT_CLAUDE.value,
556
+ ]
557
  case_options: List[str] = poll_questions.get_case_names()
558
  default_case_option: str = "Netflix"
559