We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e956174 commit 41aaf07Copy full SHA for 41aaf07
src/core/mentions/processUserContentMentions.ts
@@ -39,7 +39,11 @@ export async function processUserContentMentions({
39
// should parse mentions).
40
return Promise.all(
41
userContent.map(async (block) => {
42
- const shouldProcessMentions = (text: string) => text.includes("<task>") || text.includes("<feedback>")
+ const shouldProcessMentions = (text: string) =>
43
+ text.includes("<task>") ||
44
+ text.includes("<feedback>") ||
45
+ text.includes("<answer>") ||
46
+ text.includes("<user_message>")
47
48
if (block.type === "text") {
49
if (shouldProcessMentions(block.text)) {
0 commit comments