Skip to content

Commit 28aaea7

Browse files
Copilotluigiww-javed
authored
Fix OpenAI model name in OpenAIModelConfiguration example (#44528)
* Initial plan * Fix typo: change gpt-35-turbo to gpt-3.5-turbo in OpenAI example Co-authored-by: luigiw <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: luigiw <[email protected]> Co-authored-by: Hanchi Wang <[email protected]> Co-authored-by: Waqas Javed <[email protected]>
1 parent 70981ca commit 28aaea7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/evaluation/azure-ai-evaluation/samples/evaluation_samples_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def evaluation_common_classes_methods(self):
3434
from azure.ai.evaluation._model_configurations import OpenAIModelConfiguration
3535

3636
oai_model_config = OpenAIModelConfiguration(
37-
api_key="my-oai-api-key", base_url="https://api.openai.com/v1", model="gpt-35-turbo"
37+
api_key="my-oai-api-key", base_url="https://api.openai.com/v1", model="gpt-3.5-turbo"
3838
)
3939

4040
# [END create_OAI_model_config]

0 commit comments

Comments
 (0)