mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-16 18:03:50 +00:00
Fix AGENTS.md support, changelog viewer, and session model storage
- BREAKING: Renamed AGENT.md to AGENTS.md for project context files - Added automatic changelog viewer on startup for new sessions - Added settings manager to track last shown changelog version - BREAKING: Store provider and modelId separately in session files (fixes #4) - Fixed markdown list rendering when items contain inline code with cyan formatting - Added dynamic border component for TUI - Updated changelog with entries for #4 and #5
This commit is contained in:
parent
c23f1576dc
commit
fede1303b1
5 changed files with 45 additions and 30 deletions
|
|
@ -521,7 +521,7 @@ export class TuiRenderer {
|
|||
this.agent.setModel(model);
|
||||
|
||||
// Save model change to session
|
||||
this.sessionManager.saveModelChange(`${model.provider}/${model.id}`);
|
||||
this.sessionManager.saveModelChange(model.provider, model.id);
|
||||
|
||||
// Show confirmation message with proper spacing
|
||||
this.chatContainer.addChild(new Spacer(1));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue