We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc4d87a commit 197051aCopy full SHA for 197051a
src/neo4j_graphrag/experimental/pipeline/pipeline.py
@@ -203,7 +203,7 @@ def draw(
203
G = self._get_neo4j_viz_graph(hide_unused_outputs)
204
205
# Write the visualization to an HTML file
206
- with open(path, "w") as f:
+ with open(path, "w", encoding="utf-8") as f:
207
f.write(G.render().data)
208
209
return G
0 commit comments