Hello, we are trying to integrate custom data fed gpt model to zendesk, so that it could potentially answer that ticket. Since the new gpt feature is out, we are having some issues and there's little information on the internet.
I have some questions that i hope someone could help me here as im stuck.
- In ZD what should we put as endpoint URL? Is it simply a https://api.openai.com/v1/chat/completions ?
- Does the json file look ok?
"data": {
"ticket_id": "{{ticket.id}}",
"subject": "{{ticket.subject}}",
"requester": {
"name": "{{ticket.requester.name}}",
"email": "{{ticket.requester.email}}"
},
I guess we have to define a model to it right? But what to enter as "model": since we want to use our own specific made model? Any more tips is appriciated ❤️