diff options
-rw-r--r-- | conf/modules.d/gpt.conf | 11 |
1 files changed, 10 insertions, 1 deletions
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; |