{!! $chatbotSettings->title !!}
Knowledge Base Documents
@if(count($documents) > 0) @foreach($documents as $document)
{{ $document['name'] }}
{{ $document['size'] }} MB {{ $document['updated_at'] }}
@endforeach @else
No documents found in the knowledge base.
@endif
@if(Auth::check())
Chat History
@if(isset($chatHistory) && $chatHistory->count() > 0) @foreach($chatHistory as $historySession) {{ $historySession->title }} {{ $historySession->last_message_at->format('M d, H:i') }} @endforeach @else
No previous chats.
@endif
@endif
@if(Auth::check() && isset($chatSession))

{{ $chatSession->title }}

@else

New Conversation

@endif
@if(Auth::check()) @endif
@if(isset($suggestedQuestions) && count($suggestedQuestions) > 0)
Întrebări sugerate:
@foreach($suggestedQuestions as $question) @endforeach
@endif
{{ $chatbotSettings->typing_indicator }}