Skip to content

Quickstart

Quickly integrate Ask-AI for cuystomer-facing analytics into your application with Inconvo.

Welcome to Inconvo, your go-to platform for enabling Ask-AI for your customers. In this example we will walk you through the essentials of connecting your data, managing tenancy, evaluating your Ask-AI and deploying it in your product.

Connect data:

We’ve already set up a sample database connection to help you quickly explore and test the platform without needing to connect your own data source.

If you would like to connect to a different data source, please see how to connect

Sample database

This database is a slight modification of metabase/qa-databases:postgres-sample-14 Metabase make the source code available here.

The Sample Database is a small database that ships with Inconvo so you can start asking questions before you connect to your database. The Sample Database contains four tables: Orders, People, Products, and Reviews.

ER Diagram

Evalutate:

We provide evalauation as a first class citizen in the Inconvo platform.

We do this because to us accuracy is everything and we want to show you exactly how well Inconvo answer your users’ questions on your data.

Use the playground

Start by asking a question on the sample database within the platform playground.

Use the playground to ask any question of the connected database, like:

  • “What are my best selling products?”
  • “How many orders were made each month so far this year?”
  • “What was the total discount given in Q4 2024?”
  • What age group was the Synergistic Granite Chair most popular with in 2025?

Simply type your question in the input box and press enter.

Playground

Submit feeback

Upvote or downvote the response to provide feedback.

This feedback will be used to improve Inconvo over time.

Feedback

Add to annotation queue

Simply click the plus button directly within the playground to add the response to the annotation queue.

Add to annotation queue

Annotate examples

In the annotation queue you can see all of the examples you have added from the playground.

If the answer from the playground is incorrect, you can annotate the correct answer by clicking the edit button.

Once you have a correct answer, click the Add to Dataset button to add the example to your evaluations dataset.

Annotation Queue

View runs

Measure the performance of Inconvo on your data over time at a glance with evaluation runs.

Eval Runs

Call the API:

Just need to send a POST request to our Ask API endpoint.

Terminal window
curl --request POST \
--url "https://api.inconvo.com/ask" \
--header "Content-Type: application/json" \
--data '{
"question":
"How many products have I sold per day of the week?",
"conversationId": "conv_c9b1d",
"requestContext": {
"userId": "user_d7adc",
"orgId": "org_99548"
}
}'

Closing words

That’s it! There are only three steps you should really care about. Connecting, evaluating and calling the API.

All of them are covered here.