{% extends 'base.html' %} {% block title %}Library Operations{% endblock %} {% block content_title %}Library Operations{% endblock %} {% block content_description %}Perform operations on the entire library of documents.{% endblock %} {% block content_class %}
{% endblock %} {% block content %}

Create Default RAG Library

This function will create a default library setup for RAG purposes. More specifically, it will create:

  • A default RAG Catalog
  • A Default HTML Processor
  • A default RAG Retriever
  • A default RAG Specialist

This enables a quick start-up for standard Ask Eve AI functionality. All elements can be changed later on an individual basis.

Re-Embed Latest Versions

This functionality will re-apply embeddings on the latest versions of all documents in the library. This is useful only while tuning the embedding parameters, or when changing embedding algorithms. As it is an expensive operation and highly impacts the performance of the system in future use, use it with caution!

Refresh all documents

This operation will create new versions of all documents in the library with a URL. Documents that were uploaded directly, cannot be automatically refreshed. This is an expensive operation, and impacts the performance of the system in future use. Please use it with caution!

{% endblock %}