Back to Knowledge Bases

Chunk Preview

File: {{ filename }} KB: {{ kb }} Total Chunks: {{ chunks|length }}
{% if file_exists %}

File Already Exists

Warning: A file named "{{ filename }}" already exists in this knowledge base with {{ existing_chunk_count }} chunk(s).

If you continue, the existing chunks will be deleted and replaced with the new {{ chunks|length }} chunk(s).

💡 Tip: If you want to keep both versions, rename the file before uploading (e.g., "{{ filename.rsplit('.', 1)[0] }}_v2.{{ filename.rsplit('.', 1)[1] if '.' in filename else 'txt' }}").

{% endif %}

Chunking Options

Chunks Preview

{% for chunk in chunks %}
Chunk {{ chunk.chunk_index + 1 }} {{ chunk.token_count }} tokens
{{ chunk.text }}
{% endfor %}
Cancel