Skip to content

Commit

Permalink
chore: increase token for llama3
Browse files Browse the repository at this point in the history
  • Loading branch information
LaansDole committed Nov 26, 2024
1 parent b6540e2 commit f5b6034
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/llm/replicate_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ def init_replicate() -> Replicate:
model_kwargs= {
"top_k": 0,
"top_p": 0.9,
"max_tokens": 1500,
"min_tokens": 0,
"max_tokens": 2048,
"min_tokens": 1024,
"temperature": 0.2,
"length_penalty": 1,
"stop_sequences": "<|end_of_text|>,<|eot_id|>",
Expand Down

0 comments on commit f5b6034

Please sign in to comment.