<%# locals: (chat: nil, message_hint: nil) %>
<% model = chat && chat.persisted? ? [chat, Message.new] : Chat.new %> <%= form_with model: model, class: "flex flex-col gap-2 bg-white px-2 py-1.5 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-4o" %> <%= f.text_area :content, placeholder: "Ask anything ...", value: message_hint, class: "w-full border-0 focus:ring-0 text-sm resize-none px-1", data: { chat_target: "input", action: "input->chat#autoResize keydown->chat#handleInputKeyDown" }, rows: 1 %>
<%# These are disabled for now, but in the future, will all open specific menus with their own context and search %> <% ["plus", "command", "at-sign", "mouse-pointer-click"].each do |icon| %> <% end %>
<% end %>

AI responses are informational only and are not financial advice.