{!! $chatbotSettings->title !!}
Knowledge Base Documents
@if(count($documents) > 0) @foreach($documents as $document)
{{ $document['name'] }}
{{ $document['size'] }} MB
{{ $document['updated_at'] }}
View
@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())
New Chat
@endif
@if(isset($suggestedQuestions) && count($suggestedQuestions) > 0)
Întrebări sugerate:
@foreach($suggestedQuestions as $question)
{{ $question->question }}
@endforeach
@endif
{{ $chatbotSettings->typing_indicator }}
Start New Chat
This will end your current conversation and start a new one. Are you sure you want to continue?