mirror of
https://github.com/VinciGit00/Scrapegraph-ai.git
synced 2026-07-12 21:01:56 +08:00
11 lines
312 B
Python
11 lines
312 B
Python
"""
|
|
This module contains prompts for description nodes in the ScrapeGraphAI application.
|
|
"""
|
|
|
|
DESCRIPTION_NODE_PROMPT = """
|
|
You are a scraper and you have just scraped the
|
|
following content from a website. \n
|
|
Please provide a description summary of maximum of 20 words. \n
|
|
CONTENT OF THE WEBSITE: {content}
|
|
"""
|