{ const res = await deleteAllFiles(localStorage.token).catch((error) => { toast.error(`${error}`); return null; }); if (res) { toast.success($i18n.t('Success')); } }} /> { const res = resetVectorDB(localStorage.token).catch((error) => { toast.error(`${error}`); return null; }); if (res) { toast.success($i18n.t('Success')); } }} />
{ submitHandler(); }} >
{$i18n.t('General')}

{$i18n.t('Content Extraction Engine')}
{#if contentExtractionEngine === 'tika'}
{:else if contentExtractionEngine === 'docling'}
{:else if contentExtractionEngine === 'document_intelligence'}
{/if}
{#if contentExtractionEngine === ''}
{$i18n.t('PDF Extract Images (OCR)')}
{/if}
{$i18n.t('Bypass Embedding and Retrieval')}
{#if !BYPASS_EMBEDDING_AND_RETRIEVAL}
{$i18n.t('Text Splitter')}
{$i18n.t('Chunk Size')}
{$i18n.t('Chunk Overlap')}
{/if}
{#if !BYPASS_EMBEDDING_AND_RETRIEVAL}
{$i18n.t('Embedding')}

{$i18n.t('Embedding Model Engine')}
{#if embeddingEngine === 'openai'}
{:else if embeddingEngine === 'ollama'}
{/if}
{$i18n.t('Embedding Model')}
{#if embeddingEngine === 'ollama'}
{:else}
{#if embeddingEngine === ''} {/if}
{/if}
{$i18n.t( 'Warning: If you update or change your embedding model, you will need to re-import all documents.' )}
{#if embeddingEngine === 'ollama' || embeddingEngine === 'openai'}
{$i18n.t('Embedding Batch Size')}
{/if}
{$i18n.t('Retrieval')}

{$i18n.t('Full Context Mode')}
{#if !RAG_FULL_CONTEXT}
{$i18n.t('Hybrid Search')}
{ toggleHybridSearch(); }} />
{#if querySettings.hybrid === true}
{$i18n.t('Reranking Model')}
{/if}
{$i18n.t('Top K')}
{#if querySettings.hybrid === true}
{$i18n.t('Top K Reranker')}
{/if} {#if querySettings.hybrid === true}
{$i18n.t('Minimum Score')}
{$i18n.t( 'Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.' )}
{/if} {/if}
{$i18n.t('RAG Template')}