update: 搜索超时时间改20,当前研发环境的代理访问基本上都要十几秒

This commit is contained in:
zhanglei 2024-08-08 18:01:34 +08:00
parent fa06a67a64
commit 22989407bf

View file

@ -69,7 +69,7 @@ class SearchEnhancedQA(Action):
description="Action to explore the web and provide summaries of articles and webpages.",
)
per_page_timeout: float = Field(
default=10, description="The maximum time for fetching a single page is in seconds. Defaults to 10s."
default=20, description="The maximum time for fetching a single page is in seconds. Defaults to 20s."
)
java_script_enabled: bool = Field(
default=False, description="Whether or not to enable JavaScript in the web browser context. Defaults to False."