UNPKG

@promptbook/vercel

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

36 lines (35 loc) 948 B
import type { string_legal_entity, string_promptbook_server_url, string_title } from './src/types/typeAliases'; /** * Open Promptbook server usable for public */ type ServerConfiguration = { /** * Basic name of the server */ title: string_title; /** * Who is the owner of the server */ owner: string_legal_entity; /** * Description of the server, link to registration, user agreement, privacy policy, etc. */ description: string; /** * URL of the server * Note: lising more for loadbalancing */ urls: Array<string_promptbook_server_url>; }; /** * Available remote servers for the Promptbook * * @public exported from `@promptbook/core` */ export declare const REMOTE_SERVER_URLS: Array<ServerConfiguration>; export {}; /** * TODO: [🐱‍🚀] Auto-federated server from url in here * Note: [💞] Ignore a discrepancy between file name and entity name */