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

Move o1 max_completion_tokens fix to correct if-branch #583

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions daras_ai_v2/language_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1050,13 +1050,13 @@ def run_openai_chat(
if entry["role"] == CHATML_ROLE_SYSTEM:
entry["role"] = CHATML_ROLE_USER
max_tokens = NOT_GIVEN
else:
max_tokens = max_completion_tokens
max_completion_tokens = NOT_GIVEN

# reserved tokens for reasoning...
# https://platform.openai.com/docs/guides/reasoning#allocating-space-for-reasoning
max_completion_tokens += 25_000
else:
max_tokens = max_completion_tokens
max_completion_tokens = NOT_GIVEN

if avoid_repetition:
frequency_penalty = 0.1
Expand Down
Loading