In this guide, we will learn how to integrate ChatGPT as Mini App right inside Picky Assist,
๐ฅ ChatGPT in Action ๐ Streamline Your HR Recruitment Process with Picky Assist & ChatGPT CV Analysis, watch the video below
We will make use of ChatGPT API to integrate with Mini App and you need the following parameters, which need to copy and paste while you build the mini app inside your Picky Assist account.
ChatGPT API Parameters
To generate the ChatGPT API key please login into your Open AI account and then click this link https://platform.openai.com/account/api-keys
Method : POST
URL : https://api.openai.com/v1/chat/completions
Headers
Content-Type -> application/json
Body
{
"model":"gpt-3.5-turbo",
"messages":[
{
"role":"system",
"content":"You are an HR assistant help to analyse CV of candidates"
},
{
"role":"assistant",
"content":"Here is the CV details"
},
{
"role":"user",
"content":"please summarise the cv with 1) work expereince 2) education background"
}
]
}
Add comment