From dfe50ab27bdeb9728155b05bd31770b34d5a391c Mon Sep 17 00:00:00 2001 From: jeremy bayse Date: Mon, 22 Jun 2026 17:12:57 +0200 Subject: [PATCH] feat: add AdminDashboard Livewire component for chatbot configuration and document ingestion management --- app/Livewire/AdminDashboard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Livewire/AdminDashboard.php b/app/Livewire/AdminDashboard.php index 924f7cf..ebbb83c 100644 --- a/app/Livewire/AdminDashboard.php +++ b/app/Livewire/AdminDashboard.php @@ -128,7 +128,7 @@ class AdminDashboard extends Component public function ingestPdf(DocumentIngestionService $ingestionService) { $this->validate([ - 'pdfFile' => 'required|file|mimes:pdf|max:10240', // Max 10MB + 'pdfFile' => 'required|file|mimes:pdf|max:102400', // Max 100MB ]); $this->statusMessage = "Indexation du fichier PDF en cours...";