mirror of
https://github.com/VinciGit00/Scrapegraph-ai.git
synced 2026-06-23 21:00:30 +08:00
107 lines
4.1 KiB
Python
107 lines
4.1 KiB
Python
"""
|
|
SearchLinkNode Module
|
|
"""
|
|
|
|
# Imports from standard library
|
|
from typing import List, Optional
|
|
from tqdm import tqdm
|
|
|
|
# Imports from Langchain
|
|
from langchain.prompts import PromptTemplate
|
|
from langchain_core.output_parsers import JsonOutputParser
|
|
from langchain_core.runnables import RunnableParallel
|
|
|
|
# Imports from the library
|
|
from .base_node import BaseNode
|
|
|
|
|
|
class SearchLinkNode(BaseNode):
|
|
"""
|
|
A node that can filter out the relevant links in the webpage content for the user prompt.
|
|
Node expects the aleready scrapped links on the webpage and hence it is expected
|
|
that this node be used after the FetchNode.
|
|
|
|
Attributes:
|
|
llm_model: An instance of the language model client used for generating answers.
|
|
verbose (bool): A flag indicating whether to show print statements during execution.
|
|
|
|
Args:
|
|
input (str): Boolean expression defining the input keys needed from the state.
|
|
output (List[str]): List of output keys to be updated in the state.
|
|
node_config (dict): Additional configuration for the node.
|
|
node_name (str): The unique identifier name for the node, defaulting to "GenerateAnswer".
|
|
"""
|
|
|
|
def __init__(self, input: str, output: List[str], node_config: Optional[dict] = None,
|
|
node_name: str = "GenerateLinks"):
|
|
super().__init__(node_name, "node", input, output, 1, node_config)
|
|
|
|
self.llm_model = node_config["llm_model"]
|
|
self.verbose = False if node_config is None else node_config.get(
|
|
"verbose", False)
|
|
|
|
def execute(self, state: dict) -> dict:
|
|
"""
|
|
Filter out relevant links from the webpage that are relavant to prompt. Out of the filtered links, also
|
|
ensure that all links are navigable.
|
|
|
|
Args:
|
|
state (dict): The current state of the graph. The input keys will be used to fetch the
|
|
correct data types from the state.
|
|
|
|
Returns:
|
|
dict: The updated state with the output key containing the list of links.
|
|
|
|
Raises:
|
|
KeyError: If the input keys are not found in the state, indicating that the
|
|
necessary information for generating the answer is missing.
|
|
"""
|
|
|
|
if self.verbose:
|
|
print(f"--- Executing {self.node_name} Node ---")
|
|
|
|
# Interpret input keys based on the provided input expression
|
|
input_keys = self.get_input_keys(state)
|
|
|
|
user_prompt = state[input_keys[0]]
|
|
parsed_content_chunks = state[input_keys[1]]
|
|
output_parser = JsonOutputParser()
|
|
|
|
prompt_relevant_links = """
|
|
You are a website scraper and you have just scraped the following content from a website.
|
|
Content: {content}
|
|
|
|
You are now tasked with identifying all hyper links within the content that are potentially
|
|
relevant to the user task: {user_prompt}
|
|
|
|
Assume relevance broadly, including any links that might be related or potentially useful
|
|
in relation to the task.
|
|
|
|
Please list only valid URLs and make sure to err on the side of inclusion if it's uncertain
|
|
whether the content at the link is directly relevant.
|
|
|
|
Output only a list of relevant links in the format:
|
|
[
|
|
"link1",
|
|
"link2",
|
|
"link3",
|
|
.
|
|
.
|
|
.
|
|
]
|
|
"""
|
|
relevant_links = []
|
|
|
|
for i, chunk in enumerate(tqdm(parsed_content_chunks, desc="Processing chunks", disable=not self.verbose)):
|
|
merge_prompt = PromptTemplate(
|
|
template=prompt_relevant_links,
|
|
input_variables=["content", "user_prompt"],
|
|
)
|
|
merge_chain = merge_prompt | self.llm_model | output_parser
|
|
# merge_chain = merge_prompt | self.llm_model
|
|
answer = merge_chain.invoke(
|
|
{"content": chunk.page_content, "user_prompt": user_prompt})
|
|
relevant_links += answer
|
|
state.update({self.output[0]: relevant_links})
|
|
return state
|