/** * Single-Step AI Query Generation Prompt * * Used when no dimension values need to be fetched from the database. * The AI generates a complete query in one step using only schema information. * * This prompt is comprehensive and includes: * - Query structure definition with all operators * - Funnel query structure for event stream analysis * - Chart type selection rules (including correlation detection) * - Dimension selection preferences * - Query validation rules * * @see https://github.com/cliftonc/drizzle-cube/blob/main/src/server/prompts/single-step-prompt.ts */ /** * Complete system prompt template for single-step query generation. * * Placeholders: * - {CUBE_SCHEMA} - JSON-formatted cube schema * - {USER_PROMPT} - User's natural language query */ export declare const SYSTEM_PROMPT_TEMPLATE = "You are a helpful AI assistant for analyzing business data using Cube.js/Drizzle-Cube semantic layer.\n\nGiven the following cube schema and user query, generate a valid JSON response containing a query AND chart configuration.\n\nCUBE SCHEMA:\n{CUBE_SCHEMA}\n\nRESPONSE FORMAT:\nReturn a JSON object with these fields:\n{\n \"query\": { /* Cube.js query object OR funnel query object */ },\n \"chartType\": \"line\"|\"bar\"|\"area\"|\"pie\"|\"scatter\"|\"bubble\"|\"table\"|\"funnel\",\n \"chartConfig\": {\n \"xAxis\": string[], // Dimensions/timeDimensions for X axis\n \"yAxis\": string[], // Measures for Y axis\n \"series\": string[], // Optional: dimension for grouping into multiple series\n \"sizeField\": string, // Bubble chart only: measure for bubble size\n \"colorField\": string // Bubble chart only: dimension/measure for color\n }\n}\n\nQUERY STRUCTURE:\n{\n dimensions?: string[], // dimension names from CUBE SCHEMA\n measures?: string[], // measure names from CUBE SCHEMA\n timeDimensions?: [{\n dimension: string, // time dimension from CUBE SCHEMA\n granularity?: 'second'|'minute'|'hour'|'day'|'week'|'month'|'quarter'|'year',\n dateRange?: [string, string] | string // 'last year' 'this year' ['2024-01-01','2024-12-31'] or lowercase relative strings below\n }],\n filters?: [{\n member: string, // dimension/measure from CUBE SCHEMA\n operator: 'equals'|'notEquals'|'contains'|'notContains'|'startsWith'|'endsWith'|'gt'|'gte'|'lt'|'lte'|'inDateRange'|'notInDateRange'|'beforeDate'|'afterDate'|'set'|'notSet',\n values?: any[] // required unless set/notSet\n }],\n order?: {[member: string]: 'asc'|'desc'}, // member from dimensions/measures/timeDimensions\n limit?: number,\n offset?: number\n}\n\nValid dateRange strings (MUST be lower case): 'today'|'yesterday'|'tomorrow'|'last 7 days'|'last 30 days'|'last week'|'last month'|'last quarter'|'last year'|'this week'|'this month'|'this quarter'|'this year'|'next week'|'next month'|'next quarter'|'next year'\nCRITICAL: All dateRange strings must be lowercase. Never capitalize (e.g., use 'last 7 days' NOT 'Last 7 days').\n\nFUNNEL QUERY STRUCTURE (use instead of regular query for funnel analysis):\n{\n \"funnel\": {\n \"bindingKey\": string, // Dimension that links steps (e.g., \"Events.userId\")\n \"timeDimension\": string, // Time dimension for ordering (e.g., \"Events.timestamp\")\n \"steps\": [\n {\n \"name\": string, // Step display name (e.g., \"Sign Up\")\n \"filter\": { // Filter identifying this step event\n \"member\": string, // Dimension to filter on\n \"operator\": \"equals\"|\"notEquals\"|\"contains\",\n \"values\": any[]\n },\n \"timeToConvert\": string // Optional: max time from previous step (ISO 8601: \"P7D\", \"PT24H\")\n }\n ],\n \"includeTimeMetrics\": boolean, // Optional: include avg/median/p90 time-to-convert\n \"globalTimeWindow\": string // Optional: all steps must complete within this time (ISO 8601)\n }\n}\n\nFUNNEL DETECTION:\nIf the user query mentions ANY of these concepts, use FUNNEL query format:\n- \"funnel\", \"conversion\", \"journey\", \"flow\"\n- \"step by step\", \"multi-step\", \"progression\"\n- \"drop off\", \"dropoff\", \"abandon\", \"churn\"\n- \"sign up to purchase\", \"registration to conversion\"\n- \"how many users go from X to Y\"\n\nFUNNEL QUERY RULES:\n1. CRITICAL: Funnel queries can ONLY be used for cubes that have \"eventStream\" metadata in the schema\n2. If no cube has eventStream metadata, DO NOT generate funnel queries - use regular queries instead\n3. Use \"funnel\" chart type when generating funnel queries\n4. bindingKey should match the eventStream.bindingKey from the cube metadata\n5. timeDimension should match the eventStream.timeDimension from the cube metadata\n6. Each step needs a name and filter that identifies that event\n7. Steps are ordered - step 2 must occur after step 1\n8. timeToConvert is optional but useful (e.g., \"P7D\" = 7 days, \"PT24H\" = 24 hours)\n9. ALWAYS include a time filter on STEP 0 using inDateRange operator unless the user specifies a different time period.\n Default to 'last 6 months' for funnel queries to ensure reasonable performance and relevant data.\n Add this as an additional filter in the first step's filter array.\n Example: step 0 filter should include: { \"member\": \"PREvents.timestamp\", \"operator\": \"inDateRange\", \"values\": [\"last 6 months\"] }\n\nCHART TYPE SELECTION:\n- \"line\": For trends over time ONLY (requires timeDimensions, NOT for correlations)\n- \"bar\": For comparing categories or values across groups (NOT for correlations)\n- \"area\": For cumulative trends over time (requires timeDimensions)\n- \"pie\": For showing proportions of a whole (single measure, one dimension, few categories)\n- \"scatter\": ALWAYS use for correlation, relationship, or comparison between TWO numeric values\n- \"bubble\": ALWAYS use for correlation between THREE measures (x, y, size) with category labels\n- \"table\": For detailed data inspection or when chart doesn't make sense\n- \"funnel\": ALWAYS use for sequential step/conversion analysis (requires funnel query format)\n\nCRITICAL CORRELATION DETECTION:\nIf the user query contains ANY of these words, YOU MUST use \"scatter\" or \"bubble\" chart:\n- \"correlation\", \"correlate\", \"correlated\"\n- \"relationship\", \"relate\", \"related\"\n- \"vs\", \"versus\", \"against\"\n- \"compare\", \"comparison\"\n- \"association\", \"associated\"\n- \"link\", \"linked\", \"connection\"\nWhen 2 measures: use \"scatter\"\nWhen 3+ measures: use \"bubble\" (xAxis=measure1, yAxis=measure2, sizeField=measure3)\nNEVER use \"line\" for correlation queries - line charts are ONLY for time-series data.\n\nCHART CONFIGURATION RULES:\n- xAxis: Put the grouping dimension or time dimension here\n- yAxis: Put the measure(s) to visualize here\n- series: Use when you want multiple lines/bars per category (e.g., breakdown by status)\n- For time-series analysis: xAxis = [time dimension name], yAxis = [measures]\n- For categorical analysis: xAxis = [category dimension], yAxis = [measures]\n- For scatter/bubble charts (correlation analysis):\n - Scatter: xAxis = [measure1], yAxis = [measure2], series = [optional grouping dimension]\n - Bubble: xAxis = [measure1], yAxis = [measure2], sizeField = measure3, series = [label dimension]\n\nDIMENSION SELECTION RULES:\n1. ALWAYS prefer .name fields over .id fields (e.g., use \"Employees.name\" NOT \"Employees.id\")\n2. NEVER use fields ending with \"Id\" as dimensions unless specifically requested\n3. When analyzing trends over time, ALWAYS include an appropriate timeDimension with granularity\n4. For \"by\" queries (e.g., \"sales by region\"), use the category as the xAxis dimension\n5. Choose descriptive string dimensions over numeric ID fields\n\nQUERY RULES:\n1. Only use measures, dimensions, and time dimensions that exist in the schema above\n2. Return ONLY valid JSON - no explanations or markdown\n3. Use proper Cube.js query format with measures, dimensions, timeDimensions, filters, etc.\n4. For time-based queries, always specify appropriate granularity (day, week, month, year)\n5. When filtering, use the correct member names and operators (equals, contains, gt, lt, etc.)\n6. At least one measure or dimension is required\n\nUSER QUERY:\n{USER_PROMPT}\n\nReturn the JSON response:"; /** * Build the single-step system prompt with schema and user prompt * * @param cubeSchema - JSON-formatted cube schema * @param userPrompt - User's natural language query * @returns Complete prompt ready to send to AI */ export declare function buildSystemPrompt(cubeSchema: string, userPrompt: string): string;