35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
<div class="txt-align-start">
|
|
<h1 class="margin-block">Prompt Debug</h1>
|
|
|
|
<%= form_with url: admin_prompt_sandbox_path, method: :post do |form| %>
|
|
<div class="margin-block">
|
|
<%= form.label :prompt, "Prompt:" %>
|
|
<%= form.text_area :prompt, value: @prompt, rows: 20, cols: 80, class: "input" %>
|
|
</div>
|
|
|
|
<div class="margin-block">
|
|
<%= form.label :day, "Date:" %>
|
|
<%= form.date_field :day, value: @day_timeline.day.to_date, class: "input" %>
|
|
</div>
|
|
|
|
<div class="margin-block">
|
|
<%= form.label :llm_model, "LLM Model:" %>
|
|
<%= form.select :llm_model,
|
|
options_for_select(llm_model_options, @llm_model),
|
|
{}, class: "input input--select" %>
|
|
</div>
|
|
|
|
<div class="actions">
|
|
<%= form.submit "Generate Summary", class: "btn btn--link" %>
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<div class="margin-block fill-shade txt-ink border border-radius pad">
|
|
<h2 class="margin-block">Summary</h2>
|
|
<div class="summary-content">
|
|
<%= @weekly_highlights&.to_html %>
|
|
</div>
|
|
</div>
|
|
</div>
|