UNPKG

@promptbook/remote-client

Version:

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

26 lines (25 loc) 581 B
import type { string_agent_url } from '../../types/string_agent_url'; /** * Parsed TEAM teammate entry. * * @private */ export type TeamTeammate = { url: string_agent_url; label: string; instructions: string; }; /** * Options for parsing TEAM commitment content. * * @private */ export type ParseTeamCommitmentOptions = { strict?: boolean; }; /** * Parses TEAM commitment content into teammates with instructions. * * @private */ export declare function parseTeamCommitmentContent(content: string, options?: ParseTeamCommitmentOptions): TeamTeammate[];