UNPKG

@promptbook/remote-server

Version:

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

37 lines (36 loc) 1.42 kB
import type { AgentModelRequirements } from '../../book-2.0/agent-source/AgentModelRequirements'; import type { ToolFunction } from '../../scripting/javascript/JavascriptExecutionToolsOptions'; import type { string_javascript_name } from '../../types/string_person_fullname'; import { BaseCommitmentDefinition } from '../_base/BaseCommitmentDefinition'; /** * USE PRIVACY commitment definition. * * The `USE PRIVACY` commitment enables an agent to request enabling private mode. * * @private [🪔] Maybe export the commitments through some package */ export declare class UsePrivacyCommitmentDefinition extends BaseCommitmentDefinition<'USE PRIVACY'> { constructor(); get requiresContent(): boolean; /** * Short one-line description of USE PRIVACY. */ get description(): string; /** * Icon for this commitment. */ get icon(): string; /** * Markdown documentation for USE PRIVACY commitment. */ get documentation(): string; applyToAgentModelRequirements(requirements: AgentModelRequirements, content: string): AgentModelRequirements; /** * Gets human-readable titles for tool functions provided by this commitment. */ getToolTitles(): Record<string_javascript_name, string>; /** * Gets the `turn_privacy_on` tool function implementation. */ getToolFunctions(): Record<string_javascript_name, ToolFunction>; }