Edit

Share via


Resources for developing AI apps

This article provides the best learning resources for developers who are getting started building AI apps for each programming language. Resources include libraries and samples, documentation, training courses, and more.

Resources for Azure OpenAI in Microsoft Foundry Models

Azure OpenAI in Microsoft Foundry Models provides REST API access to the powerful language models available in OpenAI. Azure OpenAI helps you adapt these models to accomplish specific tasks, such as content generation, summarization, image understanding, semantic search, and natural language to code translation. Access Azure OpenAI by using the REST APIs, the OpenAI SDK for Python, or via the Microsoft Foundry portal.

Libraries

Link Description
OpenAI SDK for .NET The OpenAI .NET library provides convenient access to the OpenAI REST API from .NET applications. It can connect to Azure OpenAI resources or to the non-Azure OpenAI inference endpoint, making it a great choice for even non-Azure OpenAI development.
OpenAI SDK Releases Links to all OpenAI SDK library packages, including links for .NET, Java, JavaScript and Go.
OpenAI NuGet package The NuGet version of the OpenAI client library for .NET.

Samples

Link Description
.NET OpenAI MCP Agent This sample is an MCP agent app written in .NET, using Azure OpenAI, with a remote MCP server written in TypeScript.
AI Travel Agents The AI Travel Agents is a robust enterprise application that leverages multiple AI agents to enhance travel agency operations. The application demonstrates how six AI agents collaborate to assist employees in handling customer queries, providing destination recommendations, and planning itineraries.
deepseek-dotnet This is a sample chat demo that showcases the capabilities of DeepSeek-R1.
Completions A collection of 10 samples that demonstrate how to use the Azure OpenAI client library for .NET to chat, stream replies, use your own data, transcribe/translate audio, generate images, etc.
OpenAI with Microsoft Entra ID Role based access control A look at authentication using Microsoft Entra ID.
OpenAI with Managed Identities An article with more complex security scenarios that require Azure role-based access control (Azure RBAC). This document covers how to authenticate to your OpenAI resource using Microsoft Entra ID.
More samples A collection of OpenAI samples written in .NET.

Documentation

Link Description
Azure OpenAI Service Documentation The hub page for Azure OpenAI Service documentation.
Overview of the .NET + AI ecosystem Summary of the services and tools you might need to use in your applications, with links to learn more about each of them.
Switch from OpenAI to Azure OpenAI A guidance article on the small changes you need to make to your code, so you can swap back and forth between OpenAI and the Azure OpenAI Service.
Microsoft Foundry Quickstart The Microsoft Foundry SDK is available in multiple languages, including Python, Java, TypeScript, and C#.
Build an AI chat app with .NET Create a conversational .NET console chat app using an OpenAI or Azure OpenAI model.
Connect to and prompt an AI model Create a .NET console chat app to connect to and prompt an OpenAI or Azure OpenAI model.
Build a .NET AI vector search app Create a .NET console app to perform semantic search on a vector store to find relevant results for the user's query.
Invoke .NET functions using an AI model Create a .NET console AI chat app that connects to an AI model with local function calling enabled.
Generate images using OpenAI.Images.ImageClient Use the OpenAI DALL-E AI model. to generate an image.

Resources for other Azure AI services

In addition to Azure OpenAI Service, there are many other Azure AI services that help developers and organizations rapidly create intelligent, market-ready, and responsible applications with out-of-the-box and prebuilt customizable APIs and models. Example applications include natural language processing for conversations, search, monitoring, translation, speech, vision, and decision-making.

Samples

Link Description
Integrate Speech into your apps with Speech SDK Samples A repo of samples for the Azure Cognitive Services Speech SDK. Links to samples for speech recognition, translation, speech synthesis, and more.
Azure AI Document Intelligence SDK Azure AI Document Intelligence (formerly Form Recognizer) is a cloud service that uses machine learning to analyze text and structured data from documents. The Document Intelligence software development kit (SDK) is a set of libraries and tools that enable you to easily integrate Document Intelligence models and capabilities into your applications.
Extract structured data from forms, receipts, invoices, and cards using Form Recognizer in .NET A repo of samples for the Azure.AI.FormRecognizer client library.
Extract, classify, and understand text within documents using Text Analytics in .NET The client Library for Text Analytics. This is part of the Azure AI Language service, which provides Natural Language Processing (NLP) features for understanding and analyzing text.
Document Translation in .NET A quickstart article that details how to use Document Translation to translate a source document into a target language while preserving structure and text formatting.
Question Answering in .NET A quickstart article to get an answer (and confidence score) from a body of text that you send along with your question.
Conversational Language Understanding in .NET The client library for Conversational Language Understanding (CLU), a cloud-based conversational AI service, which can extract intents and entities in conversations and acts like an orchestrator to select the best candidate to analyze conversations to get best response from apps like Qna, Luis, and Conversation App.
Analyze images Sample code and setup documents for the Microsoft Azure AI Image Analysis SDK

Documentation

AI service Description API reference Quickstart
Content Safety An AI service that detects unwanted content. Content Safety API reference Quickstart
Document Intelligence Turn documents into intelligent data-driven solutions. Document Intelligence API reference Quickstart
Language Build apps with industry-leading natural language understanding capabilities. Language API reference Quickstart
Search Bring AI-powered cloud search to your applications. Search API reference Quickstart
Speech Speech to text, text to speech, translation, and speaker recognition. Speech API reference Quickstart
Translator Use AI-powered translation to translate more than 100 in-use, at-risk and endangered languages and dialects. Translation API reference Quickstart
Vision Analyze content in images and videos. Vision API reference Quickstart

Training

Link Description
Generative AI for Beginners Workshop Learn the fundamentals of building Generative AI apps with our 18-lesson comprehensive course by Microsoft Cloud Advocates.
AI Agents for Beginners Workshop Learn the fundamentals of building Generative AI agents with our 10-lesson comprehensive course by Microsoft Cloud Advocates.
Get started with Azure AI Services Azure AI Services is a collection of services that are building blocks of AI functionality you can integrate into your applications. In this learning path, you'll learn how to provision, secure, monitor, and deploy Azure AI Services resources and use them to build intelligent solutions.
Microsoft Azure AI Fundamentals: Generative AI Training path to help you understand how large language models form the foundation of generative AI: how Azure OpenAI Service provides access to the latest generative AI technology, how prompts and responses can be fine-tuned and how Microsoft's responsible AI principles drive ethical AI advancements.
Develop Generative AI solutions with Azure OpenAI Service Azure OpenAI Service provides access to OpenAI's powerful large language models such as ChatGPT, GPT, Codex, and Embeddings models. This learning path teaches developers how to generate code, images, and text using the Azure OpenAI SDK and other Azure services.

AI app templates

AI app templates provide you with well-maintained, easy to deploy reference implementations that provide a high-quality starting point for your AI apps.

There are two categories of AI app templates, building blocks and end-to-end solutions. Building blocks are smaller-scale samples that focus on specific scenarios and tasks. End-to-end solutions are comprehensive reference samples including documentation, source code, and deployment to allow you to take and extend for your own purposes.

To review a list of key templates available for each programming language, see AI app templates. To browse all available templates, see the AI app templates on the AI App Template gallery.

Resources for Azure OpenAI in Microsoft Foundry Models

Azure OpenAI in Microsoft Foundry Models provides REST API access to the powerful language models available in OpenAI. Azure OpenAI helps you adapt these models to accomplish specific tasks, such as content generation, summarization, image understanding, semantic search, and natural language to code translation. Access Azure OpenAI by using the REST APIs, the OpenAI SDK for Python, or via the Microsoft Foundry portal.

SDKs and libraries

Link Description
OpenAI SDK for Python The GitHub source code version of the OpenAI Python library, which provides convenient access to the OpenAI API from applications written in the Python language.
OpenAI Python Package The PyPi version of the OpenAI Python library.

Samples

Link Description
Streaming chat completions A notebook example that demonstrates how to get chat completions to work by using the Azure endpoints. The example focuses on chat completions, but also introduces other operations available with the API.
Azure embeddings A notebook example that demonstrates how to use embeddings with Azure endpoints. The example focuses on embeddings, but also introduces other operations available with the API.

Documentation

Link Description
Switch from OpenAI to Azure OpenAI A guidance article on the small changes you need to make to your code, so you can swap back and forth between OpenAI and the Azure OpenAI Service.
Quickstart: Get started generating text with Azure OpenAI Service A quickstart that demonstrates how to set up the services you need and write code to prompt a model by using Python.
Quickstart: Get started using GPT-35-Turbo and GPT-4 with Azure OpenAI Service A quickstart that demonstrates how to work with system, assistant, and user roles to tailor content in response to certain questions.
Quickstart: Chat with Azure OpenAI models by using your own data A quickstart that helps you add your own data, such as a PDF or other document.
Quickstart: Get started using Azure OpenAI Assistants (Preview) A quickstart that demonstrates how to instruct a model to use the built-in Python code interpreter to solve math problems step by step. This example provides a starting point to use your own AI assistants accessed through custom instructions.
Deploy model and generate text An article with minimal, straightforward detailed steps to deploy a model that can programmatically chat.
OpenAI with Microsoft Entra ID role-based access control A look at authentication by using Microsoft Entra ID and Azure role-based access control.
OpenAI with Azure AD-managed identities for Azure resources An article with more complex security scenarios that require Azure role-based access control. Explore how to authenticate to your OpenAI resource with Microsoft Entra ID.
Azure OpenAI in Microsoft Foundry Models samples A compilation of useful Azure OpenAI in Microsoft Foundry Models resources and code samples to help you get started and accelerate your technology adoption journey.
Quickstart: Use images in your AI chats A quickstart that shows how to programmatically ask a model to describe the contents of an image.
Quickstart: Generate images with Azure OpenAI Service A quickstart that demonstrates how to programmatically generate images by using Dall-E based on a prompt.

Resources for other Azure AI services

In addition to Azure OpenAI Service, there are many other Azure AI services. Developers and organizations can rapidly create intelligent, market-ready, and responsible applications with out-of-the-box and prebuilt customizable APIs and models. Example applications include natural language processing for conversations, search, monitoring, translation, speech, vision, and decision-making.

Samples

Link Description
Integrate speech into your apps with Azure AI Speech SDK Samples Samples for the Azure Cognitive Services Speech SDK. Links to samples for speech recognition, translation, speech synthesis, and more.
Azure AI Document Intelligence SDK Azure AI Document Intelligence (formerly Form Recognizer) is a cloud service that uses machine learning to analyze text and structured data from documents. The Document Intelligence software development kit (SDK) is a set of libraries and tools that enable you to easily integrate Document Intelligence models and capabilities into your applications.
Extract structured data from forms, receipts, invoices, and cards using Form Recognizer in Python Samples for the Azure.AI.FormRecognizer client library.
Extract, classify, and understand text within documents using Text Analytics in Python The client Library for Text Analytics. These APIs are part of the Azure AI Language service, which provides Natural Language Processing (NLP) features for understanding and analyzing text.
Document Translation in Python A quickstart article that uses Document Translation to translate a source document into a target language while preserving structure and text formatting.
Question answering in Python A quickstart article with steps to get an answer (and confidence score) from a body of text that you send along with your question.
Conversational Language Understanding in Python The client library for Conversational Language Understanding (CLU). CLU is a cloud-based conversational AI service that can extract intents and entities in conversations. CLU acts like an orchestrator to select the best candidate to analyze conversations to get the best response from apps like QnA, Luis, and Conversation App.
Analyze images Sample code and setup documents for the Microsoft Azure AI Image Analysis SDK.
Azure AI Content Safety SDK for Python The SDK can help detect harmful user-generated and AI-generated content in applications and services. Content Safety includes text and image APIs that allow you to detect material that is harmful.

Documentation

AI service Description API reference Quickstart
Content Safety An AI service that detects unwanted content. Content Safety API reference Quickstart
Document Intelligence Turn documents into intelligent data-driven solutions. Document Intelligence API reference Quickstart
Language Build apps with industry-leading natural language understanding capabilities. Text Analytics API reference Quickstart
Search Bring AI-powered cloud search to your applications. Search API reference Quickstart
Speech Speech to text, text to speech, translation, and speaker recognition. Speech API reference Quickstart
Translator Use AI-powered translation to translate more than 100 in-use, at-risk and endangered languages and dialects. Translation API reference Quickstart
Vision Analyze content in images and videos. Image Analysis API reference Quickstart

Training

Link Description
Generative AI for beginners workshop Learn the fundamentals of building Generative AI apps with our 18-lesson comprehensive course by Microsoft Cloud Advocates.
Get started with Azure AI services Azure AI services are building blocks of AI functionality you can integrate into your applications. Complete this learning path to explore how to provision, secure, monitor, and deploy Azure AI services resources and use them to build intelligent solutions.
Microsoft Azure AI Fundamentals: Generative AI Complete this learning path to understand how large language models form the foundation of generative AI. Explore how Azure OpenAI Service provides access to the latest generative AI technology. Learn how Azure OpenAI prompts and responses can be fine-tuned and how Microsoft's responsible AI principles drive ethical AI advancements.
Develop Generative AI solutions with Azure OpenAI Service Azure OpenAI Service provides access to OpenAI's powerful large language models such as ChatGPT, GPT, Codex, and Embeddings models. Complete this learning path for developers and explore how to generate code, images, and text by using the Azure OpenAI SDK and other Azure services.
Build AI apps with Azure Database for PostgreSQL Complete this learning path to explore Azure AI and Azure Machine Learning Services integrations provided by the Azure AI extension for Azure Database for PostgreSQL - Flexible Server. Learn how these services can enable you to build AI-powered apps.

AI application templates

AI application templates supply you with well-maintained, easy to deploy reference implementations that provide a high-quality starting point for your AI apps.

There are two categories of AI app templates, building blocks and end-to-end solutions. Building blocks are smaller-scale samples that focus on specific scenarios and tasks. End-to-end solutions are comprehensive reference samples that include documentation, source code, and deployment features. You can build on the solutions and extend them for your own purposes.

Resources for Azure OpenAI in Microsoft Foundry Models

Azure OpenAI in Microsoft Foundry Models provides REST API access to OpenAI's powerful language models. These models can be easily adapted to your specific task including but not limited to content generation, summarization, image understanding, semantic search, and natural language to code translation. Users can access the service through REST APIs, the OpenAI Node API Library, or via the Microsoft Foundry portal.

Libraries

Package Source code npm
OpenAI Node API Library Source code Package
Azure OpenAI library for TypeScript Source code Package

Samples

Link Description
AI Travel Agents The AI Travel Agents is a robust enterprise application that leverages multiple AI agents to enhance travel agency operations. The application demonstrates how six AI agents collaborate to assist employees in handling customer queries, providing destination recommendations, and planning itineraries.
Getting Started with Remote MCP Servers using Azure Container Apps (Node.js/TypeScript) This quick start guide provides the basic building blocks to set up a remote Model Context Protocol (MCP) server using Azure Container Apps. The MCP server is built using Node.js and TypeScript, and it can be used to run various tools and services in a serverless environment.
DeepSeek on Azure Demonstrates how to use DeepSeek with JavaScript/TypeScript via the OpenAI Node.js client library or LangChain.js. DeepSeek excels at tasks requiring deep context understanding and complex reasoning. You may experience longer response times compared to other models, because it simulates a thought process (under the <think> tag) before providing an actual answer.
Completions A simple example demonstrating how to get completions for the provided prompt.
Streaming Chat Completions A simple example demonstrating how to use  streaming chat completions.
Switch from OpenAI to Azure OpenAI Article with guidance on the small changes you need to make to your code in order to swap back and forth between OpenAI and the Azure OpenAI Service.
OpenAI with Microsoft Entra ID Role based access control A look at authentication using Microsoft Entra ID.
OpenAI with Managed Identities An article detailing more complex security scenarios require Azure role-based access control (Azure RBAC). This document covers how to authenticate to your OpenAI resource using Microsoft Entra ID.
LangChain.js with Azure OpenAI and Azure AI Search Build an intelligent RAG agent with LangChain.js that evaluates whether questions can be answered using unstructured data in Azure AI Search, and delivers contextually relevant responses from that knowledge base when possible.
More samples OpenAI samples covering a range of scenarios.

Documentation

Link Description
Azure OpenAI in Microsoft Foundry Models Documentation The Microsoft Foundry resource type offers a superset of capabilities compared to the Azure OpenAI resource type.
Work with chat completions models using Azure OpenAI in Microsoft Foundry Models A quick set of instructions to set up the services you need and code you must write to prompt a model using JavaScript.
Quickstart: Getting started with the Azure OpenAI Responses API The Responses API is a new stateful API from Azure OpenAI. It brings together the best capabilities from the chat completions and assistants API in one unified experience.
Quickstart: Chat with Azure OpenAI using your own data Similar to the first quickstart, but this time you add your own data (like a PDF or other document).
Microsoft Foundry Quickstart The Microsoft Foundry SDK is available in multiple languages, including Python, Java, TypeScript, and C#.
Quickstart: Use images in your AI chats How to programmatically ask the model to describe the contents of an image.
Quickstart: Generate images with Azure OpenAI Use this guide to get started generating images with the Azure OpenAI SDK for JavaScript.

Resources for other Foundry Tools

In addition to Azure OpenAI in Microsoft Foundry Models, there are many other Foundry Tools that help developers and organizations rapidly create intelligent, market-ready, and responsible applications with out-of-the-box and prebuilt customizable APIs and models. Example applications include natural language processing for conversations, search, monitoring, translation, speech, vision, and decision-making.

Samples

Link Description
Integrate Speech into your apps with Speech SDK Samples A collection of samples for the Azure Cognitive Services Speech SDK. Links to samples for speech recognition, translation, speech synthesis, and more.
Extract structured data from forms, receipts, invoices, and cards using Form Recognizer in JavaScript A collection of samples for the Azure.AI.FormRecognizer client library.
Extract, classify, and understand text within documents using Text Analytics in JavaScript The client Library for Text Analytics. This is part of the Azure AI Language service, which provides Natural Language Processing (NLP) features for understanding and analyzing text.
Document Translation in JavaScript A quickstart article that uses Document Translation to translate a source document into a target language while preserving structure and text formatting.
Analyze images Sample code and setup documents for the Microsoft Azure AI Image Analysis SDK.

Documentation

AI service Description API reference Quickstart
Content Safety An AI service that detects unwanted content. Content Safety API reference Quickstart
Document Intelligence Turn documents into intelligent data-driven solutions. Document Intelligence API reference Quickstart
Language Build apps with industry-leading natural language understanding capabilities. Text Analytics API reference Quickstart
Search Bring AI-powered cloud search to your applications. Search API reference Quickstart
Speech Speech to text, text to speech, translation, and speaker recognition. Speech API reference Quickstart
Translator Use AI-powered translation to translate more than 100 in-use, at-risk and endangered languages and dialects. Translation API reference Quickstart
Vision Analyze content in images and videos. Image Analysis API reference Quickstart

Training

Link Description
Generative AI for Beginners Workshop Learn the fundamentals of building Generative AI apps with our 18-lesson comprehensive course by Microsoft Cloud Advocates.
Generative AI for JavaScript developers This covers the basics of generative AI and how to build AI applications using JavaScript, from local development to deployment on Azure, up to running and scaling your AI models. The YouTube playlist of videos includes a series of videos around 10 minutes long, each focusing on a specific topic.
AI Agents for Beginners Workshop Learn the fundamentals of building Generative AI agents with our 10-lesson comprehensive course by Microsoft Cloud Advocates.
Get started with Foundry Tools Azure AI Services is a collection of services that are building blocks of AI functionality you can integrate into your applications. In this learning path, you learn how to provision, secure, monitor, and deploy Foundry Tools resources and use them to build intelligent solutions.
Microsoft Azure AI Fundamentals: Generative AI Training path to help you understand how large language models form the foundation of generative AI: how Azure OpenAI Service provides access to the latest generative AI technology, how prompts and responses can be fine-tuned and how Microsoft's responsible AI principles drive ethical AI advancements.
Develop Generative AI solutions with Azure OpenAI in Microsoft Foundry Azure OpenAI in Microsoft Foundry provides access to OpenAI's powerful large language models such as ChatGPT, GPT, Codex, and Embeddings models. This learning path teaches developers how to generate code, images, and text using the OpenAI SDK and other Azure services.
Build AI apps with Azure Database for PostgreSQL This learning path explores how the Azure AI and Azure Machine Learning Services integrations provided by the Azure AI extension for Azure Database for PostgreSQL - Flexible Server can enable you to build AI-powered apps.
Secure Azure OpenAI authentication and authorization Learn why you should use managed identity for Azure OpenAI authentication and how you can configure role based access controls to minimize necessary permissions.
Introduction to Azure OpenAI managed identity authentication with JavaScript This module helps you understand how to use a managed identity in JavaScript apps that interact with Azure OpenAI Service.

AI app templates

AI app templates provide you with well-maintained, easy to deploy reference implementations that provide a high-quality starting point for your AI apps.

There are two categories of AI app templates, building blocks and end-to-end solutions. Building blocks are smaller-scale samples that focus on specific scenarios and tasks. End-to-end solutions are comprehensive reference samples including documentation, source code, and deployment to allow you to take and extend for your own purposes.

To review a list of key templates available for each programming language, see AI app templates. To browse all available templates, see the AI app templates on the AI App Template gallery.

Resources for Azure OpenAI in Microsoft Foundry Models

Azure OpenAI in Microsoft Foundry Models provides REST API access to OpenAI's powerful language models. These models can be easily adapted to your specific task including but not limited to content generation, summarization, image understanding, semantic search, and natural language to code translation. Users can access the service through REST APIs, the OpenAI Node API Library, or via the Microsoft Foundry portal.

Libraries and samples

Link Description
langchain4j-azure-open-ai Releases Maven package
langchain4j-azure-ai-search Releases Maven
langchain4j-document-loader-azure-storage-blob Releases Maven
More Samples The Azure OpenAI service samples are a set of self-contained Java programs that demonstrate interacting with Azure OpenAI service using the client library. Each sample focuses on a specific scenario and can be executed independently.

Documentation

Link Description
Azure OpenAI Service Documentation The hub page for Azure OpenAI Service documentation.
Quickstart: Get started generating text using Azure OpenAI Service A quick set of instructions to set up the services you need and code you must write to prompt a model using Java.
Work with chat completions models using Azure OpenAI in Microsoft Foundry Models A quick set of instructions to set up the services you need and code you must write to prompt a model using Java.
Microsoft Foundry Quickstart The Microsoft Foundry SDK is available in multiple languages, including Python, Java, TypeScript, and C#.
Switch from OpenAI to Azure OpenAI Article with guidance on the small changes you need to make to your code in order to swap back and forth between OpenAI and the Azure OpenAI Service.
OpenAI with Microsoft Entra ID Role based access control An article that looks at authentication using Microsoft Entra ID.
OpenAI with Managed Identities An article detailing more complex security scenarios that require Azure role-based access control (Azure RBAC). This document covers how to authenticate to your OpenAI resource using Microsoft Entra ID.
Quickstart: Get started using GPT-35-Turbo and GPT-4 with Azure OpenAI Service in IntelliJ Similar to the first quickstart, but provides an example of system, assistant and user roles to tailor the content when asked certain questions using IntelliJ.
Quickstart: Generate images with Azure OpenAI in Microsoft Foundry Models Use this guide to get started generating images with the Azure OpenAI SDK for Java.

Resources for other Azure AI services

In addition to Azure OpenAI Service, there are many other Azure AI services that help developers and organizations rapidly create intelligent, market-ready, and responsible applications with out-of-the-box and prebuilt customizable APIs and models. Example applications include natural language processing for conversations, search, monitoring, translation, speech, vision, and decision-making.

Samples

Link Description
Integrate Speech into your apps with Speech SDK Samples A collection of samples for the Azure Cognitive Services Speech SDK. Links to samples for speech recognition, translation, speech synthesis, and more.
Extract structured data from forms, receipts, invoices, and cards using Form Recognizer in Java A collection of samples for the Azure.AI.FormRecognizer client library.
Extract, classify, and understand text within documents using Text Analytics in Java The client Library for Text Analytics is part of the Azure AI Language service, which provides Natural Language Processing (NLP) features for understanding and analyzing text.
Document Translation in Java A quickstart article that explains how to use Document Translation to translate a source document into a target language while preserving structure and text formatting.
Analyze images Sample code and setup documents for the Microsoft Azure Image Analysis client library for Java

Documentation

AI service Description API reference Quickstart
Content Safety An AI service that detects unwanted content. Content Safety API reference Quickstart
Document Intelligence Turn documents into intelligent data-driven solutions. Document Intelligence API reference Quickstart
Language Build apps with industry-leading natural language understanding capabilities. Language API reference Quickstart
Search Bring AI-powered cloud search to your applications. Search API reference Quickstart
Speech Speech to text, text to speech, translation, and speaker recognition. Speech API reference Quickstart
Translator Use AI-powered translation to translate more than 100 in-use, at-risk and endangered languages and dialects. Translator API reference Quickstart
Vision Analyze content in images and videos. Vision API reference Quickstart

Training

Link Description
Generative AI for Beginners Workshop Learn the fundamentals of building Generative AI apps with our 18-lesson comprehensive course by Microsoft Cloud Advocates.
AI Agents for Beginners Workshop Learn the fundamentals of building Generative AI agents with our 10-lesson comprehensive course by Microsoft Cloud Advocates.
Introduction to AI in Azure Training path to help you understand core concepts related to artificial intelligence (AI), and the services in Microsoft Azure that can be used to create AI solutions.
Develop generative AI apps in Azure Generative Artificial Intelligence (AI) is becoming more accessible through comprehensive development platforms like Microsoft Foundry. Learn how to build generative AI applications that use language models to chat with your users.

AI app templates

AI app templates provide you with well-maintained, easy to deploy reference implementations that provide a high-quality starting point for your AI apps.

There are two categories of AI app templates, building blocks and end-to-end solutions. Building blocks are smaller-scale samples that focus on specific scenarios and tasks. End-to-end solutions are comprehensive reference samples including documentation, source code, and deployment to allow you to take and extend for your own purposes.

To review a list of key templates available for each programming language, see AI app templates. To browse all available templates, see the AI app templates on the AI App Template gallery.

Resources for Azure OpenAI in Microsoft Foundry Models

Azure OpenAI in Microsoft Foundry Models provides REST API access to OpenAI's powerful language models. These models can be easily adapted to your specific task including but not limited to content generation, summarization, image understanding, semantic search, and natural language to code translation. Users can access the service through REST APIs, the OpenAI Node API Library, or via the Microsoft Foundry portal.

Link Description
OpenAI SDK for Go The GitHub source version of the OpenAI SDK for Go.
Switch from OpenAI to Azure OpenAI Article with guidance on the small changes you need to make to your code in order to swap back and forth between OpenAI and the Azure OpenAI Service.
Package (pkg.go.dev) The Go package version of Azure OpenAI client module for Go.
ChatCompletions A simple example demonstrating how to implement completions.
ChatCompletions using Tools A simple example demonstrating how to implement completions using Functions.
Streaming Chat Completions A simple example demonstrating how to implement streaming completions.
Image generation A simple example of implementing image generation.
Embeddings A simple example demonstrating how to create embeddings.
Other examples The Go package version of documentation for the OpenAI client module for Go.
More guidance The hub page for Azure OpenAI Service documentation.

Secure your Azure AI resources

Link Description
OpenAI with Microsoft Entra ID Role based access control A look at authentication using Microsoft Entra ID.
OpenAI with Managed Identities An article detailing more complex security scenarios that require Azure role-based access control (Azure RBAC). This document covers how to authenticate to your OpenAI resource using Microsoft Entra ID.

Speech/Vision

Link Description
Captioning and Call Center Transcription in Go A repo containing samples for captions and transcriptions in a call center scenario.
Integrate Speech into your apps with Speech SDK for Go The source for the Azure Cognitive Services Speech SDK.

Language

Link Description
Extract, classify, and understand text within documents using Text Analytics in Go The client library for Text Analytics, which is part of the Azure Cognitive Service for Language, a cloud-based service that provides Natural Language Processing (NLP) features for understanding and analyzing text.
Document Translation in Go A quickstart article showing how to use Document Translation to translate a source document into a target language while preserving structure and text formatting.