-
Notifications
You must be signed in to change notification settings - Fork 42
chore(terraform): Update models #347
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR modernizes the AI model catalog by replacing older GPT-4.x and O4 models with the latest GPT-5 series models, introducing new audio and transcription capabilities, and updating all reference architectures to use these new defaults.
Key Changes:
- Replaced GPT-4.1 and O4-mini with GPT-5.2-chat and GPT-5-nano as default deployments across all four reference architectures
- Added 10 new GPT-5 model variants (including chat, codex, mini, and nano options) and 6 new audio/transcription models to the common_models catalog
- Enhanced model output descriptions to provide clear capability summaries and use case guidance
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| modules/common_models/outputs.tf | Replaces all GPT-4.x/O4 model outputs with comprehensive GPT-5 series and adds new audio/transcription model outputs |
| modules/common_models/README.md | Updates documentation table to reflect new model catalog and updates usage examples to reference GPT-5 |
| modules/ai_foundry/README.md | Updates example to use gpt_5 instead of gpt_4_1 |
| reference_architectures/foundry_basic/main.tf | Updates default model deployments to use gpt_5_2_chat and gpt_5_nano |
| reference_architectures/foundry_basic_private/main.tf | Updates default model deployments to use gpt_5_2_chat and gpt_5_nano |
| reference_architectures/foundry_standard/main.tf | Updates default model deployments to use gpt_5_2_chat and gpt_5_nano |
| reference_architectures/foundry_standard_private/main.tf | Updates default model deployments to use gpt_5_2_chat and gpt_5_nano |
This pull request updates the available AI model outputs and deployment defaults across the
common_modelsmodule and all reference architectures. The main focus is on replacing older GPT-4.x and O4 models with the latest GPT-5 series and new audio/transcription models, while also expanding the documentation to reflect these new capabilities.Model output and deployment updates:
gpt_4_1ando4_miniwith newer GPT-5 models (such asgpt_5,gpt_5_2_chat, andgpt_5_nano) in module defaults and reference architectures, ensuring deployments use the latest models. [1] [2] [3] [4] [5] [6]gpt_5instead ofgpt_4_1.Expanded and improved model outputs:
gpt_5,gpt_5_mini,gpt_5_nano,gpt_5_chat,gpt_5_1,gpt_5_1_chat,gpt_5_1_codex,gpt_5_1_codex_mini,gpt_5_2,gpt_5_2_chat) and new audio models (gpt_audio,gpt_audio_mini,gpt_realtime,gpt_realtime_mini,gpt_4o_mini_transcribe,gpt_4o_transcribe_diarize). [1] [2]Documentation improvements:
README.mdto document all new models and provide more detailed descriptions, including new transcription and diarization models.These changes collectively ensure that all modules and reference architectures are aligned with the latest AI model offerings and that documentation is clear and up to date.