Skip to content

Commit a82163c

Browse files
drew-harrisskeptrunedev
authored andcommitted
feat: add match_all to search playground filter options
1 parent 784fc9e commit a82163c

File tree

9 files changed

+174
-99
lines changed

9 files changed

+174
-99
lines changed

clients/ts-sdk/openapi.json

-5
Original file line numberDiff line numberDiff line change
@@ -7190,11 +7190,6 @@
71907190
"type": "object",
71917191
"description": "Filters is a JSON object which can be used to filter chunks. This is useful for when you want to filter chunks by arbitrary metadata. Unlike with tag filtering, there is a performance hit for filtering on metadata.",
71927192
"properties": {
7193-
"jsonb_prefilter": {
7194-
"type": "boolean",
7195-
"description": "JOSNB prefilter tells the server to perform a full scan over the metadata JSONB column instead of using the filtered HNSW. Datasets on the enterprise plan with custom metadata indices will perform better with the filtered HNSW instead. When false, the server will use the filtered HNSW index to filter chunks. When true, the server will perform a full scan over the metadata JSONB column to filter chunks. Default is true.",
7196-
"nullable": true
7197-
},
71987193
"must": {
71997194
"type": "array",
72007195
"items": {

clients/ts-sdk/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"files": [
77
"dist"
88
],
9-
"version": "0.0.35",
9+
"version": "0.0.36",
1010
"license": "MIT",
1111
"scripts": {
1212
"lint": "eslint 'src/**/*.ts'",

clients/ts-sdk/src/types.gen.ts

-4
Original file line numberDiff line numberDiff line change
@@ -209,10 +209,6 @@ export type ChatMessageProxy = {
209209
* Filters is a JSON object which can be used to filter chunks. This is useful for when you want to filter chunks by arbitrary metadata. Unlike with tag filtering, there is a performance hit for filtering on metadata.
210210
*/
211211
export type ChunkFilter = {
212-
/**
213-
* JOSNB prefilter tells the server to perform a full scan over the metadata JSONB column instead of using the filtered HNSW. Datasets on the enterprise plan with custom metadata indices will perform better with the filtered HNSW instead. When false, the server will use the filtered HNSW index to filter chunks. When true, the server will perform a full scan over the metadata JSONB column to filter chunks. Default is true.
214-
*/
215-
jsonb_prefilter?: (boolean) | null;
216212
/**
217213
* All of these field conditions have to match for the chunk to be included in the result set.
218214
*/

0 commit comments

Comments
 (0)