B. 需协助卡马-指数模块进口
我用Llama.index在我的沙捞法中跑到一些进口问题上。 I m 试图使用几个模块,包括LLMPredictor
、PromptHelper
、SimpleDirectoryReader
等,但Im 正在出现一个具体用于GPTVectorStoreIndex
的错误:
File "d:lzira_0.0.2main.py", line 5, in <module>
from llama_index import (
ImportError: cannot import name GPTVectorStoreIndex from llama_index (unknown location)
from llama_index import (
GPTVectorStoreIndex,
LLMPredictor,
PromptHelper,
ServiceContext,
SimpleDirectoryReader,
StorageContext,
load_index_from_storage,
)
from llama_index.llm_predictor.mock import MockLLMPredictor
from llama_index.nodes.parser import SimpleNodeParser
from llama_index.response.formatting import SimpleOutputFormatter
I ve checked the documentation and it seems like GPTVectorStoreIndex
should be part of Llama.index, but I can t import it. I m using pip
to manage my dependencies, so I m not sure why it s not available.
以下是我迄今为止所尝试的一些事情:
Double-checked import path: I ve verified that the spelling and path are correct (
from llama_index import GPTVectorStoreIndex
).<>恢复发展环境: 我已重新启用了我的教育学院,以确保更新的图书馆配备齐全。
这些问题已经解决。
您是否就如何纠正这一进口错误和使用,GPTVectorStoreIndex
与Llama.index?
Any help would be greatly appreciated!