Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsievert committed Dec 20, 2024
1 parent f68ca3f commit 2495be6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions shiny/_main_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 2495be6

Please sign in to comment.