teodor-new-chat-ui 4.3.708 → 4.3.710
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.
|
@@ -26,5 +26,11 @@ export interface AssistantMessageComponentProps {
|
|
|
26
26
|
isEmbedded?: boolean;
|
|
27
27
|
/** Messages to group into this bubble (usually preceding tools) */
|
|
28
28
|
precedingMessages?: ChatMessage[];
|
|
29
|
+
/** Force hide or show header */
|
|
30
|
+
showHeader?: boolean;
|
|
31
|
+
/** Force hide tool progress */
|
|
32
|
+
hideToolProgress?: boolean;
|
|
33
|
+
/** Force a specific agent name */
|
|
34
|
+
forceAgentName?: string;
|
|
29
35
|
}
|
|
30
36
|
export declare const AssistantMessageComponent: import("react").NamedExoticComponent<AssistantMessageComponentProps>;
|