24 lines
555 B
Python
24 lines
555 B
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
from .brave import BraveSearch, BraveSearchResponse, BraveSettings, BraveWebPage, BraveWebPages
|
|
from .google_search import (
|
|
GoogleSearch,
|
|
GoogleSearchInformation,
|
|
GoogleSearchResponse,
|
|
GoogleSearchResult,
|
|
GoogleSearchSettings,
|
|
)
|
|
|
|
__all__ = [
|
|
"BraveSearch",
|
|
"BraveSearchResponse",
|
|
"BraveSettings",
|
|
"BraveWebPage",
|
|
"BraveWebPages",
|
|
"GoogleSearch",
|
|
"GoogleSearchInformation",
|
|
"GoogleSearchResponse",
|
|
"GoogleSearchResult",
|
|
"GoogleSearchSettings",
|
|
]
|