From 595c567bf0525e5f4ce2335e06203d7839911079 Mon Sep 17 00:00:00 2001
From: Logan <logan.markewich@live.com>
Date: Tue, 6 Feb 2024 17:38:11 -0600
Subject: [PATCH] fix some imports (#10485)

---
 .../query/query_engines/pandas_query_engine.rst              | 2 +-
 llama_index/vector_stores/__init__.py                        | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)

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 1f62f6c7f..cdae7b3cd 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 d090f229f..b7bd76238 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
-- 
GitLab