Service | Description |
Anomaly Detector (retired) | Identify potential problems early on. |
Azure AI Search | Bring AI-powered cloud search to your mobile & web apps. |
Azure OpenAI | Perform a wide variety of natural language tasks. |
Bot Service | Create bots and connect them across channels. |
Content Moderator (retired) | Detect potentially offensive or unwanted content. |
Content Safety | An AI service that detects unwanted contents. |
Custom Vision | Customize image recognition for your business. |
Document Intelligence | Turn documents into intelligent data-driven solutions. |
Face | Detect and identify people and emotions in images. |
Immersive Reader | Help users read and comprehend text. |
Language | Build apps with industry-leading natural language understanding capabilities. |
Language understanding (retired) | Understand natural language in your apps. |
Metrics Advisor (retired) | An AI service that detects unwanted contents. |
Personalizer (retired) | Create rich, personalized experiences for each user. |
QnA maker (retired) | Distill information into easy-to-navigate questions and answers. |
Speech | Speech to text, text to speech, translation, and speaker recognition. |
Translator | Use AI-powered translation technology to translate more than 100 in-use, at-risk, and endangered languages and dialects. |
Video Indexer | Extract actionable insights from your videos. |
Vision | Analyze content in images and videos. |
Responsible AI Services within Azure AI Services suite
Responsible AI terms acceptance
How to Access OPEN AI - Access is currently limited due to high demand, upcoming product improvements, and Microsoft’s commitment to responsible AI. Azure OpenAI requires registration and is currently only available to approved enterprise customers and partners. You can apply here for access: Apply now
Azure OpenAI Service is powered by a diverse set of models with different capabilities and price points. Model availability varies by region
Models | Description |
---|---|
GPT-4o & GPT-4 Turbo NEW | The latest most capable Azure OpenAI models with multimodal versions, which can accept both text and images as input. |
GPT-4 | A set of models that improve on GPT-3.5 and can understand and generate natural language and code. |
GPT-3.5 | A set of models that improve on GPT-3 and can understand and generate natural language and code. |
Embeddings | A set of models that can convert text into numerical vector form to facilitate text similarity. |
DALL-E | A series of models that can generate original images from natural language. |
Whisper | A series of models in preview that can transcribe and translate speech to text. |
Text to speech (Preview) | A series of models in preview that can synthesize text to speech. |
Model summary table and region availability - Azure OpenAI Service models - Azure OpenAI | Microsoft Learn
sku_name
varies based on different kinds of Azure AI ServicesAcademic
, AnomalyDetector
, Bing.Autosuggest
, Bing.Autosuggest.v7
, Bing.CustomSearch
, Bing.Search
, Bing.Search.v7
, Bing.Speech
, Bing.SpellCheck
, Bing.SpellCheck.v7
, CognitiveServices
, ComputerVision
, ContentModerator
, ContentSafety
, CustomSpeech
, CustomVision.Prediction
, CustomVision.Training
, Emotion
, Face
, FormRecognizer
, ImmersiveReader
, LUIS
, LUIS.Authoring
, MetricsAdvisor
, OpenAI
, Personalizer
, QnAMaker
, Recommendations
, SpeakerRecognition
, Speech
, SpeechServices
, SpeechTranslation
, TextAnalytics
, TextTranslation
and WebLM
. S.N. | Azure AI Services | Kind |
1 | Open AI (Limited Access) | OpenAI |
2 | Azure AI Content Safety | ContentSafety |
3 | Azure AI Translation | TextTranslation |
4 | Azure AI Speech | SpeechServices |
5 | Azure AI Vision (Responsible AI Service) | ComputerVision |
6 | Azure AI language (Responsible AI Service) | TextAnalytics |
7 | Azure AI Document Intelligence | FormRecognizer |
8 | Azure AI services multi-service account | CognitiveServices |
resource "azurerm_cognitive_account" "example" {
name = "example-account"
location = azurerm_resource_group.example.location
resource_group_name = azurerm_resource_group.example.name
kind = "OpenAI"
sku_name = "S0"
tags = {
Acceptance = "Test"
}
}
cognitive_account_id
is required parameter where you can pass ID of the above created Cognitive Accountmodel
(Required), scale
(Required)resource "azurerm_cognitive_deployment" "example" {
name = "example-cd"
cognitive_account_id = azurerm_cognitive_account.example.id
model {
format = "OpenAI"
name = "text-curie-001"
version = "1"
}
scale {
type = "Standard"
}
}
Microsoft.CognitiveServices/locations/resourceGroups/deletedAccounts/delete
to purge resources, such as Cognitive Services Contributor or Contributor.
Overview - Azure AI Services
Responsible AI
Limited Access Features
Azure Open AI Service and Deployment Model
Cognitive Account - IaC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.