Skip to content

Commit f5a955e

Browse files
committed
run check
1 parent 811eaa2 commit f5a955e

File tree

5 files changed

+6
-2
lines changed

5 files changed

+6
-2
lines changed

docs/index/outputs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ List of document content after import.
6767
| title | str | Filename, unless otherwise configured during CSV import. |
6868
| text | str | Full text of the document. |
6969
| text_unit_ids | str[] | List of text units (chunks) that were parsed from the document. |
70-
| attributes | dict | (optional) If specified during CSV import, this is a dict of attributes for the document. |
70+
| metadata | dict | (optional) If specified during CSV import, this is a dict of metadata for the document. |
7171

7272
## create_final_entities
7373
List of all entities found in the data by the LM.

graphrag/index/flows/create_final_documents.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def create_final_documents(
5757
# Drop the original metadata columns after collapsing them
5858
rejoined.drop(columns=metadata, inplace=True)
5959

60-
# set the final column order, but adjust for attributes
60+
# set the final column order, but adjust for metadata
6161
core_columns = [
6262
"id",
6363
"human_readable_id",
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Copyright (c) 2024 Microsoft Corporation.
2+
# Licensed under the MIT License
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Copyright (c) 2024 Microsoft Corporation.
2+
# Licensed under the MIT License

tests/unit/indexing/operations/test_strategies.py renamed to tests/unit/indexing/operations/chunk_text/test_strategies.py

File renamed without changes.

0 commit comments

Comments
 (0)