Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Solves #65
Note
o3-mini is rolling out in the Chat Completions API, Assistants API, and Batch API starting today to select developers in API usage tiers 3-5(opens in a new window).
More:
https://openai.com/index/openai-o3-mini/
https://platform.openai.com/docs/models#o3-mini
https://platform.openai.com/docs/guides/reasoning
CoPilot Generated Notes
This pull request includes several changes to support the new
o3-mini
model in thecore/js/gpt-core.js
andcore/js/options.js
files, as well as an update to the model selection options inindex.html
.Support for
o3-mini
model:core/js/gpt-core.js
: Added logic to include thereasoning_effort
parameter when using theo3-mini
model in thetrboSend
function. [1] [2]Updates to model selection:
core/js/options.js
: Updated various functions (updateButton
,sendData
,insertImage
) to include theo3-mini
model in the conditional checks for model selection. [1] [2] [3]index.html
: Added theo3-mini
model to the dropdown list of model options.