Jeff C
Results
1
comments of
Jeff C
``` index = GPTSimpleVectorIndex.load_from_disk('index.json') ``` Try: ``` llm_predictor = LLMPredictor(llm=OpenAI(temperature=0, model_name="gpt-3.5-turbo", max_tokens=250)) index = GPTSimpleVectorIndex.load_from_disk('index.json', llm_predictor=llm_predictor) ```