Skip to content

Commit

Permalink
Merge pull request #125 from russellb/max-tokens-default
Browse files Browse the repository at this point in the history
llmblock: Set a more reasonable default for num_tokens
  • Loading branch information
russellb authored Jul 13, 2024
2 parents 07a17ed + 97cee87 commit 13df1c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/instructlab/sdg/llmblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __init__(
self.defaults = {
"model": self.ctx.model_id,
"temperature": 0,
"max_tokens": 12000,
"max_tokens": 4096,
}

# Whether the LLM server supports a list of input prompts
Expand Down

0 comments on commit 13df1c9

Please sign in to comment.