diff --git a/packages/client/src/components/hermes/chat/ChatPanel.vue b/packages/client/src/components/hermes/chat/ChatPanel.vue index 697ec74..0e14839 100644 --- a/packages/client/src/components/hermes/chat/ChatPanel.vue +++ b/packages/client/src/components/hermes/chat/ChatPanel.vue @@ -24,6 +24,7 @@ import ConversationMonitorPane from "./ConversationMonitorPane.vue"; import MessageList from "./MessageList.vue"; import SessionListItem from "./SessionListItem.vue"; import DrawerPanel from "./DrawerPanel.vue"; +import OutlinePanel from "./OutlinePanel.vue"; const chatStore = useChatStore(); const appStore = useAppStore(); @@ -33,6 +34,7 @@ const { t } = useI18n(); const showDrawer = ref(false); const drawerActiveTab = ref<"terminal" | "files">("files"); +const showOutline = ref(false); const currentMode = ref<"chat" | "live">("chat"); @@ -988,6 +990,30 @@ async function handleSessionModelCustomSubmit() {