diff --git a/crawl4ai/prompts.py b/crawl4ai/prompts.py
index 773d3af38..9635f7f57 100644
--- a/crawl4ai/prompts.py
+++ b/crawl4ai/prompts.py
@@ -1,12 +1,4 @@
-PROMPT_EXTRACT_BLOCKS = """Here is the URL of the webpage:
-{URL}
-
-And here is the cleaned HTML content of that webpage:
-
-{HTML}
-
-
-Your task is to break down this HTML content into semantically relevant blocks, and for each block, generate a JSON object with the following keys:
+PROMPT_EXTRACT_BLOCKS = """Your task is to break down the HTML content (provided below) into semantically relevant blocks, and for each block, generate a JSON object with the following keys:
- index: an integer representing the index of the block in the content
- content: a list of strings containing the text content of the block
@@ -46,9 +38,7 @@
}]
-Remember, the output should be a complete, parsable JSON wrapped in tags, with no omissions or errors. The JSON objects should semantically break down the content into relevant blocks, maintaining the original order."""
-
-PROMPT_EXTRACT_BLOCKS_WITH_INSTRUCTION = """Here is the URL of the webpage:
+Here is the URL of the webpage:
{URL}
And here is the cleaned HTML content of that webpage:
@@ -56,7 +46,9 @@
{HTML}