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 51912b2 commit c90166cCopy full SHA for c90166c
.semversioner/next-release/patch-20241114182805008149.json
@@ -0,0 +1,4 @@
1
+{
2
+ "type": "patch",
3
+ "description": "Add Parquet as part of the default emitters when not pressent"
4
+}
graphrag/api/index.py
@@ -59,6 +59,10 @@ async def build_index(
59
msg = "Cannot resume and update a run at the same time."
60
raise ValueError(msg)
61
62
+ # Ensure Parquet is part of the emitters
63
+ if TableEmitterType.Parquet not in emit:
64
+ emit.append(TableEmitterType.Parquet)
65
+
66
config = _patch_vector_config(config)
67
68
pipeline_config = create_pipeline_config(config)
0 commit comments