Kintone with Azure OpenAI

how should i use the kintone app to create an app that inputs text, runs the summary using AOAI, and outputs it

Hello @Mpumuro

Welcome back to the community! :smiley:

I couldn’t find the same article in English, but there’s a Japanese article on the official Cybozu Developer Network titled Integrate Azure OpenAI into a Kintone Summary Plugin. This article demonstrates how to create an app that integrates Azure OpenAI into a Kintone plugin to summarize text.

In short, when a user adds a record—such as meeting notes—in the Kintone app, the plugin sends the content to Azure OpenAI via API. Azure OpenAI then summarizes the notes and returns the summary to Kintone, allowing the user to review it.

This might be a helpful reference for what you’re looking to accomplish.

Hello @Mpumuro

Thank you for your question, welcome.

I'll will add on here to Chris's response. As Chris stated, the help page he is referring to is only in Japanese so I have broken it down a bit for those who are more confident in English.

Kintone offers a summary plugin which will take text that has been input, then run it through Azure OpenAI, which will then summarize and output the text.

The majority of the following help pages for setting up the process are only available in Japanese, however feel free to use an extension to translate the webpage.
I will walk you through the process of getting everything setup.

This is the webpage I will be referring to.
Incorporating Azure Open AI into Kintone Summary Plugin (Japanese)

What you'll need
Azure account
Kintone developer license (which is free) (Japanese)

Set up the external services to be linked.
Configure the Azure OpenAI Service, with the external service that you want to link to.
Create and deploy an Azure OpenAI Service resource (English):

Then, check the following Azure Open API specification to make sure you can call the API with the curl command.
Azure OpenAI Service REST API reference (English)

Install the Plugin
Download the following Github repository to a directory of your choice.

Once you have moved to the downloaded folder, run the commands in the README.md in the Github repository to create a zip file of the plugin.
Once the zip file has been created, add it to kintone. Please refer to the following help page for instructions on how to add it:
Adding/Deleting Plug-Ins (App Settings):
https://get.kintone.help/k/en/id/040566.html

Explanation of sample code:
Please be aware there are parts of the plugin code that you will need to check and modify.

Operation check:
And finally you'll want to check to make sure the plugin is configured correctly.
Enter some text that you want the AI ​​to summarize, then check to see if AI can summarize it.

I hope this helps.