mcp-ai-agent-guidelines
Version:
A comprehensive Model Context Protocol server providing advanced tools, resources, and prompts for implementing AI agent best practices
30 lines • 1.57 kB
TypeScript
/**
* Model identifier constants - Generated from models.yaml
* Use these constants for type-safe model references in code
*/
export declare const GPT_4_1 = "gpt-4.1";
export declare const GPT_5 = "gpt-5";
export declare const GPT_5_1 = "gpt-5.1";
export declare const GPT_5_2 = "gpt-5.2";
export declare const GPT_5_CODEX = "gpt-5-codex";
export declare const GPT_5_1_CODEX = "gpt-5.1-codex";
export declare const GPT_5_1_CODEX_MINI = "gpt-5.1-codex-mini";
export declare const GPT_5_MINI = "gpt-5-mini";
export declare const CLAUDE_OPUS_4_1 = "claude-opus-4.1";
export declare const CLAUDE_HAIKU_4_5 = "claude-haiku-4.5";
export declare const CLAUDE_SONNET_4_5 = "claude-sonnet-4.5";
export declare const CLAUDE_SONNET_4 = "claude-sonnet-4";
export declare const GEMINI_2_5_PRO = "gemini-2.5-pro";
export declare const GEMINI_2_0_FLASH = "gemini-2.0-flash";
export declare const GROK_CODE_FAST_1 = "grok-code-fast-1";
export declare const QWEN2_5 = "qwen2.5";
export declare const RAPTOR_MINI = "raptor-mini";
/**
* All model identifiers as a constant array
*/
export declare const ALL_MODEL_IDENTIFIERS: readonly ["gpt-4.1", "gpt-5", "gpt-5.1", "gpt-5.2", "gpt-5-codex", "gpt-5.1-codex", "gpt-5.1-codex-mini", "gpt-5-mini", "claude-opus-4.1", "claude-haiku-4.5", "claude-sonnet-4.5", "claude-sonnet-4", "gemini-2.5-pro", "gemini-2.0-flash", "grok-code-fast-1", "qwen2.5", "raptor-mini"];
/**
* Type representing any valid model identifier
*/
export type ModelIdentifier = (typeof ALL_MODEL_IDENTIFIERS)[number];
//# sourceMappingURL=model-identifiers.d.ts.map