diff options
| author | Michael Peter Christen <mc@yacy.net> | 2026-01-03 19:51:31 +0100 |
|---|---|---|
| committer | Michael Peter Christen <mc@yacy.net> | 2026-01-03 19:51:31 +0100 |
| commit | 4f6cd9aed27ec99e25936ea44b6b3de14031229e (patch) | |
| tree | 3a95840e0a4cf04c51190191d219dfe2e2b4a50f | |
| parent | d6ef0210fc5631a616f23ef754a55ef2fc0700ac (diff) | |
more realistic rate limits for chat request rates
| -rw-r--r-- | defaults/yacy.init | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/defaults/yacy.init b/defaults/yacy.init index 5f9087afa..90523996d 100644 --- a/defaults/yacy.init +++ b/defaults/yacy.init @@ -1430,10 +1430,10 @@ ai.llm-user-prefix = \n\nAdditional Information:\n\nbelow you find a collection ai.llm-query-generator-prefix = Make a list of search words with low document frequency for the following prompt; use a JSON Array: ai.shield.allow-nonlocalhost = false ai.shield.show-chat-link = false -ai.shield.rate.per-minute = 1 -ai.shield.rate.per-hour = 12 -ai.shield.rate.per-day = 30 +ai.shield.rate.per-minute = 4 +ai.shield.rate.per-hour = 60 +ai.shield.rate.per-day = 120 ai.shield.limit-all = false -ai.shield.all.per-minute = 1 -ai.shield.all.per-hour = 12 -ai.shield.all.per-day = 30 +ai.shield.all.per-minute = 16 +ai.shield.all.per-hour = 240 +ai.shield.all.per-day = 480 |
