Get started
Quickstart
Get up and running with Sheeta AI in under 5 minutes. This guide walks you through connecting your first database, setting up tables with existing data, and generating insights.
If you haven't installed Sheeta AI yet, download it and complete the installation before continuing.
Open a Project
Choose one of the following methods to get started with a project in Sheeta AI.
Cloning a project helps you get started quickly with your team's existing work. This feature requires Git to be installed on your device. If you don't have Git installed, you can download it or choose the Start from Scratch method instead.
- Open the Sheeta AI application.
- Click Clone repo.
In Repository URL, paste the following:
https://github.com/Sheeta-AI/sample-ecommerce.git- In Destination Folder, select where you want to store the project.
- Click Clone to download the project.

You now have a project with pre-configured connections and sample data.
Set Up a Local Database
Skip this section if you already have a PostgreSQL database running on your machine.
DBngin is a free application that simplifies managing local databases.
- Download and install DBngin.
- Click the + button and select PostgreSQL.
- Choose your preferred PostgreSQL version and click Create.
- Click Start to run the database.
- Your default database credentials are as follows:
- Username:
postgres - Password: (leave it blank)
- Username:

Connect to the Database
Follow these steps to add the connection:
- Click the edit icon next to the first connection dropdown.
- If you cloned the sample project, select the existing Development connection and update the username and password .
- If you started from scratch, click Add connection, select Postgres, and fill in the connection details.
- Connection Name:
Development - Host:
localhost - Port:
5432 - Database Name:
postgres - Username: (depends on your Local DB setup in the previous step)
- Password: (depends on your Local DB setup in the previous step)
- Connection Name:
- Click Test Connection to verify everything works.
- Click Save.

Import Data
Now let's import the sample data into your database.
- On the left side panel, click Import data.
- Choose
purchases.csvfrom thedatasetfolder. - Review the column preview and click Preview.

- Review the data preview and click Import.
- Wait for the import to complete. You can click "View" button on the notification popup on the buttom right of the screen to show file importing progress.

Once complete, the new table appears in the database panel. Click on it to preview the data.

Explore Your Data
Let's find the oldest purchases for book products using the built-in sorting and filtering tools.
- In the data preview for the
purchasestable, scroll to thepurchase_datecolumn. - Click the sort toggle once to sort by
purchase_datein ascending order. - Scroll to the
product_categorycolumn and click the filter icon. - Check Books to filter the results.
You now see a list of book product purchases sorted by oldest order date—no SQL required.

Generate Insights with AI
Let's use the AI assistant to analyze monthly sales trends forbook products—without exposing sensitive customer information to the AI.
- Click the infinity icon at the top right corner (or press Cmd+I) to open the AI agent panel.
- Tip: Hide the left panel by clicking the toggle at the top left (or press Cmd+B) for more space.
- If you haven't logged in yet, click Login and complete the sign-up process.
- Send this message:
What is the trend of monthly book product sales? - When prompted for column permissions, select only:
purchase_date,product_category, andtotal_purcahse_amount. Check Save Settings to remember these preferences.
- The AI generates a query to analyze book sales trends. Notice that while the AI recorrects itself to find the extact Books category in the
product_categoryfield. The AI can't access any customer information in the table. It explains sales trend based on data.
- SQL queries generated by the AI agent can be viewed by clicking at. The app shows the full query and you can run it to see the full result.

Note: AI query limits depend on your account tier. To increase your limit, upgrade to Plus or Pro.