Skip to content

Commit 9e36726

Browse files
Merge pull request #2908 from aahill/assistants-fixes
updating api support
2 parents aa21ec7 + be021c5 commit 9e36726

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/ai-services/openai/how-to/assistant.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ Azure OpenAI Assistants (Preview) allows you to create AI assistants tailored to
2222

2323
## Assistants support
2424

25-
### Region and model support
25+
### Region, model, and API support
2626

27-
Code interpreter is available in all regions supported by Azure OpenAI Assistants. The [models page](../concepts/models.md#assistants-preview) contains the most up-to-date information on regions/models where Assistants are currently supported.
27+
The [models page](../concepts/models.md#assistants-preview) contains the most up-to-date information on regions/models where Assistants are currently supported. Assistants can be used in version `2024-02-15-preview` and later of the Azure OpenAI inference [preview API](../reference-preview.md#api-specs). A full list of previous API versions can be found on [GitHub](https://github.com/Azure/azure-rest-api-specs/tree/main/specification/cognitiveservices/data-plane/AzureOpenAI/inference/preview).
2828

2929
### Supported file types
3030

@@ -96,7 +96,7 @@ from openai import AzureOpenAI
9696

9797
client = AzureOpenAI(
9898
api_key=os.getenv("AZURE_OPENAI_API_KEY"),
99-
api_version="2024-05-01-preview",
99+
api_version="2024-08-01-preview",
100100
azure_endpoint = os.getenv("AZURE_OPENAI_ENDPOINT")
101101
)
102102

0 commit comments

Comments
 (0)