diff --git a/wax-prosemirror-services/src/AiService/components/AskAIOverlay.js b/wax-prosemirror-services/src/AiService/components/AskAIOverlay.js
index 4178becd06d09d74788c3976bff5a4e9301b0462..aea72c7d1dcc0fd6d967f89fedd66f28e2352109 100644
--- a/wax-prosemirror-services/src/AiService/components/AskAIOverlay.js
+++ b/wax-prosemirror-services/src/AiService/components/AskAIOverlay.js
@@ -165,7 +165,7 @@ const AskAIOverlay = ({ setPosition, position, config }) => {
     const highlightedText = main.state.doc.textBetween(from, to);
 
     // Combine the user's input and the highlighted text
-    const combinedInput = `${inputValue}\n\nHighlighted Text: ${highlightedText}`;
+    const combinedInput = `${inputValue}\n\n${highlightedText}`;
 
     try {
       const response = await AskAiContentTransformation(combinedInput);