Skip to content
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

Fix: removed temperature parameter for o3-mini #3

Merged
merged 2 commits into from
Feb 13, 2025

Conversation

Dnysus
Copy link
Owner

@Dnysus Dnysus commented Feb 13, 2025

No description provided.

@Dnysus Dnysus requested a review from Copilot February 13, 2025 01:39
@Dnysus Dnysus self-assigned this Feb 13, 2025
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot reviewed 1 out of 1 changed files in this pull request and generated no comments.

Comments suppressed due to low confidence (2)

src/bot.ts:54

  • The variable 'openaiOptions' is used here but is not defined in the provided code. Ensure that 'openaiOptions' is correctly defined and initialized before this line.
if (openaiOptions.model !== 'o3-mini') {

src/bot.ts:55

  • Ensure that 'options.openaiModelTemperature' is defined and not null or undefined before assigning it to 'chatOptions.temperature'.
chatOptions.temperature = options.openaiModelTemperature;

@Dnysus Dnysus requested a review from Copilot February 13, 2025 01:44
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.

})
};

if (openaiOptions.model !== 'o3-mini') {
Copy link
Preview

Copilot AI Feb 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The variable 'openaiOptions' is not defined. It should be 'options' to match the rest of the code.

Suggested change
if (openaiOptions.model !== 'o3-mini') {
if (options.model !== 'o3-mini') {

Copilot is powered by AI, so mistakes are possible. Review output carefully before use.

@Dnysus Dnysus merged commit 60c0723 into development Feb 13, 2025
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant