revert default models, adjust memory save prompt
frdel committed
Aug 11, 2025 at 09:13 UTC
c0707ec3346c75d584893db3c613f72f2f554d86
2 files changed
+4
-6
prompts/memory.memories_sum.sys.md
+1
-3
@@ -38,16 +38,14 @@
38
39
# WRONG examples with (explanation of error), never output memories like these
40
> Dog Information (no useful facts)
41
+> The user requested current RAM and CPU status. (No exact facts to memorize)
42
> User greeted with 'hi' (just conversation, not useful in the future )
43
> Respond with a warm greeting and invite further conversation (do not memorize AI's instructions or thoughts)
44
> User's name (details missing, not useful)
45
> Today is Monday (just date, no value in this information)
46
> Market inquiry (just a topic without detail)
47
> RAM Status (just a topic without detail)
47
-> The user requested current RAM and CPU status. (No exact facts to memorize)
48
49
50
# Further WRONG examples
51
- Hello
52
-- The user requested current RAM and CPU status.
53
--
\ No newline at end of file
python/helpers/settings.py
+3
-3
@@ -1320,7 +1320,7 @@ def get_default_settings() -> Settings:
1320
return Settings(
1321
version=_get_version(),
1322
chat_model_provider="openrouter",
1323
- chat_model_name="openai/gpt-5-chat",
1323
+ chat_model_name="openai/gpt-4.1",
1324
chat_model_api_base="",
1325
chat_model_kwargs={"temperature": "0"},
1326
chat_model_ctx_length=100000,
@@ -1330,7 +1330,7 @@ def get_default_settings() -> Settings:
1330
chat_model_rl_input=0,
1331
chat_model_rl_output=0,
1332
util_model_provider="openrouter",
1333
- util_model_name="google/gemini-2.5-flash-lite",
1333
+ util_model_name="openai/gpt-4.1-mini",
1334
util_model_api_base="",
1335
util_model_ctx_length=100000,
1336
util_model_ctx_input=0.7,
@@ -1345,7 +1345,7 @@ def get_default_settings() -> Settings:
1345
embed_model_rl_requests=0,
1346
embed_model_rl_input=0,
1347
browser_model_provider="openrouter",
1348
- browser_model_name="openai/gpt-5-chat",
1348
+ browser_model_name="openai/gpt-4.1",
1349
browser_model_api_base="",
1350
browser_model_vision=True,
1351
browser_model_rl_requests=0,