Files
sure/app/views/chats/index.html.erb
Juan José Mata 94e87a8b85 Demo warning in /chat UI (#466)
* Add demo warning to /chat

* Missed two files!

* Function calling works now, update message
2025-12-19 16:30:21 +01:00

39 lines
1.1 KiB
Plaintext

<div data-controller="chat hotkey">
<%= turbo_frame_tag chat_frame do %>
<div class="flex flex-col h-full md:p-4">
<% if show_demo_warning? %>
<%= render "shared/demo_warning",
title: t("chats.demo_banner_title"),
message: t("chats.demo_banner_message") %>
<% end %>
<% if @chats.any? %>
<div class="grow flex flex-col">
<div class="flex items-center justify-between my-6">
<h1 class="text-xl font-medium">Chats</h1>
<%= render DS::Link.new(
id: "new-chat",
icon: "plus",
variant: "icon",
href: new_chat_path,
frame: chat_frame,
text: "New chat"
) %>
</div>
<div class="space-y-2 px-0.5">
<%= render @chats %>
</div>
</div>
<% else %>
<div class="grow flex flex-col">
<h1 class="sr-only">Chats</h1>
<div class="mt-auto py-8">
<%= render "chats/ai_greeting" %>
</div>
<%= render "messages/chat_form" %>
</div>
<% end %>
</div>
<% end %>
</div>