UNPKG

@promptbook/remote-client

Version:

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

12 lines (11 loc) 218 B
/** * Parsed URL command * * @see ./urlCommandParser.ts for more details * * @public exported from `@promptbook/editable` */ export type UrlCommand = { readonly type: 'URL'; readonly pipelineUrl: URL; };