From 2495be6f14d26d2c37d6ba4a089a1153f2e0662d Mon Sep 17 00:00:00 2001 From: Carson Date: Fri, 20 Dec 2024 16:32:07 -0600 Subject: [PATCH] Bugfix --- shiny/_main_create.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/shiny/_main_create.py b/shiny/_main_create.py index b943e1158..8156521df 100644 --- a/shiny/_main_create.py +++ b/shiny/_main_create.py @@ -375,10 +375,12 @@ def use_internal_chat_ai_template( ) return - if input == "_chat-llm_enterprise": - template_choices = shiny_internal_templates.chat_enterprise - else: + if input == "_chat-starters": + template_choices = shiny_internal_templates.chat_starters + elif input == "_chat-llms": template_choices = shiny_internal_templates.chat_llms + else: + template_choices = shiny_internal_templates.chat_enterprise choice = question_choose_template(template_choices, back_choice)