diff options
| author | Michael Peter Christen <mc@yacy.net> | 2026-06-28 22:49:39 +0200 |
|---|---|---|
| committer | Michael Peter Christen <mc@yacy.net> | 2026-06-28 22:49:39 +0200 |
| commit | e1c988b5c38972ae855efdabbc5e24586e938733 (patch) | |
| tree | a1eba09bb07efbfd4bd9d5e253add55c471ff7ad /defaults | |
| parent | 94e8ac3b5f9080489eae4ed9efa1e760a983857c (diff) | |
added log report generator for recursive self-improvement
Diffstat (limited to 'defaults')
| -rw-r--r-- | defaults/yacy.init | 25 | ||||
| -rw-r--r-- | defaults/yacy.logging | 2 |
2 files changed, 18 insertions, 9 deletions
diff --git a/defaults/yacy.init b/defaults/yacy.init index a08516364..9afd2c82c 100644 --- a/defaults/yacy.init +++ b/defaults/yacy.init @@ -1437,14 +1437,23 @@ decoration.grafics.linkstructure = true decoration.hostanalysis = false
decoration.simpleheadernavbar = navbar-default
-# ai settings
-ai.production_models = []
-ai.system-prompt = You are a smart and helpful chatbot. If possible, use friendly emojies.
-ai.llm-system-prefix = \n\nYou may receive additional expert knowledge in the user prompt after a 'Additional Information' headline to enhance your knowledge. Use it only if applicable.
-ai.llm-user-prefix = \n\nAdditional Information:\n\nbelow you find a collection of texts that might be useful to generate a response. Do not discuss these documents, just use them to answer the question above.\n\n
-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 settings +ai.production_models = [] +ai.system-prompt = You are a smart and helpful chatbot. If possible, use friendly emojies. +ai.llm-system-prefix = \n\nYou may receive additional expert knowledge in the user prompt after a 'Additional Information' headline to enhance your knowledge. Use it only if applicable. +ai.llm-user-prefix = \n\nAdditional Information:\n\nbelow you find a collection of texts that might be useful to generate a response. Do not discuss these documents, just use them to answer the question above.\n\n +ai.llm-query-generator-prefix = Make a list of search words with low document frequency for the following prompt; use a JSON Array: +ai.logreport.enabled = true +ai.logreport.dir = DATA/REPORTS/log +ai.logreport.initial_delay_minutes = 5 +ai.logreport.period_minutes = 60 +ai.logreport.max_bucket_lines = 100000 +ai.logreport.max_tokens = 4096 +ai.logreport.daily_compression.enabled = true +ai.logreport.daily_compression.delete_hourly = false +ai.logreport.feed.max_entries = 100 +ai.shield.allow-nonlocalhost = false +ai.shield.show-chat-link = false ai.shield.rate.per-minute = 4
ai.shield.rate.per-hour = 60
ai.shield.rate.per-day = 120
diff --git a/defaults/yacy.logging b/defaults/yacy.logging index 58703ebca..bfed68cae 100644 --- a/defaults/yacy.logging +++ b/defaults/yacy.logging @@ -61,7 +61,7 @@ net.yacy.crawler.robots.RobotsTxt.level = SEVERE # Properties for the GuiHandler net.yacy.kelondro.logging.GuiHandler.level = ALL net.yacy.kelondro.logging.GuiHandler.formatter=net.yacy.kelondro.logging.SimpleLogFormatter -net.yacy.kelondro.logging.GuiHandler.size = 10000 +net.yacy.kelondro.logging.GuiHandler.size = 100000 # Properties for the ConsoleOutErrHandler net.yacy.kelondro.logging.ConsoleOutErrHandler.level = ALL |
