Skip to content

Commit 435db17

Browse files
neebdevjacoblee93
andauthored
Feat: Weaviate delete with filter (langchain-ai#2093)
* Feature: Weaviate delete with filter * remove redundancy in delete function * create deleteIndex static method in weaviate * removed deleteIndex static method * Skip test, add fallthrough case --------- Co-authored-by: jacoblee93 <[email protected]>
1 parent 4e62a59 commit 435db17

File tree

3 files changed

+110
-8
lines changed

3 files changed

+110
-8
lines changed

examples/src/indexes/vector_stores/weaviate_delete.ts

+40
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,51 @@ export async function run() {
3232
[ Document { pageContent: 'see ya!', metadata: { foo: 'bar' } } ]
3333
*/
3434

35+
// Delete documents with ids
3536
await store.delete({ ids });
3637

3738
const results2 = await store.similaritySearch("see ya!", 1);
3839
console.log(results2);
3940
/*
4041
[]
4142
*/
43+
44+
const docs2 = [
45+
{ pageContent: "hello world", metadata: { foo: "bar" } },
46+
{ pageContent: "hi there", metadata: { foo: "baz" } },
47+
{ pageContent: "how are you", metadata: { foo: "qux" } },
48+
{ pageContent: "hello world", metadata: { foo: "bar" } },
49+
{ pageContent: "bye now", metadata: { foo: "bar" } },
50+
];
51+
52+
await store.addDocuments(docs2);
53+
54+
const results3 = await store.similaritySearch("hello world", 1);
55+
console.log(results3);
56+
/*
57+
[ Document { pageContent: 'hello world', metadata: { foo: 'bar' } } ]
58+
*/
59+
60+
// delete documents with filter
61+
await store.delete({
62+
filter: {
63+
where: {
64+
operator: "Equal",
65+
path: ["foo"],
66+
valueText: "bar",
67+
},
68+
},
69+
});
70+
71+
const results4 = await store.similaritySearch("hello world", 1, {
72+
where: {
73+
operator: "Equal",
74+
path: ["foo"],
75+
valueText: "bar",
76+
},
77+
});
78+
console.log(results4);
79+
/*
80+
[]
81+
*/
4282
}

langchain/src/vectorstores/tests/weaviate.int.test.ts

+48-2
Original file line numberDiff line numberDiff line change
@@ -108,14 +108,14 @@ test.skip("WeaviateStore upsert + delete", async () => {
108108
[
109109
new Document({
110110
pageContent: "testing",
111-
metadata: { deletionTest: createdAt },
111+
metadata: { deletionTest: createdAt.toString() },
112112
}),
113113
],
114114
new OpenAIEmbeddings(),
115115
{
116116
client,
117117
indexName: "DocumentTest",
118-
textKey: "text",
118+
textKey: "pageContent",
119119
metadataKeys: ["deletionTest"],
120120
}
121121
);
@@ -199,3 +199,49 @@ test.skip("WeaviateStore upsert + delete", async () => {
199199
}),
200200
]);
201201
});
202+
203+
test.skip("WeaviateStore delete with filter", async () => {
204+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
205+
const client = (weaviate as any).client({
206+
scheme:
207+
process.env.WEAVIATE_SCHEME ||
208+
(process.env.WEAVIATE_HOST ? "https" : "http"),
209+
host: process.env.WEAVIATE_HOST || "localhost:8080",
210+
apiKey: process.env.WEAVIATE_API_KEY
211+
? // eslint-disable-next-line @typescript-eslint/no-explicit-any
212+
new (weaviate as any).ApiKey(process.env.WEAVIATE_API_KEY)
213+
: undefined,
214+
});
215+
const store = await WeaviateStore.fromTexts(
216+
["hello world", "hi there", "how are you", "bye now"],
217+
[{ foo: "bar" }, { foo: "baz" }, { foo: "qux" }, { foo: "bar" }],
218+
new OpenAIEmbeddings(),
219+
{
220+
client,
221+
indexName: "FilterDeletionTest",
222+
textKey: "text",
223+
metadataKeys: ["foo"],
224+
}
225+
);
226+
const results = await store.similaritySearch("hello world", 1);
227+
expect(results).toEqual([
228+
new Document({ pageContent: "hello world", metadata: { foo: "bar" } }),
229+
]);
230+
await store.delete({
231+
filter: {
232+
where: {
233+
operator: "Equal",
234+
path: ["foo"],
235+
valueText: "bar",
236+
},
237+
},
238+
});
239+
const results2 = await store.similaritySearch("hello world", 1, {
240+
where: {
241+
operator: "Equal",
242+
path: ["foo"],
243+
valueText: "bar",
244+
},
245+
});
246+
expect(results2).toEqual([]);
247+
});

langchain/src/vectorstores/weaviate.ts

+22-6
Original file line numberDiff line numberDiff line change
@@ -155,14 +155,30 @@ export class WeaviateStore extends VectorStore {
155155
);
156156
}
157157

158-
async delete(params: { ids: string[] }): Promise<void> {
159-
const { ids } = params;
160-
for (const id of ids) {
161-
await this.client.data
162-
.deleter()
158+
async delete(params: {
159+
ids?: string[];
160+
filter?: WeaviateFilter;
161+
}): Promise<void> {
162+
const { ids, filter } = params;
163+
164+
if (ids && ids.length > 0) {
165+
for (const id of ids) {
166+
await this.client.data
167+
.deleter()
168+
.withClassName(this.indexName)
169+
.withId(id)
170+
.do();
171+
}
172+
} else if (filter) {
173+
await this.client.batch
174+
.objectsBatchDeleter()
163175
.withClassName(this.indexName)
164-
.withId(id)
176+
.withWhere(filter.where)
165177
.do();
178+
} else {
179+
throw new Error(
180+
`This method requires either "ids" or "filter" to be set in the input object`
181+
);
166182
}
167183
}
168184

0 commit comments

Comments
 (0)