Skip to content
Snippets Groups Projects
Unverified Commit 64b909f4 authored by yisding's avatar yisding Committed by GitHub
Browse files

Merge pull request #57 from tyre/typed-filters

add a filter type to exact match filters
parents 1fbfcab5 a2e6299a
No related branches found
No related tags found
No related merge requests found
...@@ -21,6 +21,7 @@ export enum VectorStoreQueryMode { ...@@ -21,6 +21,7 @@ export enum VectorStoreQueryMode {
} }
export interface ExactMatchFilter { export interface ExactMatchFilter {
filterType: "ExactMatch";
key: string; key: string;
value: string | number; value: string | number;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment