I have a requirement like i need to connect Azure OpenAI and UiPath using HTTP request activity. Could anyone guide me on the same. How we can configure Endpoint and key
you need to check the open AI api first..if you are able to replicate it in postman .then you just need to copy the curl and can import into http request
cheers
@rizvana.mohammed you don’t need postman just use UiPath HTTPS request like this
End point - https://.openai.azure.com/openai/deployments//chat/completions?api-version=2024-02-15-preview
Headers - Content-Type: application/json
api-key:
Body - { “messages”:[{“role”:“user”,“content”:“Hi”}], “max_tokens”:100 }
That will help you to connect with azure OpenAI with UiPath
Cheers
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.