Talk to ChatGPT in  BDD
šŸ¤–

Talk to ChatGPT in BDD

Tags
Technology
Description
Published
Published February 20, 2023

Background

Given we all know that ChatGPT is
  • Context-aware
  • Capable of generating code snippets
And BDD isnā€™t anything unfamiliar to most programmers,
Then why not combine the both world?

Experiment

ChatGPT Prompt

Given Iā€™ve a notion database with properties - name (text) - type (select with article, book, tweet, as options) - created (date) - read? (checkbox) When receiving prompt ā€œOutliers(Malcolm Gladwell) todayā€ as input, Then insert it into notion database using notion API

ChatGPT Response

To insert the given input into a Notion database using the Notion API, you can use the following code in Node.js:
const { Client } = require("@notionhq/client"); // Initializing a client const notion = new Client({ auth: process.env.NOTION_API_KEY }); // ID of the database const databaseId = "<your database ID>"; // Properties of the new record const name = { title: [{ text: { content: "Outliers (Malcolm Gladwell)" } }] }; const type = { select: { name: "book" } }; const created = { date: { start: new Date() } }; const read = { checkbox: false }; // Creating the new record const newRecord = { name, type, created, read, }; // Adding the new record to the database async function addRecordToDatabase() { try { const response = await notion.pages.create({ parent: { database_id: databaseId }, properties: newRecord, }); console.log("New record has been added: ", response); } catch (error) { console.error(error.body); } } addRecordToDatabase();
Make sure to replace <your database ID> with the actual ID of your Notion database, which can be found in the URL when you're viewing the database.
You can modify the property values as needed to match your specific database schema.
Note: the interesting part is how ChatGPT automatically inferred the value of notion database properties type, created and read?, itā€™s not always accurate, check it twice!

Diagram

By greying out the ChatGPT part, Itā€™s as if Notion can understand natural languages that ChatGPT is capable of interpreting.
notion image

Whatā€™s next

It should be obvious that the ability of GPT-3 (underlying AI model) to take unstructured input and convert it to functional output isnā€™t limit to Notion API. Itā€™s an indicator that the tedious low-level task of figuring out how to glue services with different API specs can be delegated to AI, which further unleashes programmers productivity and creativity.
Ā 
As mentioned above, the ā€œparameterized outputā€ generated isnā€™t always accurate, while you can manually verifying results for simple cases like above, reliability will likely be a concern for more advanced workflows that glued by automation tools like Zappier, AWS Step Functions etc. Nevertheless, itā€™s still rather exciting to see what similar ideas can lead to.

Inspiration

Ā 

Note:
If replacing the above notion API with cURL, weā€™ll get following response
To use cURL to insert a new record into a Notion database, you can use the Notion API's /v1/pages endpoint. Here's an example cURL command that will create a new page in your Notion database:
curl --location --request POST 'https://api.notion.com/v1/pages' \ --header 'Notion-Version: 2021-05-13' \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer YOUR_API_SECRET_KEY' \ --data-raw '{ "parent": { "database_id": "YOUR_DATABASE_ID" }, "properties": { "name": { "title": [ { "text": { "content": "Outliers(Malcolm Gladwell)" } } ] }, "type": { "select": { "name": "book" } }, "created": { "date": { "start": "2022-12-25" } }, "read?": { "checkbox": true } } }'
Make sure to replace YOUR_API_SECRET_KEY with your actual Notion API secret key, YOUR_DATABASE_ID with the actual database ID of the Notion database you want to insert the record into, and adjust the property values as needed for your specific database.