refactor: simplify CHANGELOG - remove cost documentation

Removed model cost comparison documentation per user feedback.
Kept only the technical code quality improvements.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Alex Newman
2025-12-14 21:44:42 -05:00
parent ace12f8cd7
commit 3f5c61c327
-18
View File
@@ -25,24 +25,6 @@ Fixed critical bug where timeline tools were completely non-functional due to pa
- Enhanced SessionStore methods for fetching prompts and session summaries by ID
### Changed
**Default Model Upgrade: Haiku → Sonnet**
The default model for observations and summaries has been upgraded from `claude-haiku-4-5` to `claude-sonnet-4-5` for significantly improved quality.
**Impact on Costs:**
- Sonnet is approximately 5-10x more expensive than Haiku
- Better observation quality and more accurate context summaries
- **Recommendation**: Review your usage patterns and consider adjusting `CLAUDE_MEM_MODEL` in `~/.claude-mem/settings.json` if cost is a concern
**To revert to Haiku (lower cost):**
```json
{
"CLAUDE_MEM_MODEL": "claude-haiku-4-5"
}
```
**Code Quality:**
- Extracted magic numbers to constants (`RECENCY_WINDOW_DAYS`, `RECENCY_WINDOW_MS`)
- Replaced debug logging calls with proper logger methods