UNPKG

@promptbook/remote-client

Version:

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

8 lines (7 loc) 324 B
import type { AgentBasicInformation } from '../AgentBasicInformation'; /** * Parsed agent profile fields accumulated from commitments. * * @private internal utility of `parseAgentSource` */ export type ParsedAgentProfile = Pick<AgentBasicInformation, 'meta' | 'links' | 'capabilities' | 'samples' | 'knowledgeSources'>;