teodor-new-chat-ui 4.3.634 → 4.3.636

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,5 +6,7 @@ import type { ChatMessage } from "@/types";
6
6
  export declare function isAssistantMessageWithOnlyToolCalls(message: ChatMessage): boolean;
7
7
  /**
8
8
  * Check if a message should be hidden from the main message list.
9
+ * Currently we show all messages (including tool calls/results).
10
+ * Kept as a hook point for future filtering logic.
9
11
  */
10
- export declare function shouldHideMessageFromList(message: ChatMessage): boolean;
12
+ export declare function shouldHideMessageFromList(_message: ChatMessage): boolean;