fix vault gate display cleanup, add GitLab source link to Reverse RAG whitepaper
This commit is contained in:
parent
44e6e337cd
commit
377f245e0d
2 changed files with 4 additions and 3 deletions
|
|
@ -123,6 +123,8 @@
|
|||
|
||||
<p><a href="/reverse-rag.pdf" target="_blank" role="button">Read the full whitepaper (PDF)</a></p>
|
||||
|
||||
<p><a href="https://git.unturf.com/engineering/unturf/reverse-retrieval-augmented-generation-whitepaper" target="_blank" role="button">Source repository (GitLab)</a></p>
|
||||
|
||||
<h3>Citation</h3>
|
||||
<pre><code>russell@unturf, cthegray, TimeHexOn, foxhop. "Reverse Retrieval Augmented
|
||||
Generation: Client-Side Context Injection for Small Language Models."
|
||||
|
|
|
|||
|
|
@ -1969,7 +1969,6 @@ async function openUncloseaiEmbeddedModalNew() {
|
|||
function showVaultGate() {
|
||||
const hasVault = UncloseVault.hasVault();
|
||||
vaultGate.innerHTML = "";
|
||||
vaultGate.style.display = "flex";
|
||||
|
||||
const gateCard = document.createElement("div");
|
||||
gateCard.className = "uncloseai-vault-card";
|
||||
|
|
@ -2011,7 +2010,7 @@ async function openUncloseaiEmbeddedModalNew() {
|
|||
if (vaultExists) {
|
||||
const result = UncloseVault.unlock(password);
|
||||
if (result.success) {
|
||||
vaultGate.style.display = "none";
|
||||
vaultGate.remove();
|
||||
buildVaultUI();
|
||||
refreshSettingsFromVault();
|
||||
startChat();
|
||||
|
|
@ -2030,7 +2029,7 @@ async function openUncloseaiEmbeddedModalNew() {
|
|||
const result = UncloseVault.create(password);
|
||||
if (result.success) {
|
||||
migrateSettingsToVault();
|
||||
vaultGate.style.display = "none";
|
||||
vaultGate.remove();
|
||||
buildVaultUI();
|
||||
refreshSettingsFromVault();
|
||||
startChat();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue