Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cecli/coders/base_coder.py
Original file line number Diff line number Diff line change
Expand Up @@ -1733,7 +1733,7 @@ async def generate(self, user_message, preproc):
# Compacting is wasteful since /clear will clear everything
# and /exit will exit the application
stripped = user_message.strip()
if stripped not in ("/clear", "/reset", "/exit", "/quit"):
if stripped not in ("/clear", "/drop", "/exit", "/ls", "/reset", "/save-session", "/tokens", "/quit"):
self.compact_context_completed = False
await self.compact_context_if_needed()
self.compact_context_completed = True
Expand Down
Loading