Skip to content

Commit

Permalink
Merge pull request #26 from nalbam/main
Browse files Browse the repository at this point in the history
chore: Update MAX_LEN_SLACK environment variable to 2500
  • Loading branch information
nalbam authored Sep 5, 2024
2 parents ee00bbc + 7589ef4 commit 83e0a2a
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 83e0a2a

Please sign in to comment.