Updated documentation examples to include chunk_order_index case
This commit is contained in:
parent
701d8bb48e
commit
7fab9accfe
2 changed files with 17 additions and 0 deletions
|
|
@ -608,14 +608,22 @@ custom_kg = {
|
||||||
{
|
{
|
||||||
"content": "ProductX, developed by CompanyA, has revolutionized the market with its cutting-edge features.",
|
"content": "ProductX, developed by CompanyA, has revolutionized the market with its cutting-edge features.",
|
||||||
"source_id": "Source1",
|
"source_id": "Source1",
|
||||||
|
"chunk_order_index": 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "One outstanding feature of ProductX is its advanced AI capabilities.",
|
||||||
|
"source_id": "Source1",
|
||||||
|
"chunk_order_index": 1,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"content": "PersonA is a prominent researcher at UniversityB, focusing on artificial intelligence and machine learning.",
|
"content": "PersonA is a prominent researcher at UniversityB, focusing on artificial intelligence and machine learning.",
|
||||||
"source_id": "Source2",
|
"source_id": "Source2",
|
||||||
|
"chunk_order_index": 0,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"content": "None",
|
"content": "None",
|
||||||
"source_id": "UNKNOWN",
|
"source_id": "UNKNOWN",
|
||||||
|
"chunk_order_index": 0,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -87,18 +87,27 @@ custom_kg = {
|
||||||
{
|
{
|
||||||
"content": "ProductX, developed by CompanyA, has revolutionized the market with its cutting-edge features.",
|
"content": "ProductX, developed by CompanyA, has revolutionized the market with its cutting-edge features.",
|
||||||
"source_id": "Source1",
|
"source_id": "Source1",
|
||||||
|
"source_chunk_index": 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "One outstanding feature of ProductX is its advanced AI capabilities.",
|
||||||
|
"source_id": "Source1",
|
||||||
|
"chunk_order_index": 1,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"content": "PersonA is a prominent researcher at UniversityB, focusing on artificial intelligence and machine learning.",
|
"content": "PersonA is a prominent researcher at UniversityB, focusing on artificial intelligence and machine learning.",
|
||||||
"source_id": "Source2",
|
"source_id": "Source2",
|
||||||
|
"source_chunk_index": 0,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"content": "EventY, held in CityC, attracts technology enthusiasts and companies from around the globe.",
|
"content": "EventY, held in CityC, attracts technology enthusiasts and companies from around the globe.",
|
||||||
"source_id": "Source3",
|
"source_id": "Source3",
|
||||||
|
"source_chunk_index": 0,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"content": "None",
|
"content": "None",
|
||||||
"source_id": "UNKNOWN",
|
"source_id": "UNKNOWN",
|
||||||
|
"source_chunk_index": 0,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue