Skip to content

Commit

Permalink
Fixed neo4j writer docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
alexthomas93 committed Sep 2, 2024
1 parent 6e3c8fa commit e5fcf5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/neo4j_genai/experimental/components/kg_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class Neo4jWriter(KGWriter):
DATABASE = "neo4j"
driver = AsyncGraphDatabase.driver(URI, auth=AUTH, database=DATABASE)
writer = AsyncNeo4jWriter(driver=driver, neo4j_database=DATABASE)
writer = Neo4jWriter(driver=driver, neo4j_database=DATABASE)
pipeline = Pipeline()
pipeline.add_component("writer", writer)
Expand Down

0 comments on commit e5fcf5a

Please sign in to comment.