Skip to content

Commit

Permalink
set default max_input_tokens to 5800
Browse files Browse the repository at this point in the history
  • Loading branch information
JianxinMa committed May 11, 2024
1 parent 771b45e commit d08abc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qwen_agent/settings.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import List, Literal

# Settings for LLMs
DEFAULT_MAX_INPUT_TOKENS: int = 5500 # The LLM will truncate the input messages if they exceed this limit
DEFAULT_MAX_INPUT_TOKENS: int = 5800 # The LLM will truncate the input messages if they exceed this limit

# Settings for agents
MAX_LLM_CALL_PER_RUN: int = 8
Expand Down

0 comments on commit d08abc2

Please sign in to comment.