Use ChatGPT to summarize your Data Blaze data and ask questions

Did you know you can use our GPT OpenAI integration to ask questions about your Data Blaze data?
Below are a few examples.

These are impossible to preview. Copy the bundle to Text Blaze and preview it there.

Let me know if you have any questions or ideas.

There are 3 snippets below:

  1. The first will answer the question "What is the most expensive product?"
  2. The second will answer the question "What products are currently in stock?"
  3. The third will answer the question "Whatis the combined cost of all products?"

{dbselect: SELECT Product, Price, Rating, stock FROM Products; space=id; menu=no; multiple=yes; name=products}
{openai-text: Below is a list of our products. What is the most expensive product?
{=products}
}

{dbselect: SELECT Product, Price, Rating, stock FROM Products; space=id; menu=no; multiple=yes; name=products}
{openai-text: Below is a list of our products. Which products are currently in stock?
{=products}
}

{dbselect: SELECT Product, Price, Rating, stock FROM Products; space=id; menu=no; multiple=yes; name=products}
{openai-text: Below is a list of our products. What is the total cost of all products (expressed in $)?
{=products}
}

3 Likes