You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -83,9 +83,9 @@ See [model versions](../concepts/model-versions.md) to learn about how Azure Ope
83
83
84
84
| Model ID | Description | Max Request (tokens) | Training Data (up to) |
85
85
| --- | :--- |:--- |:---: |
86
-
|`gpt-4o-mini` (2024-07-18) <br> **GPT-4o mini**|**Latest small GA model** <br> - Fast, inexpensive, capable model ideal for replacing GPT-3.5 Turbo series models. <br> - Text, image processing <br>- JSON Mode <br> - parallel function calling <br> - **Does not support enhancements**| Input: 128,000 <br> Output: 16,384 | Oct 2023 |
87
-
|`gpt-4o` (2024-05-13) <br> **GPT-4o (Omni)**|**Latest large GA model** <br> - Text, image processing <br> - JSON Mode <br> - parallel function calling <br> - Enhanced accuracy and responsiveness <br> - Parity with English text and coding tasks compared to GPT-4 Turbo with Vision <br> - Superior performance in non-English languages and in vision tasks <br> - **Does not support enhancements**|Input: 128,000 <br> Output: 4,096| Oct 2023 |
88
-
|`gpt-4` (turbo-2024-04-09) <br>**GPT-4 Turbo with Vision**|**New GA model** <br> - Replacement for all previous GPT-4 preview models (`vision-preview`, `1106-Preview`, `0125-Preview`). <br> - [**Feature availability**](#gpt-4o-and-gpt-4-turbo) is currently different depending on method of input, and deployment type. <br> - **Does not support enhancements**. | Input: 128,000 <br> Output: 4,096 | Dec 2023 |
86
+
|`gpt-4o-mini` (2024-07-18) <br> **GPT-4o mini**|**Latest small GA model** <br> - Fast, inexpensive, capable model ideal for replacing GPT-3.5 Turbo series models. <br> - Text, image processing <br>- JSON Mode <br> - parallel function calling | Input: 128,000 <br> Output: 16,384 | Oct 2023 |
87
+
|`gpt-4o` (2024-05-13) <br> **GPT-4o (Omni)**|**Latest large GA model** <br> - Text, image processing <br> - JSON Mode <br> - parallel function calling <br> - Enhanced accuracy and responsiveness <br> - Parity with English text and coding tasks compared to GPT-4 Turbo with Vision <br> - Superior performance in non-English languages and in vision tasks |Input: 128,000 <br> Output: 4,096| Oct 2023 |
88
+
|`gpt-4` (turbo-2024-04-09) <br>**GPT-4 Turbo with Vision**|**New GA model** <br> - Replacement for all previous GPT-4 preview models (`vision-preview`, `1106-Preview`, `0125-Preview`). <br> - [**Feature availability**](#gpt-4o-and-gpt-4-turbo) is currently different depending on method of input, and deployment type. | Input: 128,000 <br> Output: 4,096 | Dec 2023 |
89
89
|`gpt-4` (0125-Preview)*<br>**GPT-4 Turbo Preview**|**Preview Model** <br> -Replaces 1106-Preview <br>- Better code generation performance <br> - Reduces cases where the model doesn't complete a task <br> - JSON Mode <br> - parallel function calling <br> - reproducible output (preview) | Input: 128,000 <br> Output: 4,096 | Dec 2023 |
Copy file name to clipboardExpand all lines: articles/ai-services/openai/faq.yml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -23,9 +23,9 @@ sections:
23
23
- name: General
24
24
questions:
25
25
- question: |
26
-
Does Azure OpenAI support custom API headers? We append additional custom headers to our API requests and are seeing failures occur.
26
+
Does Azure OpenAI support custom API headers? We append additional custom headers to our API requests and are seeing HTTP 431 failure errors.
27
27
answer: |
28
-
Azure OpenAI currently only supports a maximum of 10 custom API headers.
28
+
Our current APIs allow up to 10 custom headers, which are passed through the pipeline, and returned. We have noticed some customers now exceed this header count resulting in HTTP 431 errors. There is no solution for this error, other than to reduce header volume. In future API versions we will no longer pass through custom headers. We recommend customers not depend on custom headers in future system architectures.
29
29
- question: |
30
30
Does Azure OpenAI work with the latest Python library released by OpenAI (version>=1.0)?
31
31
answer: |
@@ -41,7 +41,7 @@ sections:
41
41
- question: |
42
42
How do the capabilities of Azure OpenAI compare to OpenAI?
43
43
answer: |
44
-
Azure OpenAI Service gives customers advanced language AI with OpenAI GPT-3, Codex, and DALL-E models with the security and enterprise promise of Azure. Azure OpenAI co-develops the APIs with OpenAI, ensuring compatibility and a smooth transition from one to the other.
44
+
Azure OpenAI Service gives customers advanced language AI with OpenAI GPT-3, Codex, and DALL-E models with the security and enterprise promise of Azure. Azure OpenAI codevelops the APIs with OpenAI, ensuring compatibility and a smooth transition from one to the other.
45
45
46
46
With Azure OpenAI, customers get the security capabilities of Microsoft Azure while running the same models as OpenAI.
47
47
- question: |
@@ -203,7 +203,7 @@ sections:
203
203
- question: |
204
204
What type of files can I upload?
205
205
answer: |
206
-
We currently support PNG (.png), JPEG (.jpeg and .jpg), WEBP (.webp), and non-animated GIF (.gif).
206
+
We currently support PNG (.png), JPEG (.jpeg and .jpg), WEBP (.webp), and nonanimated GIF (.gif).
207
207
- question: |
208
208
Is there a limit to the size of the image I can upload?
| GPT-4o max images per request (# of images in the messages array/conversation history) | 10 |
50
50
| GPT-4 `vision-preview` & GPT-4 `turbo-2024-04-09` default max tokens | 16 <br><br> Increase the `max_tokens` parameter value to avoid truncated responses. GPT-4o max tokens defaults to 4096. |
51
-
| Max number of custom headers in API requests | 10 |
51
+
| Max number of custom headers in API requests<sup>1</sup> | 10 |
52
+
53
+
<sup>1</sup> Our current APIs allow up to 10 custom headers, which are passed through the pipeline, and returned. We have noticed some customers now exceed this header count resulting in HTTP 431 errors. There is no solution for this error, other than to reduce header volume. **In future API versions we will no longer pass through custom headers**. We recommend customers not depend on custom headers in future system architectures.
0 commit comments