]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Use gpt-4o-mini by default 5068/head
authorVsevolod Stakhov <vsevolod@rspamd.com>
Mon, 22 Jul 2024 12:34:37 +0000 (13:34 +0100)
committerVsevolod Stakhov <vsevolod@rspamd.com>
Mon, 22 Jul 2024 12:34:37 +0000 (13:34 +0100)
conf/modules.d/gpt.conf
src/plugins/lua/gpt.lua

index eac9952e5c0f1db8e5ee0346f3be12249f723dee..c76a08c9205ad0a4f95bbd350da83781b5ac616b 100644 (file)
@@ -18,7 +18,7 @@ gpt {
   # Your key to access the API (add this to enable this plugin)
   #api_key = "xxx";
   # Model name
-  model = "gpt-3.5-turbo";
+  model = "gpt-4o-mini";
   # Maximum tokens to generate
   max_tokens = 1000;
   # Temperature for sampling
index 5e19d2998fc8941bb3f7b8d081c9bb221ea97770..61217cbf8fd1e41c6c52fe7dab046c64c39a9203 100644 (file)
@@ -27,7 +27,7 @@ gpt {
   # Your key to access the API
   api_key = "xxx";
   # Model name
-  model = "gpt-3.5-turbo";
+  model = "gpt-4o-mini";
   # Maximum tokens to generate
   max_tokens = 1000;
   # Temperature for sampling
@@ -69,7 +69,7 @@ local default_symbols_to_except = {
 local settings = {
   type = 'openai',
   api_key = nil,
-  model = 'gpt-3.5-turbo',
+  model = 'gpt-4o-mini',
   max_tokens = 1000,
   temperature = 0.0,
   timeout = 10,