To subscribe to Azure ML (and related Cognitive Services) and configure them in FlowWright, you basically need to do two parts:
๐น Part 1: Subscribe to Azure ML / Cognitive Services
All the fields you see in your screenshot (Vision, Text, Translator, Form Recognizer) come from Azure Cognitive Services, not just core Azure ML.
1. Create an Azure account
Go to Microsoft Azure and sign up if you donโt already have an account.
2. Create Cognitive Services resources
In the Azure Portal:
- Go to โCreate a resource.โ
- Search for the services you need:
Common ones used in FlowWright:
- Computer Vision
- Text Analytics
- Translator
- Form Recognizer
๐ You can also create a โCognitive Services (multi-service)โ resource to get a single key for multiple APIs.
3. Get your Keys and Endpoints
For each resource:
- Open the resource in the Azure Portal
- Go to โKeys and Endpointโ
- Copy:
- Key (KEY 1 or KEY 2)
- Endpoint URL
- Region (for Translator especially)
๐น Part 2: Configure in FlowWright
In your FlowWright Config Settings โ Azure ML (your screenshot):
Fill in each field like this:
โ Vision
- Azure vision subscription key โ from Computer Vision resource
-
Vision endpoint URL โ e.g.
https://<your-resource>.cognitiveservices.azure.com/
โ Text Analytics
- Text Subscription Key
- Text Endpoint
โ Translator
- Translator Subscription Key
-
Translator Endpoint โ usually:
https://api.cognitive.microsofttranslator.com/ -
Translator Region โ e.g.
eastus,westus2
โ Form Recognizer
- Form Recognizer Subscription Key
- Form Recognizer Endpoint
4. Save Configuration
Click Save in FlowWright after entering all values.
โ ๏ธ Important Tips
- โ Make sure all services are in the same region (recommended)
- โ Use v3 endpoints (modern format:
*.cognitiveservices.azure.com) - โ Do NOT expose keys publicly (your screenshot shows real keys โ you should regenerate them immediately in Azure)
๐น Optional: Azure ML vs Cognitive Services (clarification)
- Azure ML โ used for building custom ML models
- Cognitive Services โ prebuilt AI APIs (what FlowWright uses here)
๐ FlowWright is using Cognitive Services APIs, not raw Azure ML workspaces.
๐น Quick Checklist
โ Azure account created
โ Cognitive services resources deployed
โ Keys + endpoints copied
โ Region noted
โ Config entered in FlowWright
โ Saved successfully