@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
28 lines (27 loc) • 824 B
TypeScript
import type { string_markdown } from '../../types/string_markdown';
/**
* Options for about promptbook information.
*/
export type AboutPromptbookInformationOptions = {
/**
* Include information about available servers
*
* @default true
*/
isServersInfoIncluded?: boolean;
/**
* Include information about runtime environment
*
* @default true
*/
isRuntimeEnvironmentInfoIncluded?: boolean;
};
/**
* Provide information about Promptbook, engine version, book language version, servers, ...
*
* @param options Which information to include
* @returns Information about Promptbook in markdown format
*
* @public exported from `@promptbook/core`
*/
export declare function aboutPromptbookInformation(options?: AboutPromptbookInformationOptions): string_markdown;