<%# locals: (chat: nil, message_hint: nil) %>
<% model = chat && chat.persisted? ? [chat, Message.new] : Chat.new %> <%= form_with model: model, class: "flex lg:flex-col gap-2 bg-container px-2 py-1.5 rounded-full lg:rounded-lg shadow-border-xs", data: { chat_target: "form" } do |f| %> <%# In the future, this will be a dropdown with different AI models %> <%= f.hidden_field :ai_model, value: "gpt-4.1" %> <%= f.text_area :content, placeholder: "Ask anything ...", value: message_hint, class: "w-full border-0 focus:ring-0 text-sm resize-none px-1 bg-transparent", data: { chat_target: "input", action: "input->chat#autoResize keydown->chat#handleInputKeyDown" }, rows: 1 %>
<%= icon("arrow-up", as_button: true, type: "submit") %>
<% end %>

AI responses are informational only and are not financial advice.