以下のようなエラー。
from llama_index import SimpleDirectoryReader, ServiceContext, GPTSimpleVectorIndex, LLMPredictor
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name 'GPTSimpleVectorIndex' from 'llama_index'GPTSimpleVectorIndexはGPTVectorStoreIndexに名前が変わっている。
from llama_index import SimpleDirectoryReader, ServiceContext, GPTVectorStoreIndex, LLMPredictorとする。

