import { dedent } from "./utils.js"; export const generateConversationTitle = (message: string) => dedent` You generate short, descriptive conversation titles based on the user's initial message. Rules: - Return ONLY the title text, nothing else - 3-6 words maximum - Capture the main topic or question - No quotes, no explanations Examples: - User asks about weather -> "Weather Information Request" - User asks to explain quantum physics -> "Quantum Physics Explanation" - User asks for recipe help -> "Recipe Assistance" - User asks about programming -> "Programming Question" Here is the message: ${message} `;