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 542d3db commit c43a58cCopy full SHA for c43a58c
docs/config/yaml.md
@@ -197,7 +197,6 @@ For example:
197
vector_store:
198
type: lancedb
199
db_uri: output/lancedb
200
- container_name: christmas-carol
201
index_prefix: "christmas-carol"
202
embeddings_schema:
203
text_unit.text:
graphrag/config/defaults.py
@@ -372,7 +372,7 @@ class VectorStoreDefaults:
372
type: ClassVar[str] = VectorStoreType.LanceDB.value
373
db_uri: str = str(Path(DEFAULT_OUTPUT_BASE_DIR) / "lancedb")
374
overwrite: bool = True
375
- index_prefix: None = None
+ index_prefix: str = ""
376
url: None = None
377
api_key: None = None
378
audience: None = None
0 commit comments