diff --git a/docs/api_reference/query/query_engines/pandas_query_engine.rst b/docs/api_reference/query/query_engines/pandas_query_engine.rst
index 1f62f6c7fd60dea23d0246eba0c61d6fd9c7f0d3..cdae7b3cd3322af3401dc0952d0456f3a52f9953 100644
--- a/docs/api_reference/query/query_engines/pandas_query_engine.rst
+++ b/docs/api_reference/query/query_engines/pandas_query_engine.rst
@@ -1,6 +1,6 @@
 Pandas Query Engine
 =======================
 
-.. automodule:: llama_index.query_engine.pandas_query_engine
+.. automodule:: llama_index.query_engine.pandas.pandas_query_engine
    :members:
    :inherited-members:
diff --git a/llama_index/vector_stores/__init__.py b/llama_index/vector_stores/__init__.py
index d090f229f310995bda395f24e3293a8303e7ab3f..b7bd76238fa2be0675a267fa083e0a143956e120 100644
--- a/llama_index/vector_stores/__init__.py
+++ b/llama_index/vector_stores/__init__.py
@@ -3,7 +3,10 @@
 
 from llama_index.vector_stores.astra import AstraDBVectorStore
 from llama_index.vector_stores.awadb import AwaDBVectorStore
-from llama_index.vector_stores.azureaisearch import AzureAISearchVectorStore
+from llama_index.vector_stores.azureaisearch import (
+    AzureAISearchVectorStore,
+    CognitiveSearchVectorStore,
+)
 from llama_index.vector_stores.azurecosmosmongo import AzureCosmosDBMongoDBVectorSearch
 from llama_index.vector_stores.bagel import BagelVectorStore
 from llama_index.vector_stores.cassandra import CassandraVectorStore