Here’s a clear, practical guide to subscribing to Azure AI services and configuring them in FlowWright.
🧩 Part 1: Subscribe to Azure AI (Azure OpenAI)
1. Create an Azure account
Go to Microsoft Azure
- Sign up or log in
- Make sure you have an active subscription (free or paid)
2. Request access to Azure OpenAI
Azure OpenAI is gated:
- Go to Azure OpenAI Service
- Click “Apply for access”
- Wait for approval (can take hours–days)
3. Create an Azure OpenAI resource
Once approved:
- In Azure Portal → Create Resource
- Search: Azure OpenAI
- Fill:
- Subscription
- Resource Group
- Region (important!)
- Name (e.g.,
flowwright-openai)
- Click Create
4. Deploy a model
After the resource is created:
- Open your Azure OpenAI resource
- Go to Model Deployments
- Click Deploy Model
- Choose a model like:
gpt-4ogpt-4- or
gpt-35-turbo
- Give deployment name (e.g.,
gpt4o)
5. Get required credentials
Inside your Azure OpenAI resource:
- API Key → copy this
- Endpoint URL → looks like:
https://your-resource-name.openai.azure.com/
⚙️ Part 2: Configure in FlowWright
From your screenshot, you're already in:
👉 Config Settings → Azure AI
Fill the fields as follows:
🔑 Azure OpenAI Key
Paste your Azure API key:
xxxxxxxxxxxxxxxxxxxxxxxx

🌐 Azure OpenAI URL
Use this format:
https://<your-resource-name>.openai.azure.com/openai/deployments/<deployment-name>/chat/completions?api-version=2024-02-15-previewExample:
https://flowwright-openai.openai.azure.com/openai/deployments/gpt4o/chat/completions?api-version=2024-02-15-preview⚠️ Important:
- Replace:
<your-resource-name>-
<deployment-name>(NOT model name, but deployment name you created)