@promptbook/remote-client
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
12 lines (11 loc) • 625 B
TypeScript
import type { string_model_name } from '../../types/typeAliases';
import type { AgentModelRequirements } from './AgentModelRequirements';
import type { string_book } from './string_book';
/**
* Creates agent model requirements using the new commitment system
* This function uses a reduce-like pattern where each commitment applies its changes
* to build the final requirements starting from a basic empty model
*
* @public exported from `@promptbook/core`
*/
export declare function createAgentModelRequirementsWithCommitments(agentSource: string_book, modelName?: string_model_name): Promise<AgentModelRequirements>;