# Your key to access the API (add this to enable this plugin)
#api_key = "xxx";
# Model name
- model = "gpt-4o-mini";
- # Maximum tokens to generate
- max_tokens = 1000;
- # Temperature for sampling
- temperature = 0.0;
+ model = "gpt-5-mini"; # or parallel model requests [ "gpt-5-mini", "gpt-4o-mini" ];
+ # Per-model parameters
+ model_parameters = {
+ "gpt-5-mini" = {
+ max_completion_tokens = 1000,
+ },
+ "gpt-5-nano" = {
+ max_completion_tokens = 1000,
+ },
+ "gpt-4o-mini" = {
+ max_tokens = 1000,
+ temperature = 0.0,
+ }
+ };
# Timeout for requests
timeout = 10s;
# Prompt for the model (use default if not set)
.include(try=true,priority=5) "${DBDIR}/dynamic/gpt.conf"
.include(try=true,priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/gpt.conf"
.include(try=true,priority=10) "$LOCAL_CONFDIR/override.d/gpt.conf"
-}
\ No newline at end of file
+}