Skip to content

Commit c43a58c

Browse files
Gaudy BlancoGaudy Blanco
authored andcommitted
fix for container name
1 parent 542d3db commit c43a58c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

docs/config/yaml.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,6 @@ For example:
197197
vector_store:
198198
type: lancedb
199199
db_uri: output/lancedb
200-
container_name: christmas-carol
201200
index_prefix: "christmas-carol"
202201
embeddings_schema:
203202
text_unit.text:

graphrag/config/defaults.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ class VectorStoreDefaults:
372372
type: ClassVar[str] = VectorStoreType.LanceDB.value
373373
db_uri: str = str(Path(DEFAULT_OUTPUT_BASE_DIR) / "lancedb")
374374
overwrite: bool = True
375-
index_prefix: None = None
375+
index_prefix: str = ""
376376
url: None = None
377377
api_key: None = None
378378
audience: None = None

0 commit comments

Comments
 (0)