Skip to content

Commit

Permalink
chore: Update MAX_LEN_SLACK environment variable to 2500
Browse files Browse the repository at this point in the history
  • Loading branch information
nalbam committed Sep 5, 2024
1 parent 5313245 commit 7589ef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
)
SYSTEM_MESSAGE = os.environ.get("SYSTEM_MESSAGE", "None")

MAX_LEN_SLACK = int(os.environ.get("MAX_LEN_SLACK", 3000))
MAX_LEN_SLACK = int(os.environ.get("MAX_LEN_SLACK", 2500))
MAX_LEN_BEDROCK = int(os.environ.get("MAX_LEN_BEDROCK", 4000))

BOT_CURSOR = os.environ.get("BOT_CURSOR", ":robot_face:")
Expand Down

0 comments on commit 7589ef4

Please sign in to comment.