UNPKG

@vfarcic/dot-ai

Version:

AI-powered development productivity platform that enhances software development workflows through intelligent automation and AI-driven assistance

26 lines 848 B
/** * Agent Display Utilities * * Provides utilities for building agent instruction content blocks * that ensure important information (visualization URLs) * is displayed to users by AI agents. */ /** * Options for building agent display instructions */ export interface AgentDisplayOptions { /** Visualization URL to display (optional) */ visualizationUrl?: string; } /** * Build an agent instruction content block that tells AI agents to display * specific fields from the JSON response to the user. * * @param options - The display options containing visualization URL * @returns A content block with agent instructions, or null if nothing to display */ export declare function buildAgentDisplayBlock(options: AgentDisplayOptions): { type: 'text'; text: string; } | null; //# sourceMappingURL=agent-display.d.ts.map