Prompt Debug
<%= form_with url: admin_prompt_sandbox_path, method: :post do |form| %>
<%= form.label :prompt, "Prompt:" %>
<%= form.text_area :prompt, value: @prompt, rows: 20, cols: 80, class: "input" %>
<%= form.label :day, "Date:" %>
<%= form.date_field :day, value: @day_timeline.day.to_date, class: "input" %>
<%= form.label :llm_model, "LLM Model:" %>
<%= form.select :llm_model,
options_for_select(llm_model_options, @llm_model),
{}, class: "input input--select" %>
<%= form.submit "Generate Summary", class: "btn btn--link" %>
<% end %>
Summary
<%= @weekly_highlights&.to_html %>