Search
BaiduSearch
¶
BaiduSearch(
api_key: Optional[str] = None,
key_name: Optional[str] = "BAIDU_SEARCH",
logger: Optional[Callable] = None,
verbose: Optional[bool] = False,
)
百度搜索工具
Parameters:
Name | Type | Description | Default |
---|---|---|---|
api_key
|
Optional[str]
|
|
None
|
key_name
|
Optional[str]
|
|
'BAIDU_SEARCH'
|
logger
|
Optional[Callable]
|
|
None
|
verbose
|
Optional[bool]
|
|
False
|
Source code in lumix\agent\tools\search\baidu.py
set_api_key
¶
Source code in lumix\agent\tools\search\baidu.py
make_params
¶
Source code in lumix\agent\tools\search\baidu.py
parse_metadata
¶
Source code in lumix\agent\tools\search\baidu.py
parse_html
¶
web_content
¶
web_content(url) -> str
Source code in lumix\agent\tools\search\baidu.py
search
¶
Source code in lumix\agent\tools\search\baidu.py
baidu_search
¶
baidu_search(
query: Annotated[str, "The query to search for", True],
pages: Annotated[
Optional[int],
"Number of pages to search, and you can",
False,
] = 5,
) -> str
Search for a query on Baidu and return the results as a string.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query
|
Annotated[str, 'The query to search for', True]
|
The query to search for |
required |
pages
|
Annotated[Optional[int], 'Number of pages to search, and you can', False]
|
Number of pages to search, You can search multiple pages at the same time to ensure the information is accurate. The default is 10 pages. |
5
|
Returns:
Type | Description |
---|---|
str
|
A string containing the search results |
Source code in lumix\agent\tools\search\baidu.py
BaiduImageSearch
¶
BaiduImageSearch(
api_key: Optional[str] = None,
key_name: Optional[str] = "BAIDU_SEARCH",
quality: Literal["high", "low"] = "low",
logger: Optional[Callable] = None,
verbose: Optional[bool] = False,
)
百度图片搜索工具
Parameters:
Name | Type | Description | Default |
---|---|---|---|
api_key
|
Optional[str]
|
百度图片搜索的API Key |
None
|
key_name
|
Optional[str]
|
API Key的配置文件键名 |
'BAIDU_SEARCH'
|
quality
|
Literal['high', 'low']
|
图片质量,可选"high"或"low",默认"low" |
'low'
|
logger
|
Optional[Callable]
|
日志记录器 |
None
|
verbose
|
Optional[bool]
|
是否打印详细信息 |
False
|
Examples:
import matplotlib.pyplot as plt
from lumix.agent.tools import BaiduImageSearch
baidu = BaiduImageSearch(verbose=True)
images = baidu.search(query="cat")
for i, image in enumerate(images):
plt.imshow(image.image)
plt.axis('off')
plt.show()
Source code in lumix\agent\tools\search\baidu_image.py
set_api_key
¶
Source code in lumix\agent\tools\search\baidu_image.py
make_params
¶
fetch_images
¶
Source code in lumix\agent\tools\search\baidu_image.py
fetch_metadata
¶
Source code in lumix\agent\tools\search\baidu_image.py
search
¶
Source code in lumix\agent\tools\search\baidu_image.py
baidu_image_search
¶
Search for a query on Baidu and return the results as a string.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
query
|
Annotated[str, 'The query to search for', True]
|
The query to search for |
required |
Returns:
Type | Description |
---|---|
List[Image]
|
A string containing the search results |
Examples: