@copilotkit/react-ui
Version:
<div align="center"> <a href="https://copilotkit.ai" target="_blank"> <img src="https://github.com/copilotkit/copilotkit/raw/main/assets/banner.png" alt="CopilotKit Logo"> </a>
11 lines (8 loc) • 652 B
TypeScript
import { CopilotContextParams, CopilotMessagesContextParams } from '@copilotkit/react-core';
import { CopilotKitVersion } from './types.js';
declare function shouldShowDevConsole(showDevConsole: boolean | "auto"): boolean;
declare function getPublishedCopilotKitVersion(current: string, forceCheck?: boolean): Promise<CopilotKitVersion>;
declare function logReadables(context: CopilotContextParams): void;
declare function logActions(context: CopilotContextParams): void;
declare function logMessages(context: CopilotMessagesContextParams): void;
export { getPublishedCopilotKitVersion, logActions, logMessages, logReadables, shouldShowDevConsole };