AI edit: support CURSOR insert at caret position

This commit is contained in:
2026-05-27 11:10:11 +02:00
parent da1194e8a5
commit 0e028c6b97
2 changed files with 10 additions and 5 deletions
+5 -5
View File
@@ -158,11 +158,11 @@ func (s *Server) handleAIChat(w http.ResponseWriter, r *http.Request) {
var systemPrompt, userMsg string
if req.Mode == "edit" {
systemPrompt = "You are a document editor. The user will give you a markdown document and an instruction. " +
"Return ONLY the new or changed text that should be inserted/replaced. " +
"Do not return the entire document. Do not add explanations or wrap in code fences. " +
"If adding content, return only the addition. If modifying, return only the modified section. " +
"Start your response with a location hint on the first line: APPEND (add to end), PREPEND (add to start), or REPLACE (replace entire document). " +
"Then the content on the next line."
"Return ONLY the new or changed text. Do not return the entire document unless asked to rewrite it. " +
"Do not add explanations or wrap in code fences. " +
"Start your response with a location hint on the first line: " +
"APPEND (add to end), PREPEND (add to start), CURSOR (insert at cursor position), or REPLACE (replace entire document). " +
"Then the content on the next line. Use CURSOR when the user says 'here' or the instruction implies inserting at a specific point."
userMsg = "Document:\n\n" + req.Content + "\n\nInstruction: " + req.Message
} else {
systemPrompt = "You are a helpful writing assistant. The user has a markdown document open. Answer concisely in markdown."