From e8f08843743fea2a18c190245ed1d42c52655be6 Mon Sep 17 00:00:00 2001 From: AlkaidSTART <2595006848@qq.com> Date: Mon, 24 Aug 2026 13:10:14 +0800 Subject: [PATCH 1/3] Implement feature X to enhance user experience and fix bug Y in module Z --- docs/index.html | 308 ++++++++++++++++++++++++++++-------------------- 1 file changed, 183 insertions(+), 125 deletions(-) diff --git a/docs/index.html b/docs/index.html index 9ac4637..38adc02 100644 --- a/docs/index.html +++ b/docs/index.html @@ -4840,8 +4840,8 @@

call-code 架构

- - + + diff --git a/packages/client/src/components/MainPanel.tsx b/packages/client/src/components/MainPanel.tsx index 35f75b2..5249222 100644 --- a/packages/client/src/components/MainPanel.tsx +++ b/packages/client/src/components/MainPanel.tsx @@ -10,6 +10,7 @@ interface MainPanelProps { chatStatus: ChatStatusMessage; onSendMessage: (payload: { input: string; mode: AgentMode }) => boolean; onDeleteEntry: (sessionId: string, entryId: string) => void; + onCompactSession: (sessionId: string) => void; } const filters: Array<{ value: Filter; label: string }> = [ @@ -133,6 +134,7 @@ export function MainPanel({ chatStatus, onSendMessage, onDeleteEntry, + onCompactSession, }: MainPanelProps) { const [input, setInput] = useState(""); const [mode, setMode] = useState("build"); @@ -188,6 +190,37 @@ export function MainPanel({
+