• Resolved Nikoi

    (@iokinpardo)


    Hi,

    Is MS Azure OpenAI models available on AI Workflow Automation plugin?

    This is s must for many companies. If those are not available right now, how long could take to enable them?

    Thanks in advance

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author massiveshift

    (@massiveshift)

    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.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.