Skip to content
This repository was archived by the owner on May 27, 2025. It is now read-only.

Commit 164ac13

Browse files
authored
Enable claim extraction by default (#38)
1 parent 9d73b82 commit 164ac13

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

backend/src/api/pipeline-settings.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,9 @@ community_reports:
8383
summarize_descriptions:
8484
prompt: PLACEHOLDER
8585

86+
# claim extraction is disabled by default in the graphrag library so we enable it for the solution accelerator
87+
claim_extraction:
88+
enabled: True
89+
8690
snapshots:
8791
graphml: True

notebooks/2-Advanced_Getting_Started.ipynb

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -852,8 +852,7 @@
852852
"id": "46",
853853
"metadata": {},
854854
"source": [
855-
"#### Get a Claim\n",
856-
"Note: claims are supported only if the solution accelerator deployment was initially configured to enable claims."
855+
"#### Get a Claim"
857856
]
858857
},
859858
{
@@ -891,7 +890,7 @@
891890
"outputs": [],
892891
"source": [
893892
"# get a text unit id from one of the previous Source endpoint results (look for 'text_units' in the response)\n",
894-
"text_unit_id = \"a1ea6b4d13016fa863f4d76a0dd532e3\"\n",
893+
"text_unit_id = \"\"\n",
895894
"if not text_unit_id:\n",
896895
" raise ValueError(\n",
897896
" \"Must provide a text_unit_id from previous source results. Look for 'text_units' in the response.\"\n",
@@ -971,7 +970,7 @@
971970
"name": "python",
972971
"nbconvert_exporter": "python",
973972
"pygments_lexer": "ipython3",
974-
"version": "3.10.13"
973+
"version": "3.10.14"
975974
}
976975
},
977976
"nbformat": 4,

0 commit comments

Comments
 (0)