mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-12-02 11:18:19 +08:00
fix: web reader tool retrieve content empty (#957)
This commit is contained in:
parent
5623839c71
commit
5cba2e7087
@ -88,6 +88,9 @@ class WebReaderTool(BaseTool):
|
|||||||
texts = character_splitter.split_text(page_contents)
|
texts = character_splitter.split_text(page_contents)
|
||||||
docs = [Document(page_content=t) for t in texts]
|
docs = [Document(page_content=t) for t in texts]
|
||||||
|
|
||||||
|
if len(docs) == 0:
|
||||||
|
return "No content found."
|
||||||
|
|
||||||
docs = docs[1:]
|
docs = docs[1:]
|
||||||
|
|
||||||
# only use first 5 docs
|
# only use first 5 docs
|
||||||
|
Loading…
Reference in New Issue
Block a user