{{-- Floating chat button --}} {{-- Chat panel --}} @if($isOpen)
{{-- Header --}}
Gestbot
@if(count($messages) > 0) @endif
{{-- Not configured warning --}} @if(!$isConfigured)
API Key de OpenAI no configurada. @if(auth()->user()->canConfigure()) Configurar @else Contacta con el administrador. @endif
@endif {{-- Messages area --}}
@if(count($messages) === 0)

Preguntame sobre tus leads.

Ej: "¿Cuantos leads nuevos tengo esta semana?"

@endif @foreach($messages as $msg)
@if($msg['role'] === 'assistant')
{!! \Illuminate\Support\Str::markdown($msg['content']) !!}
@else {{ $msg['content'] }} @endif
@endforeach {{-- Loading indicator --}} @if($isLoading)
@endif
{{-- Download banner --}} @if($downloadUrl) @endif {{-- Input area --}}
@endif @script @endscript