UNPKG

mcp-ai-agent-guidelines

Version:

A comprehensive Model Context Protocol server providing advanced tools, resources, and prompts for implementing AI agent best practices

18 lines 681 B
/** * Model aliases mapping - Generated from models.yaml * Maps slugified model identifiers to display names */ export declare const MODEL_ALIASES: Record<string, string>; /** * Get display name for a model identifier * @param identifier - Slugified model identifier * @returns Display name or the identifier if not found */ export declare function getModelDisplayName(identifier: string): string; /** * Check if a model identifier is valid * @param identifier - Model identifier to check * @returns true if the identifier exists in MODEL_ALIASES */ export declare function isValidModelIdentifier(identifier: string): boolean; //# sourceMappingURL=model-aliases.d.ts.map