@jerryjliu0 @Logan M @hwchase17 what is the difference between declaring llm_predictor while defining the index like this: VectorIndex = GPTSimpleVectorIndex(documents, llm_predictor=llm_predictor) and while querying the index response = index.query(question,llm_predictor=llm_predictor)
good question. this is due to some UX's that we're trying to deprecate. the "official" way should just be the second index.query(..., llm_predictor=llm_predictor)