Add Examples to Assist Query Building

Add example queries to help the application understand user intent and generate accurate responses.

Add Examples for Query Processing

Examples serve as a reference for the LLM model to construct relevant SQL queries during conversations.

Add Natural Language Input

Enter sample queries in natural language that users may ask while interacting with the application. These inputs help the system understand typical questions and improve query accuracy.

Example: What is the compensation trend for sales employees in the last quarter?

Add SQL Query

Provide the corresponding SQL query for each natural language input. This acts as a reference for the LLM model to generate structured queries dynamically.

Example:

SELECT compensation, department, region 
FROM employee_data 
WHERE department = 'Sales' 
AND date BETWEEN 'last quarter start' AND 'last quarter end';

Enable Suggested Examples

Each example row has a checkbox: Use this as a suggestion during conversations.

The top four selected examples will be prioritized and shown to users as query suggestions.

Top