@extends('root') @section('title', 'Detail Dokumen AI') @section('content')
@include('components.breadcrumb', [ 'title' => 'Detail Dokumen AI', 'links' => [ ['url' => route('client.balasan-otomatis.index'), 'label' => 'Auto Reply'], ['url' => route('client.ai-knowledge.index'), 'label' => 'Knowledge Base'], ], 'current' => 'Info Dokumen' ])

{{ $aiKnowledge->title }}

{{ strtoupper($aiKnowledge->knowledge_type) }} Dibuat: {{ $aiKnowledge->created_at->format('d M Y H:i') }}

Data Pecahan (Chunks)

AI mencari potongan teks yang paling relevan dengan pertanyaan user dari daftar berikut ini.

@forelse($aiKnowledge->documents as $index => $doc)

Chunk #{{ $index + 1 }}

{{ $doc->content_chunk }}

@empty
Dokumen ini kosong (tidak ada potongan teks). Edit dokumen dan tambahkan teks agar AI dapat menggunakannya.
@endforelse
@endsection