fix: title_generator no longer logs as 'compression' task

Changed task='compression' to task='title_generation' so auto-title
calls don't pollute logs with false compression alarms.
This commit is contained in:
Teknium 2026-04-12 04:17:06 -07:00
parent 45e60904c6
commit 7a67b13506
No known key found for this signature in database

View File

@ -36,7 +36,7 @@ def generate_title(user_message: str, assistant_response: str, timeout: float =
try:
response = call_llm(
task="compression", # reuse compression task config (cheap/fast model)
task="title_generation",
messages=messages,
max_tokens=30,
temperature=0.3,