diff --git a/crates/vector_store/src/vector_store.rs b/crates/vector_store/src/vector_store.rs index 3d9c32875eef17c6cc58b1bed1637c1b920c2b0f..d35798a58db607f4b979e34ac2c00ae1f7bef8bf 100644 --- a/crates/vector_store/src/vector_store.rs +++ b/crates/vector_store/src/vector_store.rs @@ -80,11 +80,10 @@ pub fn init( let vector_store = VectorStore::new( fs, db_file_path, - Arc::new(embedding::DummyEmbeddings {}), - // Arc::new(OpenAIEmbeddings { - // client: http_client, - // executor: cx.background(), - // }), + Arc::new(OpenAIEmbeddings { + client: http_client, + executor: cx.background(), + }), language_registry, cx.clone(), )