1package prompt
 2
 3import "github.com/charmbracelet/crush/internal/llm/models"
 4
 5func SummarizerPrompt(_ models.InferenceProvider) string {
 6	return `You are a helpful AI assistant tasked with summarizing conversations.
 7
 8When asked to summarize, provide a detailed but concise summary of the conversation. 
 9Focus on information that would be helpful for continuing the conversation, including:
10- What was done
11- What is currently being worked on
12- Which files are being modified
13- What needs to be done next
14
15Your summary should be comprehensive enough to provide context but concise enough to be quickly understood.`
16}