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

feat: Add temperature option to OpenAI API #288

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

kannoixia
Copy link
Collaborator

翻訳結果のブレを少なくするためにChatGPT APIのオプションにtemperature = 0のオプションを追加した。

Copy link

vercel bot commented Nov 21, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
nextjs-docs-ja ✅ Ready (Inspect) Visit Preview 💬 Add feedback Dec 3, 2024 7:48am

@@ -240,7 +240,8 @@ export function createLogger(prefix: string) {
* @returns {(prompt: { system: string; user: string }) => Promise<string>} A function that takes a prompt and returns the assistant's response as a string.
*/
export function createOpenAIClient(
openai: OpenAI
openai: OpenAI,
options: { temperature?: number } = {}
Copy link
Collaborator

@ytori ytori Nov 21, 2024

Choose a reason for hiding this comment

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

ありがとうございます!

optionsは、templeratureだけでなく他のパラメータも将来的に追加する必要性が出てくる可能性があるため、templerature以外のパラメータもとれるようにしておきたいです。
openai.chat.completions.create の引数のオブジェクトtypeから、messages を Omitしたものを設定できるようにしておきませんか?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

指摘ありがとうございます!

openai.chat.completions.create の引数のオブジェクトtypeから、messages を Omitしたものを設定できるようにしておきませんか?

openai.chat.completions.create の引数のオブジェクトtypeであるOpenAI.ChatCompletionCreateParamsからmessageをOmitし、openai.chat.completions.create...optionsとして展開するようにしました。
また、併せてmodeloptionsに持たせるようにしました。

Copy link
Collaborator

Choose a reason for hiding this comment

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

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

pr.mts内のcreateOpenAIClientにもmodelオプションを付け加えられるように修正しました。

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.

4 participants