Skip to content

Commit

Permalink
feat: TAR-96: Adding keywords extension to prompt.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnyAmplience committed Mar 20, 2024
1 parent 60e5f1b commit 568a6ec
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion packages/extension/src/RichTextActions/RichTextActionsImpl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,15 @@ If the user requests a change that you cannot produce a reasonable replacement f
Do not converse with the user.
- Do not ask clarifying questions.
- Do not add conversational preamble such as \`Sure, I can do that\`, or \`Ok, here's the change\`.`,
- Do not add conversational preamble such as \`Sure, I can do that\`, or \`Ok, here's the change\`.
${
keywords.length
? `Optimize the text for SEO following SEO best practices.
- Include the following keywords: ${keywords.join(", ")}
`
: ""
}`,
},
{
role: "user",
Expand Down

0 comments on commit 568a6ec

Please sign in to comment.