@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
11 lines (10 loc) • 358 B
TypeScript
import type { ParsedAgentProfile } from './ParsedAgentProfile';
/**
* Mutable commitment-processing state used while collecting basic profile information.
*
* @private internal utility of `parseAgentSource`
*/
export type ParseAgentSourceState = ParsedAgentProfile & {
pendingUserMessage: string | null;
knownKnowledgeSourceUrls: Set<string>;
};