DEV Community

Cover image for Building a SQL Report Generator using Gemini AI + ToolJet šŸ“Š
Aman Regu for ToolJet

Posted on • Updated on • Originally published at blog.tooljet.com

Building a SQL Report Generator using Gemini AI + ToolJet šŸ“Š

Introduction

This tutorial will guide you through the process of building an AI-driven SQL custom report generator using ToolJet, a low-code visual app builder, and the Gemini API, a powerful natural language processing API. The resulting application will enable users to input requests in plain English, which will then be translated into custom reports. We'll use ToolJet's visual app builder to create a user-friendly UI, and ToolJet's low-code query builder to connect it to the Gemini API endpoints and our data sources. The final product will enable users to preview generated reports and download them in PDF, Excel, or CSV formats.


Prerequisites:

Here is a quick preview of our final application:

SQL Report Builder Preview


Login to your ToolJet account. Navigate to the ToolJet dashboard and click on the Create new app button on the top left corner. ToolJet comes with 45+ built-in components. This will let us set up our UI in no time.

Building our UI

  • Drag and drop the Container component onto the canvas from the component library on the right side. Adjust the height and width of the Container component appropriately.
  • Similarly, drag-and-drop the Icon and three Text components inside your Container. We'll use these Text components for our header and label texts.
  • For the Icon component, navigate to the properties panel on the right and select the appropriate icon under the Icon property.
  • Change the colour of the Icon and Text component according to your preference.
  • Change the font size and content of the Text component appropriately.
  • Drag and drop the Textarea component inside your Container. We'll use this component as an input for our text query.
  • Rename the Textarea component to textPrompt.
  • Next, drag and drop the Table component onto the Container. We'll use this component to display a preview of our report. The Table component comes built-in with the functionality to download the displayed data. This will allow us to download our generated report in PDF, Excel, or CSV formats.
  • Now let's add a Button component that initiates the report generation process. Change the colour, size and content appropriately.

SQL Report Builder UI


Setting up Queries

Apart from its built-in database and data sources, ToolJet allows you to connect to various external data sources, including databases, external APIs, and services. For this tutorial, we'll be using ToolJet's built-in PostgreSQL sample data source. The queries we'll set up will be applicable to an external PostgreSQL data source as well.

We'll also be using the REST API query feature to connect with the Gemini API endpoints.

  • In the query panel, click theĀ + AddĀ button and choose theĀ Sample data source option.
  • Rename the query toĀ getDatabaseSchema.
  • In the dropdown, choose the SQL mode and enter the code below. This will fetch all the table names in our database along with their column names.
SELECT table_name, string_agg(column_name, ', ') AS columns
FROM information_schema.columns
WHERE table_schema = 'public'
GROUP BY table_name

Enter fullscreen mode Exit fullscreen mode
  • To ensure that the query runs every time the application loads, enable theĀ Run this query on application load? toggle.

Now, let's create another query that will connect to the Gemini AI API and generate our custom SQL report query.

  • Using ToolJet's Workspace Constants feature, create a new constant namedĀ GEMINI_API_KEY with your Gemini API key.

  • In the query panel, click on theĀ + AddĀ button and choose theĀ REST API option.

  • Rename the query toĀ getSqlQuery.

  • In theĀ RequestĀ parameter, chooseĀ POSTĀ as theĀ MethodĀ from the drop-down and paste the following URL.

https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-pro:generateContent?key={{constants.GEMINI_API_KEY}}
Enter fullscreen mode Exit fullscreen mode
  • Navigate to the Body section of getSqlQuery. Toggle onĀ Raw JSONĀ and enter the following code:
{{
  `{
   "contents": [{
     "parts": [{
       "text": "Data Schema: ${JSON.stringify(queries.getTablesWithColumns.data.map(item => ({ ...item, table_name: "public." + item.table_name }))).replace(/"([^"]+)":/g, '$1:').replace(/"/g, '\\"')}, Text Prompt: Write a standard SQL query for a custom SQL report that will ${components.textPrompt.value.replaceAll("\n"," ")}. Return without formatting and without any code highlighting and any backticks"
      },],
    },],
  }`
}}
Enter fullscreen mode Exit fullscreen mode

Let's add our final query which will retrieve the data from the sample data source that we need for our custom report.

  • Similarly, create another Sample data source query, rename it to getReportData and enter the code below:
{{queries.getSqlQuery.data.candidates[0].content.parts[0].text}}
Enter fullscreen mode Exit fullscreen mode

Binding Queries to the UI Components

Now that we have successfully built our UI and queries, the next step is to integrate them.

  • Select the Button component and navigate to the properties panel on the right. Click on the + New event handler button. Change the Action toĀ Run query and select theĀ getSqlQueryĀ query.

  • Next, navigate to theĀ getSqlQueryĀ query and click on the + New event handler button. Change the Action toĀ Run query and select theĀ getReportDataĀ query.

  • Next, Select the Table component. In the properties panel on the right, enterĀ the following codeĀ in theĀ DataĀ field.

{{queries.getReportData.data}}
Enter fullscreen mode Exit fullscreen mode

We have successfully integrated our queries into our UI. Now let's test the application with the prompt below:
list the names of customers along with the products they have ordered, including the order date and the total quantity ordered for each product.

SQL Report Example

You can click on the + button on the Table footer to download this report in PDF, Excel, or CSV formats.


Conclusion

Congratulations on successfully building an AI-powered SQL report generator using ToolJet and the Gemini API. You can now input prompts in plain English and generate reports across multiple tables in your PostgreSQL instance.
To learn and explore more about ToolJet, check out theĀ ToolJet docsĀ or connect with us and post your queries onĀ Slack.

Top comments (0)