v0.2.9 - Aquiles-RAG
🚀 Release v0.2.9
-
📝 Changes to the gen_configs_file() function for Aquiles-RAG deployment
- In the
gen_configs_file()function, a new parameter calledforceof type boolean has been added. If it is activated, it forces the rewriting of the configuration when deploying. By default, it is False.
- In the
-
➕ New metadata fields have been added to improve indexing and searching
- In the
/rag/createand/rag/query-ragendpoints a new optional parameter calledembedding_modelhas been added that is used to save metadata of the model that generated the embeddings, improving search and adding a layer of security to retrieve information.
- In the
-
⚖️ License change from MIT to Apache 2.0
- We wanted a more robust license for everyone that remains as permissive as MIT.
-
⛏️Configuration loading has been made asynchronous and embedding_model support has been completed on clients
-
load_aquiles_config()has been rewritten as an asynchronous function usingaiofiles. This reduces blocking time during startup/queries (internal testing shows performance improvements of up to 3× on the startup/config path). -
The
AsyncAquilesRAGandAquilesRAGclients have added support for embedding model metadata in thequery()andsend_rag()metadata, including their docstrings.
-