I am creating my knowledge graph from unstructured text data:
pipeline = SimpleKGPipeline(
driver=self.driver,
text_splitter=self.text_splitter,
embedder=self.embedder,
entities=self.entities,
relations=self.relations,
potential_schema=self.potential_schema,
llm=self.llm,
on_error="IGNORE",
from_pdf=False, # We're handling PDF extraction manually
)
await pipeline.run_async(text=text_with_metadata)
it's been running with good progress, but sometimes it throws error messages like this during the pipeline process:
ERROR:neo4j_graphrag.experimental.components.entity_relation_extractor:LLM response has improper format for chunk_index=5251
I wonder why and how to prevent this?