mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
* WIP * WIP * WIP * WIP * WIP * WIP * WIP * format * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * fix conflict * fix conflict * chore: run rubocop * fix test * update PWA logo * fix tests * chore: lint * fix test * Refactor: Remove duplicate data attribute in activity partial and add chat form rendering in chats index --------- Co-authored-by: Josh Pigford <josh@joshpigford.com>
28 lines
1.2 KiB
Text
28 lines
1.2 KiB
Text
<%# locals: (chat: nil, message_hint: nil) %>
|
|
|
|
<div id="chat-form" class="space-y-2">
|
|
<% model = chat && chat.persisted? ? [chat, Message.new] : Chat.new %>
|
|
|
|
<%= form_with model: model,
|
|
class: "flex items-center gap-2 bg-container p-2 rounded-full shadow-sm border border-gray-100 h-11",
|
|
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" %>
|
|
|
|
<button type="button" class="flex-shrink-0 text-secondary p-1">
|
|
<%= lucide_icon("plus", class: "w-5 h-5") %>
|
|
</button>
|
|
|
|
<%= f.text_area :content, placeholder: "Ask anything ...", value: message_hint,
|
|
class: "w-full border-0 focus:ring-0 text-sm resize-none bg-transparent py-0",
|
|
data: { chat_target: "input", action: "input->chat#autoResize keydown->chat#handleInputKeyDown" },
|
|
rows: 1 %>
|
|
|
|
<button type="submit" class="flex-shrink-0 text-secondary bg-gray-50 rounded-full p-2">
|
|
<%= lucide_icon("arrow-up", class: "w-4 h-4") %>
|
|
</button>
|
|
<% end %>
|
|
|
|
<p class="text-xs text-secondary mt-1">AI responses are informational only and are not financial advice.</p>
|
|
</div>
|