Announcing a new OpenAI feature for developers on Azure  | Microsoft Azure Blog (2024)

We are thrilled to announce the launch of OpenAI’s latest model, GPT-4o Next.

We are thrilled to announce the launch of OpenAI’s latest model on Azure. This new model, officially named GPT-4o-2024-08-06, brings innovative features designed to elevate developer experiences on Azure. Specifically, the new model focuses on enhancing productivity through Structured Outputs, like JSON Schemas, for the new GPT-4o and GPT-4o mini models.

A focus on Structured Outputs

GPT-4o was first announced in May 2024, as OpenAI’s new multimodal model, followed by GPT-4o mini in July 2024. Today’s version is designed with a specific use case in mind: simplifying the process of generating well-defined, structured outputs from AI models. This feature is particularly valuable for developers who need to validate and format AI outputs into structures like JSON Schemas. Developers often face challenges validating and formatting AI outputs into well-defined structures like JSON Schemas.

Structured Outputs addresses this by allowing developers to specify the desired output format directly from the AI model. This feature enables developers to define a JSON Schema for text outputs, simplifying the process of generating data payloads that can seamlessly integrate with other systems or enhance user experiences.

Use cases for JSON

JSON Schema is essential for defining the structure and constraints of JSON documents, ensuring they follow specific formats with mandatory properties and value types. It enhances data understandability through semantic annotation and serves as a domain-specific language for optimized application requirements. Development teams use JSON Schema to maintain consistency across platforms, drive model-driven UI constraints, and automatically generate user interfaces. It aids in data serialization, security testing, and partial validation in technical scenarios. JSON Schema also supports automated testing, Schema inference, and machine-readable web profiles, improving data interoperability. It standardizes validation interfaces and reporting, handles external validation, and ensures data consistency within and across documents. It can also help with customer support and how to communicate in a timely manner.

Two flavors of Structured Outputs

Structured Outputs is available in two forms:

  1. User-defined JSON Schema: This option allows developers to specify the exact JSON Schema they want the AI to follow, supported by both GPT-4o-2024-08-06 and GPT-4o-mini-2024-07-18.
  2. More Accurate Tool Output (“Strict Mode”): This limited version lets developers define specific function signatures for tool use, supported by all models that support function calling, including GPT-3.5 Turbo, GPT-4, GPT-4 Turbo, and GPT-4o models from June 2023 onwards.

Technical guidance on using Structured Outputs

To help you get started with Structured Outputs, we recommend the following approach.

Getting started with Structured Outputs

  1. Define Your JSON Schema: Determine the structure you want your AI outputs to follow. This can include required fields, data types, and other constraints.
  2. Configure the AI model: Use the Structured Outputs feature to specify your JSON Schema within the API call. This ensures that the AI output adheres to your defined structure.
  3. Integration and testing: Integrate the output into your application or system, and test thoroughly to ensure compliance with your JSON Schema.

Example use case: Customer support automation

Imagine you’re developing a customer support chatbot that needs to generate responses in a specific format for logging and analytics. By using Structured Outputs, you can define a JSON Schema that includes fields like responseText, intent, confidenceScore, and timestamp. This ensures that every response generated by the chatbot is formatted correctly, making it easier to log, analyze, and act upon.

Example API call

Here’s an example API call to illustrate how to use Structured Outputs:

{ "model": "gpt-4o-2024-08-06", "prompt": "Generate a customer support response", "structured_output": { "schema": { "type": "object", "properties": { "responseText": { "type": "string" }, "intent": { "type": "string" }, "confidenceScore": { "type": "number" }, "timestamp": { "type": "string", "format": "date-time" } }, "required": ["responseText", "intent", "confidenceScore", "timestamp"] } }}

Pricing

We will make pricing for this feature available soon. Please bookmark the Azure OpenAI Service pricing page.

Learn more about the future of AI

We’ve been rolling out several new models recently, and we understand it can be a lot to keep up with. This flurry of activity is all about empowering developer innovation. Each new model brings unique capabilities and enhancements, helping you build even more powerful and versatile applications.

The launch of this new model feature for GPT-4o and GPT-4o mini marks a significant milestone in our ongoing efforts to push the boundaries of AI capabilities. We’re excited to see how developers will leverage these new features to create innovative and impactful applications.

Azure ai studio

Craft AI solutions your way

Stay tuned for more updates and get ready to experience the future of AI with these new developer features for GPT-4o and mini. Start experimenting in the Azure OpenAI Playground.

Announcing a new OpenAI feature for developers on Azure  | Microsoft Azure Blog (2024)

FAQs

Is GPT 4 available in Azure OpenAI? ›

GPT-4o mini, announced by OpenAI today, is available simultaneously on Azure AI, supporting text processing capabilities with excellent speed and with image, audio, and video coming later. Try it at no cost in the Azure OpenAI Studio Playground.

What is the difference between Azure OpenAI and OpenAI? ›

Microsoft Azure OpenAI— Microsoft Azure OpenAI is a collaboration between Microsoft and OpenAI that provides Azure customers access to OpenAI's powerful models. Their partnership extends the benefits of implementing AI models with Azure's cloud services.

What is new in OpenAI? ›

Azure OpenAI on your own data (preview) updates

Azure OpenAI On Your Data now supports private endpoints. Ability to filter access to sensitive documents. Automatically refresh your index on a schedule. Vector search and semantic search options.

What is Microsoft AI Azure? ›

Azure AI services help developers and organizations rapidly create intelligent, cutting-edge, market-ready, and responsible applications with out-of-the-box and prebuilt and customizable APIs and models.

Is Azure OpenAI faster than OpenAI API? ›

The code was executed every 30 minutes for a period of 48 hours. The findings indicate that for 90% of the runs Azure OpenAI is slightly faster than OpenAI, but 10% of Azure OpenAI's runs take very long.

How are ChatGPT OpenAI and Azure OpenAI related? ›

In summary, ChatGPT is developed by OpenAI, and Azure OpenAI is the collaboration between OpenAI and Microsoft to make OpenAI's models accessible through the Azure platform.

Is Azure AI better than ChatGPT? ›

Which platform is better for natural language processing, Microsoft Azure OpenAI or ChatGPT? Microsoft Azure is great at natural language processing because it has robust tools and services for language understanding, like Azure Cognitive Services and Language Understanding Intelligence Service (LUIS).

Which is better, OpenAI or ChatGPT? ›

OpenAI provides its users with a wide range of generative AI models to test and use, while ChatGPT is limited mostly to back-and-forth communication, brainstorming, and undertaking various writing tasks. There are many differences between ChatGPT and OpenAI's other offerings in terms of features.

What is the main advantage of using Azure OpenAI services? ›

Azure OpenAI Service offers pricing based on both Pay-As-You-Go and Provisioned Throughput Units (PTUs). Pay-As-You-Go allows you to pay for the resources you consume, making it flexible for variable workloads.

What is the benefit of OpenAI? ›

Enhanced efficiency: OpenAI's models can automate knowledge-based tasks in ways that were previously impossible. It can also handle complex tasks like data analysis, report generation and content creation. The automation of rote tasks may help free up humans for more creative, strategic and empathetic roles.

What are the features of GPT-4o? ›

GPT-4 vs. GPT-4 Turbo vs. GPT-4o
Feature/ModelGPT-4GPT-4o
Vision CapabilitiesBasicAdvanced vision and audio capabilities
Multimodal CapabilitiesLimitedFull integration of text, image and audio
CostStandard50% cheaper than GPT-4 Turbo
4 more rows
May 13, 2024

Which is the most powerful AI in OpenAI? ›

GPT-5 could be OpenAI's most powerful AI model: Capabilities users would like to see | Technology News - The Indian Express.

Is OpenAI built on Azure? ›

Azure OpenAI is a suite of AI services that allows you to apply natural language algorithms on your data without any prior knowledge of math, data science, or machine learning. It can help you make your app more intelligent without writing actual code for natural languages.

What AI models are available in Azure? ›

  • Azure Arc​
  • Microsoft Sentinel.
  • Azure SQL.
  • Azure ExpressRoute.
  • Azure DevOps.
  • Azure Database for PostgreSQL.
  • Azure IoT Edge.
  • Azure Monitor.

Who owns ChatGPT? ›

ChatGPT is owned by OpenAI, the company that developed and released it. OpenAI is a company dedicated to AI research.

Who is GPT-4 available to? ›

GPT-4o is available to anyone with an OpenAI API account, and you can use this model in the Chat Completions API, Assistants API, and Batch API. Function calling and JSON mode are also supported by this model. You can also get started via the Playground.

How do I access OpenAI GPT-4? ›

Here is how you can access GPT-4 in Team-GPT:
  1. Verify API Key: Start by checking your current API key. ...
  2. Check Payment Plan: Next, head to the billing section in your OpenAI account and click on 'Start Payment Plan'. ...
  3. Complete Payment: Follow the instructions to finalize the payment process.

Who has access to GPT-4 API? ›

Availability in the API

GPT-4o and GPT-4o mini are available to anyone with an OpenAI API account, and you can use the models in the Chat Completions API, Assistants API, and Batch API.

Where can I get GPT-4? ›

The official way to access GPT-4's impressive set of features is through Open AI's subscription of $20/month. But there are some ways to use Chat GPT-4 for free. We have selected a collection of the best GPT-4-based services you can try out now.

Top Articles
Hanco*ck Whitney Commercial Card Manager
(2) 45x102 Dry Van Trailers for Sale - Grayson GA - general for sale - by dealer - craigslist
Steve Bannon Issues Warning To Donald Trump
Evil Dead Rise Review - IGN
Cremation Services | Mason Funeral Home serving Westfield, New York...
Red Carpet Oil Change Blackstone
James Darren, ‘Gidget’ teen idol, singer and director, dies at 88
Goodwill letter success! **UPDATE** new scores: EX 782; EQ 764; TU 769 no more baddies!
Seattle Clipper Vacations Ferry Terminal Amtrak
Chevrolet Colorado - Infos, Preise, Alternativen
Flag Mashup Bot
Elgin Il Building Department
Craigslist Free Stuff Columbus Ga
Netlearning Login Rwjbh
Accident On May River Road Today
Sutter Health Candidate Login
La Fitness Oxford Valley Class Schedule
Craigslist Louisville Com
What Does Fox Stand For In Fox News
Is Robert Manse Leaving Hsn
Us151 San Jose
So sehen die 130 neuen Doppelstockzüge fürs Land aus
Ethiopia’s PM pledges victory in video from front line
Dawat Restaurant Novi
Dr. Katrina (Katrina Hutchins) on LinkedIn: #dreambig #classof2025 #bestclassever #leadershipaugusta
Journal articles: 'Mark P. Herschede Trust' – Grafiati
modelo julia - PLAYBOARD
Pair sentenced for May 2023 murder of Roger Driesel
Altametrics Login Little Caesars
Dell Optiplex 7010 Drivers Download and Update for Windows 10
Milwaukee Nickname Crossword Clue
Math Mystery Case Of The Snowman Army Answer Key
Pa Lottery Remaining Prizes Scratch Offs
Arapahoe Youth League Baseball
Biopark Prices
Craigslist Mexico Cancun
Keci News
Simple Simon's Pizza Lone Jack Menu
Candy Land Santa Ana
Psalm 136 Nkjv
Bolly4u Movies Site - Download Your Favorite Bollywood Movies Here
Lohud Rockland Obituaries
Avalon Hope Joi
Jeld Wen Okta Com Login
My Vcccd
Sparkle Nails Phillipsburg
18K Gersc Stamped Inside Ring
Basis Phoenix Primary Calendar
Great Clips Fremont Ohio
Buzzn Dispensary
Redbox Walmart Near Me
Papitop
Latest Posts
Article information

Author: Rubie Ullrich

Last Updated:

Views: 6449

Rating: 4.1 / 5 (52 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Rubie Ullrich

Birthday: 1998-02-02

Address: 743 Stoltenberg Center, Genovevaville, NJ 59925-3119

Phone: +2202978377583

Job: Administration Engineer

Hobby: Surfing, Sailing, Listening to music, Web surfing, Kitesurfing, Geocaching, Backpacking

Introduction: My name is Rubie Ullrich, I am a enthusiastic, perfect, tender, vivacious, talented, famous, delightful person who loves writing and wants to share my knowledge and understanding with you.