Hi Nikoi,
Thanks for reaching out. No, currently there is no direct integration with MS Azure OpenAI models directly as we have not had the request to do so. I believe implementing it is as the rest of the service providers and should not be hard.
But you can already indirectly make calls to your own models from MS Azure using the API call node and making direct API calls:
https://wpaiworkflowautomation.com/docs/api-call-node/
The api call format is pretty simple, here is the example from Azure’s official guide:
POST https://{endpoint}/openai/deployments/{deployment-id}/completions?api-version=2024-10-21
{
“prompt”: [
“tell me a joke about mango”
],
“max_tokens”: 32,
“temperature”: 1.0,
“n”: 1
}
Thread Starter
Nikoi
(@iokinpardo)
Thank you very much for your quick response. We will give it a try.
Have a nice day.