diff --git a/crates/vector_store/src/vector_store.rs b/crates/vector_store/src/vector_store.rs index 3d9c32875e..d35798a58d 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(), )