Open CCzzzzzzz opened 3 months ago
@CCzzzzzzz Hello there! I'm here to help you with any bugs, questions, or contributions you may have while waiting for a human maintainer.
The error you're encountering is due to a circular import issue in the llama_index
library. This is a known issue. To resolve this, you can try the following steps:
Ensure you have the correct version of the neo4j
package installed:
pip install neo4j
Check for circular imports: Sometimes, restructuring your import statements can help avoid circular import issues. Try importing Neo4jGraphStore
at a different point in your code, or ensure that no other imports are causing a circular dependency.
Use the correct import path: The import path for Neo4jGraphStore
should be:
from llama_index.graph_stores.neo4j import Neo4jGraphStore
If the issue persists, it might be related to a known circular import problem in the llama_index
library. Unfortunately, there is no specific workaround for this issue mentioned in the provided context. You might need to wait for a fix from the maintainers or check for any updates in the library that address this issue [1].
For now, ensure that your environment is correctly set up and that you are using the latest versions of the required packages.
To continue talking to Dosu, mention @dosu.
I think it's a mismatch between llama-index or other package versions.
Hello please i am having same issue were you able to solve yours?
Hi I got it solved. Turns out my files naming scheme was similar to the package I was importing
Bug Description
I followed his instructions, but i can't import 'Neo4jGraphStore': from llama_index.graph_stores.neo4j import Neo4jGraphStore ImportError: cannot import name 'Neo4jGraphStore' from partially initialized module 'llama_index.graph_stores.neo4j' (most likely due to a circular import) (C:\Users\cpdft.conda\envs\llamaindex\lib\site-packages\llama_index\graph_stores\neo4j__init__.py)
Version
0.10.55
Steps to Reproduce
from llama_index.core import KnowledgeGraphIndex, SimpleDirectoryReader from llama_index.core import StorageContext from llama_index.graph_stores.neo4j import Neo4jGraphStore
initializing neo4j
graph_store = Neo4jGraphStore( username=username, password=password, url=url, database=database, )
Relevant Logs/Tracbacks
ImportError: cannot import name 'Neo4jGraphStore' from partially initialized module 'llama_index.graph_stores.neo4j' (most likely due to a circular import) (C:\Users\cpdft.conda\envs\llamaindex\lib\site-packages\llama_index\graph_stores\neo4j__init__.py)