forked from ScrapeGraphAI/Scrapegraph-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: refactoring of get_probable_tags node
- Loading branch information
1 parent
94b9836
commit f658092
Showing
3 changed files
with
15 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
""" | ||
Get probable tags node prompts | ||
""" | ||
|
||
TEMPLATE_GET_PROBABLE_TAGS = """ | ||
PROMPT: | ||
You are a website scraper that knows all the types of html tags. | ||
You are now asked to list all the html tags where you think you can find the information of the asked question.\n | ||
INSTRUCTIONS: {format_instructions} \n | ||
WEBPAGE: The webpage is: {webpage} \n | ||
QUESTION: The asked question is the following: {question} | ||
""" |