mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
fix: nonetype in webscraper validation (#6788)
This commit is contained in:
parent
028261f760
commit
72963d1f13
|
@ -116,6 +116,7 @@ class Spider:
|
|||
:param params: Optional dictionary of additional parameters for the scrape request.
|
||||
:return: JSON response containing the scraping results.
|
||||
"""
|
||||
params = params or {}
|
||||
|
||||
# Add { "return_format": "markdown" } to the params if not already present
|
||||
if "return_format" not in params:
|
||||
|
@ -143,6 +144,7 @@ class Spider:
|
|||
:param stream: Boolean indicating if the response should be streamed. Defaults to False.
|
||||
:return: JSON response or the raw response stream if streaming enabled.
|
||||
"""
|
||||
params = params or {}
|
||||
|
||||
# Add { "return_format": "markdown" } to the params if not already present
|
||||
if "return_format" not in params:
|
||||
|
|
Loading…
Reference in New Issue
Block a user