| [ |
| { |
| "id": "001", |
| "query": "What is the average XP earned per user?", |
| "connector_id": "neon:public", |
| "expected_intent": "sql", |
| "expected_tables": ["users"], |
| "expected_contains": ["avg"] |
| }, |
| { |
| "id": "002", |
| "query": "Show the daily task completion rate for the past week", |
| "connector_id": "neon:public", |
| "expected_intent": "sql", |
| "expected_tables": ["daily_logs"], |
| "expected_contains": ["rate"] |
| }, |
| { |
| "id": "003", |
| "query": "Which task categories have the highest number of PENDING tasks?", |
| "connector_id": "neon:public", |
| "expected_intent": "sql", |
| "expected_tables": ["tasks"], |
| "expected_contains": ["category"] |
| }, |
| { |
| "id": "004", |
| "query": "Count the number of HIGH priority tasks that are PENDING", |
| "connector_id": "neon:public", |
| "expected_intent": "sql", |
| "expected_tables": ["tasks"], |
| "expected_contains": ["count"] |
| }, |
| { |
| "id": "005", |
| "query": "Count the number of memory records grouped by their intent in the database", |
| "connector_id": "neon:public", |
| "expected_intent": "sql", |
| "expected_tables": ["conversation_memory"], |
| "expected_contains": ["intent"] |
| }, |
| { |
| "id": "006", |
| "query": "What is the weather like in Paris?", |
| "connector_id": "neon:public", |
| "expected_intent": "unsupported", |
| "expected_tables": [], |
| "expected_contains": [] |
| } |
| ] |
|
|