@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
10 lines (9 loc) • 329 B
TypeScript
/**
* Extracts all valid URLs from arbitrary text while removing common trailing punctuation.
*
* @param text - Input text that may contain one or more URLs.
* @returns Unique URLs in their first-seen order.
*
* @private utility of KNOWLEDGE parsing
*/
export declare function extractUrlsFromText(text: string): string[];