UNPKG

@promptbook/remote-client

Version:

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

40 lines (39 loc) 1.2 kB
import type { MockedChatDelayConfig } from './MockedChat'; /** * Normal flow of messages in the `MockedChat` component * * @public exported from `@promptbook/components` */ export declare const NORMAL_FLOW: MockedChatDelayConfig; /** * Fast flow of messages in the `MockedChat` component * * @public exported from `@promptbook/components` */ export declare const FAST_FLOW: MockedChatDelayConfig; /** * Slow flow of messages in the `MockedChat` component * * @public exported from `@promptbook/components` */ export declare const SLOW_FLOW: MockedChatDelayConfig; /** * Blocky flow of messages in the `MockedChat` component * * Messages appear in blocks rather than word-by-word * * @public exported from `@promptbook/components` */ export declare const BLOCKY_FLOW: MockedChatDelayConfig; /** * Random flow of messages in the `MockedChat` component * * @public exported from `@promptbook/components` */ export declare const RANDOM_FLOW: MockedChatDelayConfig; /** * All predefined delay configurations for the `MockedChat` component * * @public exported from `@promptbook/components` */ export declare const MOCKED_CHAT_DELAY_CONFIGS: Record<string, MockedChatDelayConfig>;