<%= turbo_frame_tag chat_frame do %>
<% if show_demo_warning? %> <%= render "shared/demo_warning", title: t("chats.demo_banner_title"), message: t("chats.demo_banner_message") %> <% end %> <% if @chats.any? %>

Chats

<%= render DS::Link.new( id: "new-chat", icon: "plus", variant: "icon", href: new_chat_path, frame: chat_frame, text: "New chat" ) %>
<%= render @chats %>
<% else %>

Chats

<%= render "chats/ai_greeting" %>
<%= render "messages/chat_form" %>
<% end %>
<% end %>