31 lines
1.6 KiB
Vue
31 lines
1.6 KiB
Vue
<template>
|
|
<div class="media-tab-backend" style="padding: 2rem; overflow-y: auto;">
|
|
<div style="max-width: 640px;">
|
|
<h2 style="font-weight: 700; font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--nav-text);">LightRAG backend</h2>
|
|
<p style="font-size: 0.9rem; line-height: 1.6; color: var(--nav-text); margin-bottom: 0.5rem;">
|
|
Voici l'interface brute du <strong>LightRAG</strong> qui alimente la carte des pensées écologiques.
|
|
C'est la "cuisine" du RAG : ingestion de documents, extraction d'entités, relations, requêtes.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- PLACEHOLDER — DNS en attente
|
|
TODO: Décommenter iframe + supprimer placeholder une fois lightrag.trans-former.fr propagé.
|
|
DNS A record à créer sur OVH : lightrag → 178.104.106.195 TTL 300
|
|
-->
|
|
<div style="margin-top: 1.5rem; padding: 2rem; border: 2px dashed var(--nav-bg-alt, #ddd); border-radius: 8px; text-align: center; color: var(--nav-text-muted);">
|
|
<p style="font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem;">⏳ Backend en cours d'exposition publique — bientôt accessible.</p>
|
|
<p style="font-size: 0.85rem;">L'interface LightRAG sera disponible ici dès la mise en place du sous-domaine <code>lightrag.trans-former.fr</code>.</p>
|
|
</div>
|
|
|
|
<!--
|
|
<iframe
|
|
src="https://lightrag.trans-former.fr/"
|
|
style="width: 100%; height: 70vh; border: 1px solid var(--nav-bg-alt, #ddd); border-radius: 8px; margin-top: 1.5rem;"
|
|
title="LightRAG backend AEP — lecture seule"
|
|
sandbox="allow-same-origin allow-scripts"
|
|
loading="lazy"
|
|
/>
|
|
-->
|
|
</div>
|
|
</template>
|