You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ t('context_chat', 'Less files were indexed than expected. Only {percent}% files out of {eligibleCount} are in the VectorDB.', {percent: Math.round((stats.vectordb_document_counts['files__default'] / stats.eligible_files_count) * 100), eligibleCount: stats.eligible_files_count}) }}
18
-
</NcNoteCard>
19
-
<NcNoteCard type="info">
20
-
{{ t('context_chat', 'Eligible files for indexing: {count}', {count: stats.eligible_files_count}) }}
21
-
</NcNoteCard>
22
-
<NcNoteCard type="info">
23
-
{{ t('context_chat', 'Queued files for indexing: {count}', {count: stats.queued_files_count}) }}
24
-
</NcNoteCard>
25
-
<NcNoteCard type="info" v-for="(count, providerId) in stats.queued_documents_counts">
26
-
{{ t('context_chat', 'Queued documents from provider {providerId} for indexing: {count}', {count, providerId}) }}
27
-
</NcNoteCard>
28
-
<NcNoteCard type="info" v-for="(count, providerId) in stats.vectordb_document_counts">
29
-
{{ t('context_chat', 'Documents in VectorDB from provider {providerId} for indexing: {count}', {count, providerId}) }}
{{ t('context_chat', 'Less files were indexed than expected. Only {percent}% files out of {eligibleCount} are in the VectorDB.', {percent: Math.round((stats.vectordb_document_counts['files__default'] / stats.eligible_files_count) * 100), eligibleCount: stats.eligible_files_count}) }}
18
+
</NcNoteCard>
19
+
<NcNoteCard type="info">
20
+
{{ t('context_chat', 'Eligible files for indexing: {count}', {count: stats.eligible_files_count}) }}
21
+
</NcNoteCard>
22
+
<NcNoteCard type="info">
23
+
{{ t('context_chat', 'Queued files for indexing: {count}', {count: stats.queued_files_count}) }}
24
+
</NcNoteCard>
25
+
<NcNoteCard v-for="(count, providerId) in stats.queued_documents_counts" :key="providerId" type="info">
26
+
{{ t('context_chat', 'Queued documents from provider {providerId} for indexing: {count}', {count, providerId}) }}
27
+
</NcNoteCard>
28
+
<NcNoteCard v-for="(count, providerId) in stats.vectordb_document_counts" :key="providerId" type="info">
29
+
{{ t('context_chat', 'Documents in VectorDB from provider {providerId} for indexing: {count}', {count, providerId}) }}
0 commit comments