File size: 250 Bytes
b699122
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""Init params."""

# TODO: move LLMPredictor to this folder
from gpt_index.llm_predictor.base import LLMPredictor
from gpt_index.llm_predictor.structured import StructuredLLMPredictor

__all__ = [
    "LLMPredictor",
    "StructuredLLMPredictor",
]