AbeerTrial's picture
Upload folder using huggingface_hub
8a58cf3
raw
history blame
380 Bytes
"""Query classes for tree indices."""
from gpt_index.indices.query.tree.embedding_query import GPTTreeIndexEmbeddingQuery
from gpt_index.indices.query.tree.leaf_query import GPTTreeIndexLeafQuery
from gpt_index.indices.query.tree.retrieve_query import GPTTreeIndexRetQuery
__all__ = [
"GPTTreeIndexLeafQuery",
"GPTTreeIndexRetQuery",
"GPTTreeIndexEmbeddingQuery",
]