Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unhide conversation, rename to viewer #364

Merged
merged 3 commits into from
Dec 8, 2023
Merged
Show file tree
Hide file tree
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 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