@promptbook/azure-openai
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
28 lines (27 loc) • 1.06 kB
TypeScript
import type { AgentModelRequirements } from '../../book-2.0/agent-source/AgentModelRequirements';
import { BaseCommitmentDefinition } from '../_base/BaseCommitmentDefinition';
/**
* META VISIBILITY commitment definition.
*
* The `META VISIBILITY` commitment stores whether an agent is public, private, or unlisted.
* Agents Server mirrors this value into the database for efficient filtering, but the book
* commitment remains the editable source of truth.
*
* @private Metadata-only commitment used by Agents Server.
*/
export declare class MetaVisibilityCommitmentDefinition extends BaseCommitmentDefinition<'META VISIBILITY'> {
constructor();
/**
* Short one-line description of META VISIBILITY.
*/
get description(): string;
/**
* Icon for this commitment.
*/
get icon(): string;
/**
* Markdown documentation for META VISIBILITY commitment.
*/
get documentation(): string;
applyToAgentModelRequirements(requirements: AgentModelRequirements, content: string): AgentModelRequirements;
}