AbeerTrial's picture
Duplicate from AbeerTrial/SOAPAssist
35b22df
raw
history blame
395 Bytes
"""Keyword Table Index Data Structures."""
# indices
from gpt_index.indices.keyword_table.base import GPTKeywordTableIndex
from gpt_index.indices.keyword_table.rake_base import GPTRAKEKeywordTableIndex
from gpt_index.indices.keyword_table.simple_base import GPTSimpleKeywordTableIndex
__all__ = [
"GPTKeywordTableIndex",
"GPTSimpleKeywordTableIndex",
"GPTRAKEKeywordTableIndex",
]