{
"tool_response": {
"type": "update",
"filePath": "\/var\/www\/dev.campus.systemische-tools.de\/src\/View\/semantic-explorer\/chunks\/index.php",
"content": "<?php ob_start(); ?>\n\n<nav class=\"breadcrumb\">\n <a href=\"\/\">Home<\/a> » <a href=\"\/explorer\">Explorer<\/a> » <a href=\"\/semantic-explorer\">Semantic Explorer<\/a> » Chunks\n<\/nav>\n\n<h1>Chunks<\/h1>\n<p>Semantische Textabschnitte aus Dokumenten. Gesamt: <?= number_format($totalCount) ?> Chunks.<\/p>\n\n<div class=\"filters\">\n <input type=\"search\" id=\"chunks-search\" class=\"form-input\" placeholder=\"Durchsuchen...\">\n <select id=\"filter-embedded\" class=\"form-select--inline\">\n <option value=\"\">Alle<\/option>\n <option value=\"synced\">Mit Embedding<\/option>\n <option value=\"pending\">Ohne Embedding<\/option>\n <\/select>\n<\/div>\n\n<table id=\"chunks-table\" data-sortable>\n <thead>\n <tr>\n <th data-sort=\"id\">ID<\/th>\n <th data-sort=\"filename\">Dokument<\/th>\n <th data-sort=\"chunk_index\">Index<\/th>\n <th data-sort=\"token_count\">Tokens<\/th>\n <th data-sort=\"status\">Status<\/th>\n <th data-sort=\"content\">Inhalt<\/th>\n <\/tr>\n <\/thead>\n <tbody>\n <?php foreach ($chunks as $c): ?>\n <tr>\n <td><a href=\"\/semantic-explorer\/chunks\/<?= $c['id'] ?>\">#<?= $c['id'] ?><\/a><\/td>\n <td><a href=\"\/semantic-explorer\/dokumente\/<?= $c['document_id'] ?>\"><?= htmlspecialchars($c['filename']) ?><\/a><\/td>\n <td><?= $c['chunk_index'] ?><\/td>\n <td><?= $c['token_count'] ?><\/td>\n <td>\n <?php if ($c['qdrant_id']): ?>\n <span class=\"badge badge--success\">synced<\/span>\n <?php else: ?>\n <span class=\"badge\">pending<\/span>\n <?php endif; ?>\n <\/td>\n <td><?= htmlspecialchars(substr($c['content'], 0, 80)) ?>...<\/td>\n <\/tr>\n <?php endforeach; ?>\n <\/tbody>\n<\/table>\n\n<p class=\"links-bar\">\n <a href=\"\/semantic-explorer\">Zurueck zum Explorer<\/a>\n<\/p>\n\n<script type=\"module\">\nimport { init } from '\/js\/components\/data-table.js';\n\nconst dataTable = init({\n clock: { now_epoch_ms_utc: () => Date.now() },\n logger: console,\n ui: {\n showMessage: (msg) => { console.log(msg.type + ': ' + msg.text); },\n disableFeature: (key) => { console.warn('Feature disabled: ' + key); },\n offerRetry: () => Promise.resolve(false)\n },\n runId: crypto.randomUUID()\n});\n\ndataTable.create('chunks-table', {\n searchInput: 'chunks-search',\n pageSize: 20,\n filters: {\n 'filter-embedded': 4\n }\n});\n<\/script>\n\n<?php $content = ob_get_clean(); ?>\n<?php require VIEW_PATH . '\/layout.php'; ?>\n",
"structuredPatch": [
{
"oldStart": 7,
"oldLines": 27,
"newStart": 7,
"newLines": 23,
"lines": [
" <h1>Chunks<\/h1>",
" <p>Semantische Textabschnitte aus Dokumenten. Gesamt: <?= number_format($totalCount) ?> Chunks.<\/p>",
" ",
"-<form method=\"get\" class=\"filter-form\">",
"- <input type=\"text\" name=\"search\" value=\"<?= htmlspecialchars($currentSearch) ?>\" placeholder=\"Im Inhalt suchen...\">",
"- <select name=\"embedded\">",
"+<div class=\"filters\">",
"+ <input type=\"search\" id=\"chunks-search\" class=\"form-input\" placeholder=\"Durchsuchen...\">",
"+ <select id=\"filter-embedded\" class=\"form-select--inline\">",
" <option value=\"\">Alle<\/option>",
"- <option value=\"yes\" <?= $currentEmbedded === 'yes' ? 'selected' : '' ?>>Mit Embedding<\/option>",
"- <option value=\"no\" <?= $currentEmbedded === 'no' ? 'selected' : '' ?>>Ohne Embedding<\/option>",
"+ <option value=\"synced\">Mit Embedding<\/option>",
"+ <option value=\"pending\">Ohne Embedding<\/option>",
" <\/select>",
"- <button type=\"submit\" class=\"btn btn--primary\">Filtern<\/button>",
"- <?php if ($currentSearch || $currentEmbedded): ?>",
"- <a href=\"\/semantic-explorer\/chunks\" class=\"btn\">Reset<\/a>",
"- <?php endif; ?>",
"-<\/form>",
"+<\/div>",
" ",
"-<table data-sortable>",
"+<table id=\"chunks-table\" data-sortable>",
" <thead>",
" <tr>",
" <th data-sort=\"id\">ID<\/th>",
" <th data-sort=\"filename\">Dokument<\/th>",
" <th data-sort=\"chunk_index\">Index<\/th>",
" <th data-sort=\"token_count\">Tokens<\/th>",
"- <th data-sort=\"qdrant_id\">Status<\/th>",
"+ <th data-sort=\"status\">Status<\/th>",
" <th data-sort=\"content\">Inhalt<\/th>",
" <\/tr>",
" <\/thead>"
]
},
{
"oldStart": 51,
"oldLines": 23,
"newStart": 47,
"newLines": 32,
"lines": [
" <\/tbody>",
" <\/table>",
" ",
"-<?php if ($totalPages > 1): ?>",
"-<div class=\"pagination\">",
"- <?php if ($currentPage > 1): ?>",
"- <a href=\"?page=<?= $currentPage - 1 ?>&search=<?= urlencode($currentSearch) ?>&embedded=<?= urlencode($currentEmbedded) ?>\" class=\"btn btn--small\">« Zurueck<\/a>",
"- <?php endif; ?>",
"-",
"- <span>Seite <?= $currentPage ?> von <?= $totalPages ?><\/span>",
"-",
"- <?php if ($currentPage < $totalPages): ?>",
"- <a href=\"?page=<?= $currentPage + 1 ?>&search=<?= urlencode($currentSearch) ?>&embedded=<?= urlencode($currentEmbedded) ?>\" class=\"btn btn--small\">Weiter »<\/a>",
"- <?php endif; ?>",
"-<\/div>",
"-<?php endif; ?>",
"-",
" <p class=\"links-bar\">",
" <a href=\"\/semantic-explorer\">Zurueck zum Explorer<\/a>",
" <\/p>",
" ",
"+<script type=\"module\">",
"+import { init } from '\/js\/components\/data-table.js';",
"+",
"+const dataTable = init({",
"+ clock: { now_epoch_ms_utc: () => Date.now() },",
"+ logger: console,",
"+ ui: {",
"+ showMessage: (msg) => { console.log(msg.type + ': ' + msg.text); },",
"+ disableFeature: (key) => { console.warn('Feature disabled: ' + key); },",
"+ offerRetry: () => Promise.resolve(false)",
"+ },",
"+ runId: crypto.randomUUID()",
"+});",
"+",
"+dataTable.create('chunks-table', {",
"+ searchInput: 'chunks-search',",
"+ pageSize: 20,",
"+ filters: {",
"+ 'filter-embedded': 4",
"+ }",
"+});",
"+<\/script>",
"+",
" <?php $content = ob_get_clean(); ?>",
" <?php require VIEW_PATH . '\/layout.php'; ?>"
]
}
],
"originalFile": "<?php ob_start(); ?>\n\n<nav class=\"breadcrumb\">\n <a href=\"\/\">Home<\/a> » <a href=\"\/explorer\">Explorer<\/a> » <a href=\"\/semantic-explorer\">Semantic Explorer<\/a> » Chunks\n<\/nav>\n\n<h1>Chunks<\/h1>\n<p>Semantische Textabschnitte aus Dokumenten. Gesamt: <?= number_format($totalCount) ?> Chunks.<\/p>\n\n<form method=\"get\" class=\"filter-form\">\n <input type=\"text\" name=\"search\" value=\"<?= htmlspecialchars($currentSearch) ?>\" placeholder=\"Im Inhalt suchen...\">\n <select name=\"embedded\">\n <option value=\"\">Alle<\/option>\n <option value=\"yes\" <?= $currentEmbedded === 'yes' ? 'selected' : '' ?>>Mit Embedding<\/option>\n <option value=\"no\" <?= $currentEmbedded === 'no' ? 'selected' : '' ?>>Ohne Embedding<\/option>\n <\/select>\n <button type=\"submit\" class=\"btn btn--primary\">Filtern<\/button>\n <?php if ($currentSearch || $currentEmbedded): ?>\n <a href=\"\/semantic-explorer\/chunks\" class=\"btn\">Reset<\/a>\n <?php endif; ?>\n<\/form>\n\n<table data-sortable>\n <thead>\n <tr>\n <th data-sort=\"id\">ID<\/th>\n <th data-sort=\"filename\">Dokument<\/th>\n <th data-sort=\"chunk_index\">Index<\/th>\n <th data-sort=\"token_count\">Tokens<\/th>\n <th data-sort=\"qdrant_id\">Status<\/th>\n <th data-sort=\"content\">Inhalt<\/th>\n <\/tr>\n <\/thead>\n <tbody>\n <?php foreach ($chunks as $c): ?>\n <tr>\n <td><a href=\"\/semantic-explorer\/chunks\/<?= $c['id'] ?>\">#<?= $c['id'] ?><\/a><\/td>\n <td><a href=\"\/semantic-explorer\/dokumente\/<?= $c['document_id'] ?>\"><?= htmlspecialchars($c['filename']) ?><\/a><\/td>\n <td><?= $c['chunk_index'] ?><\/td>\n <td><?= $c['token_count'] ?><\/td>\n <td>\n <?php if ($c['qdrant_id']): ?>\n <span class=\"badge badge--success\">synced<\/span>\n <?php else: ?>\n <span class=\"badge\">pending<\/span>\n <?php endif; ?>\n <\/td>\n <td><?= htmlspecialchars(substr($c['content'], 0, 80)) ?>...<\/td>\n <\/tr>\n <?php endforeach; ?>\n <\/tbody>\n<\/table>\n\n<?php if ($totalPages > 1): ?>\n<div class=\"pagination\">\n <?php if ($currentPage > 1): ?>\n <a href=\"?page=<?= $currentPage - 1 ?>&search=<?= urlencode($currentSearch) ?>&embedded=<?= urlencode($currentEmbedded) ?>\" class=\"btn btn--small\">« Zurueck<\/a>\n <?php endif; ?>\n\n <span>Seite <?= $currentPage ?> von <?= $totalPages ?><\/span>\n\n <?php if ($currentPage < $totalPages): ?>\n <a href=\"?page=<?= $currentPage + 1 ?>&search=<?= urlencode($currentSearch) ?>&embedded=<?= urlencode($currentEmbedded) ?>\" class=\"btn btn--small\">Weiter »<\/a>\n <?php endif; ?>\n<\/div>\n<?php endif; ?>\n\n<p class=\"links-bar\">\n <a href=\"\/semantic-explorer\">Zurueck zum Explorer<\/a>\n<\/p>\n\n<?php $content = ob_get_clean(); ?>\n<?php require VIEW_PATH . '\/layout.php'; ?>\n"
}
}