mcp-ai-agent-guidelines
Version:
A comprehensive Model Context Protocol server providing advanced tools, resources, and prompts for implementing AI agent best practices
16 lines • 581 B
TypeScript
import { BaseDiagramHandler } from "./base.handler.js";
/**
* Handler for pie chart diagrams.
* Generates pie charts showing distributions and percentages.
*/
export declare class PieHandler extends BaseDiagramHandler {
readonly diagramType = "pie";
generate(description: string, theme?: string): string;
/**
* Parse natural language description to extract pie chart data.
* @param description - Natural language description
* @returns Parsed pie chart configuration
*/
private parsePieDescription;
}
//# sourceMappingURL=pie.handler.d.ts.map