UNPKG

@promptbook/remote-server

Version:

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

19 lines (18 loc) 663 B
import type { ServerInfo } from './types'; /** * Renders the full HTML document for the Promptbook Server UI. * * This component provides the root structure of the server information page, * including necessary meta tags, Tailwind CSS styling, and the server details body. * * @param props - Contains server information such as versions, port, and pipelines * * @private internal utility of Remote Server */ export declare function HtmlDoc({ info }: { info: ServerInfo; }): import("react/jsx-runtime").JSX.Element; /** * Add Note: [💞] Ignore a discrepancy between file name and entity name * <- TODO: !!! Maybe split into multiple files */