add FLAREEngine and ColbertRerank

This commit is contained in:
seehi 2024-03-21 17:11:18 +08:00
parent 6e30b42cc0
commit 73953c025d

View file

@ -0,0 +1,9 @@
"""FLARE Engine.
Use llamaindex's FLAREInstructQueryEngine, which accepts other engines as parameters.
For example, Create a simple engine, and then pass it to FLAREEngine.
"""
from llama_index.core.query_engine import ( # noqa: F401
FLAREInstructQueryEngine as FLAREEngine,
)