<%= link_to "list conversations", conversations_path %>
<%= form_with url: conversation_path(@conversation), method: :delete do |form| %> <%= form.submit "delete conversation" %> <% end %> <%= form_with model: @prompt do |form| %> <%= form.text_area :body %> <%= form.hidden_field :conversation_id %> <%= form.submit "send message" %> <% end %>