UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

13 lines (12 loc) 441 B
import type { ChatMessage } from '../types/ChatMessage'; import type { ChatParticipant } from '../types/ChatParticipant'; /** * Resolves the human-readable sender label shown in reply previews. * * @private helper for chat reply previews */ export declare function resolveChatMessageReplySenderLabel(options: { sender: ChatMessage['sender']; participants?: ReadonlyArray<ChatParticipant>; fallbackLabel?: string; }): string;