Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions snippets/general-shared-text/azure-ai-search.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,25 @@ Here are some more details about these requirements:
"vectorSearchProfile": null,
"vectorEncoding": null,
"synonymMaps": []
},
{
"name": "partitioner_type",
"type": "Edm.String",
"searchable": false,
"filterable": true,
"retrievable": true,
"stored": true,
"sortable": true,
"facetable": true,
"key": false,
"indexAnalyzer": null,
"searchAnalyzer": null,
"analyzer": null,
"normalizer": null,
"dimensions": null,
"vectorSearchProfile": null,
"vectorEncoding": null,
"synonymMaps": []
}
]
}
Expand Down
3 changes: 2 additions & 1 deletion snippets/general-shared-text/databricks-delta-table.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@
coordinates_points STRING,
coordinates_system STRING,
coordinates_layout_width FLOAT,
coordinates_layout_height FLOAT
coordinates_layout_height FLOAT,
partitioner_type STRING
);
```

Expand Down
3 changes: 2 additions & 1 deletion snippets/general-shared-text/duckdb.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@
emphasized_text_tags VARCHAR[],
text_as_html TEXT,
regex_metadata TEXT,
detection_class_prob DECIMAL
detection_class_prob DECIMAL,
partitioner_type VARCHAR
);
```

Expand Down
3 changes: 3 additions & 0 deletions snippets/general-shared-text/elasticsearch.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@
},
"orig_elements": {
"type": "text"
},
"partitioner_type": {
"type": "text"
}
}
}
Expand Down
3 changes: 2 additions & 1 deletion snippets/general-shared-text/motherduck.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ allowfullscreen
emphasized_text_tags VARCHAR[],
text_as_html TEXT,
regex_metadata TEXT,
detection_class_prob DECIMAL
detection_class_prob DECIMAL,
partitioner_type VARCHAR
);
```

Expand Down
3 changes: 3 additions & 0 deletions snippets/general-shared-text/opensearch.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@
},
"orig_elements": {
"type": "text"
},
"partitioner_type": {
"type": "text"
}
}
}
Expand Down
6 changes: 4 additions & 2 deletions snippets/general-shared-text/postgresql.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ import AllowIPAddressRanges from '/snippets/general-shared-text/ip-address-range
parent_id VARCHAR,
page_number INTEGER,
is_continuation BOOLEAN,
orig_elements TEXT
orig_elements TEXT,
partitioner_type VARCHAR
);
```

Expand All @@ -104,7 +105,8 @@ import AllowIPAddressRanges from '/snippets/general-shared-text/ip-address-range
parent_id VARCHAR,
page_number INTEGER,
is_continuation BOOLEAN,
orig_elements TEXT
orig_elements TEXT,
partitioner_type VARCHAR
);
```
</CodeGroup>
Expand Down
3 changes: 2 additions & 1 deletion snippets/general-shared-text/singlestore-schema.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ CREATE TABLE elements (
parent_id TEXT,
page_number TEXT,
is_continuation BOOLEAN,
orig_elements TEXT
orig_elements TEXT,
partitioner_type TEXT
);
```

Expand Down
3 changes: 2 additions & 1 deletion snippets/general-shared-text/snowflake.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,8 @@
TEXT_AS_HTML VARCHAR,
REGEX_METADATA VARCHAR,
DETECTION_CLASS_PROB NUMBER,
PRIMARY KEY (ID)
PRIMARY KEY (ID),
PARTITIONER_TYPE VARCHAR
);
```

Expand Down
3 changes: 2 additions & 1 deletion snippets/general-shared-text/sqlite.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
parent_id TEXT,
page_number INTEGER,
is_continuation INTEGER,
orig_elements TEXT
orig_elements TEXT,
partitioner_type TEXT
);
```

Expand Down
4 changes: 4 additions & 0 deletions snippets/general-shared-text/weaviate.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@ You can adapt the following collection schema example for your own specific sche
{
"name": "orig_elements",
"dataType": ["text"]
},
{
"name": "partitioner_type",
"dataType": ["text"]
}
]
}
Expand Down