% if ( @$history ) {
% # Render the welcome message first, then the stored conversation
<% $ai_avatar_html |n %>
<% loc("Hello! I'm here to help you set up a new queue. Tell me about the work your team handles. What kind of requests come in, and how does your team process them?") %>
% for my $entry ( @$history ) {
% if ( $entry->{role} eq 'user' ) {
<% $user_avatar_html |n %>
<% $entry->{content} |h %>
% } else {
<% $ai_avatar_html |n %>
<% $entry->{content} |h %>
% }
% }
% } else {
<% $ai_avatar_html |n %>
<% loc("Hello! I'm here to help you set up a new queue. Tell me about the work your team handles. What kind of requests come in, and how does your team process them?") %>
% }