- Added tone instruction retrieval to SupportReplyService. - Improved user feedback when no relevant article is found. - Included article URL and tone instruction in LLM prompt. - Updated response format to include source information. - Enhanced article management UI with search functionality and editing capabilities. - Introduced a new API endpoint for nearest articles based on vector search. - Added confidence badge component to display article confidence levels. - Implemented tests for article searching, editing, and nearest article API. - Removed obsolete .htaccess file.
37 lines
1.5 KiB
PHP
37 lines
1.5 KiB
PHP
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ $title ?? 'Admin' }} - Ticket Assistant</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
@livewireStyles
|
|
</head>
|
|
|
|
<body class="bg-slate-100 text-slate-900">
|
|
<div class="min-h-screen">
|
|
<header class="bg-slate-900 text-white">
|
|
<div class="mx-auto max-w-7xl px-6 py-4 flex items-center justify-between">
|
|
<h1 class="text-lg font-semibold">Ticket Assistant Admin</h1>
|
|
<nav class="flex gap-3 text-sm">
|
|
<a href="{{ route('admin.dashboard') }}" class="hover:underline">Dashboard</a>
|
|
<a href="{{ route('admin.articles') }}" class="hover:underline">Articles</a>
|
|
<a href="{{ route('admin.knowledge-search-demo') }}" class="hover:underline">KB demo</a>
|
|
<a href="{{ route('admin.quick-replies') }}" class="hover:underline">Snelantwoorden</a>
|
|
<a href="{{ route('admin.tickets') }}" class="hover:underline">Tickets</a>
|
|
<a href="{{ route('admin.process') }}" class="hover:underline">Proces</a>
|
|
<a href="{{ route('admin.settings') }}" class="hover:underline">Settings</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="mx-auto max-w-7xl px-6 py-6">
|
|
{{ $slot }}
|
|
</main>
|
|
</div>
|
|
@livewireScripts
|
|
</body>
|
|
|
|
</html>
|