From 0f7311f9f6787867210d3bce77e7801d1b347dba Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Fri, 28 Jun 2024 15:09:50 +0100 Subject: [PATCH] [Minor] Adjust configuration --- conf/modules.d/gpt.conf | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/conf/modules.d/gpt.conf b/conf/modules.d/gpt.conf index 821141495..7a2e11d40 100644 --- a/conf/modules.d/gpt.conf +++ b/conf/modules.d/gpt.conf @@ -20,7 +20,7 @@ gpt { # Model name model = "gpt-3.5-turbo"; # Maximum tokens to generate - max_tokens = 100; + max_tokens = 1000; # Temperature for sampling temperature = 0.7; # Top p for sampling @@ -36,6 +36,15 @@ gpt { # Reply conversion (lua code) #reply_conversion = "xxx"; + # Default set of symbols to be excepted + #symbols_to_except = [ + # 'BAYES_SPAM', + # 'WHITELIST_SPF', + # 'WHITELIST_DKIM', + # 'WHITELIST_DMARC', + # 'FUZZY_DENIED', + #]; + # Be sure to enable module after you specify the API key enabled = false; -- 2.39.5