Skip to content

Commit

Permalink
unhide conversation, rename to viewer (#364)
Browse files Browse the repository at this point in the history
  • Loading branch information
PCSwingle authored Dec 8, 2023
1 parent 91441a5 commit 95115d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mentat/command/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from .commit import CommitCommand
from .config import ConfigCommand
from .context import ContextCommand
from .conversation import ConversationCommand
from .exclude import ExcludeCommand
from .help import HelpCommand
from .include import IncludeCommand
Expand All @@ -18,3 +17,4 @@
from .talk import TalkCommand
from .undo import UndoCommand
from .undoall import UndoAllCommand
from .viewer import ViewerCommand
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
from mentat.utils import create_viewer


class ConversationCommand(Command, command_name="conversation"):
hidden = True

class ViewerCommand(Command, command_name="viewer"):
async def apply(self, *args: str) -> None:
session_context = SESSION_CONTEXT.get()
conversation = session_context.conversation
Expand Down

0 comments on commit 95115d6

Please sign in to comment.