deep-chat-dev
Version:
Customizable chat component for AI APIs
37 lines • 1.73 kB
TypeScript
export declare const SERVICE = "service";
export declare const TEXT = "text";
export declare const HTML = "html";
export declare const ERROR = "error";
export declare const DOCS_BASE_URL = "https://deepchat.dev/docs/";
export declare const AI = "ai";
export declare const USER = "user";
export declare const ASSISTANT = "assistant";
export declare const ERROR_MESSAGE_TEXT_CLASS = "error-message-text";
export declare const OUTER_CONTAINER_CLASS_ROLE_PREFIX = "deep-chat-outer-container-role-";
export declare const EMPTY_MESSAGE_CLASS = "empty-message";
export declare const POSITION_TOP_MESSAGE_CLASS = "deep-chat-top-message";
export declare const POSITION_MIDDLE_MESSAGE_CLASS = "deep-chat-middle-message";
export declare const POSITION_BOTTOM_MESSAGE_CLASS = "deep-chat-bottom-message";
export declare const SRC = "src";
export declare const TYPE = "type";
export declare const FILE = "file";
export declare const FILES = "files";
export declare const IMAGE = "image";
export declare const IMAGES = "images";
export declare const CAMERA = "camera";
export declare const GIFS = "gifs";
export declare const AUDIO = "audio";
export declare const MICROPHONE = "microphone";
export declare const MIXED_FILES = "mixedFiles";
export declare const ANY = "any";
export declare const FILE_BUBBLE_CLASS = "file-message";
export declare const START = "start";
export declare const END = "end";
export declare const MESSAGES_ID = "messages";
export declare const ZERO = "0";
export declare const ONE = "1";
export declare const ROLE = "role";
export declare const STRING = "string";
export declare const STRINGIFY: (object: any) => string;
export declare const DEEP_COPY: (object: any) => any;
//# sourceMappingURL=messageConstants.d.ts.map