Skip to content

Commit 5162bd1

Browse files
Update default OpenAI model in release notes script (#32)
1 parent 0917f4c commit 5162bd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/generate_release_notes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def __init__(self, api_key: str, model: Optional[str] = None):
3030
# The OpenAI client reads org/project from env if present
3131
self.client = OpenAI(api_key=api_key)
3232
# Allow override via env OPENAI_MODEL; default to a cost-effective model
33-
self.model = model or os.getenv("OPENAI_MODEL", "gpt-5-nano-2025-08-07")
33+
self.model = model or os.getenv("OPENAI_MODEL", "gpt-4o-mini")
3434

3535
@staticmethod
3636
def _sanitize_notes(text: str, repo_url: Optional[str]) -> str:

0 commit comments

Comments
 (0)