UNPKG

@callmedayz/ai-prompt-toolkit

Version:

Professional AI prompt engineering toolkit with advanced template features, real-time dashboards, conditional logic, template inheritance, live monitoring, OpenRouter integration, and 310+ model support

13 lines 1.22 kB
export type FreeModel = 'tencent/hunyuan-a13b-instruct:free' | 'tngtech/deepseek-r1t2-chimera:free' | 'openrouter/cypher-alpha:free' | 'mistralai/mistral-small-3.2-24b-instruct:free' | 'moonshotai/kimi-dev-72b:free' | 'deepseek/deepseek-r1-0528-qwen3-8b:free' | 'deepseek/deepseek-r1-0528:free' | 'sarvamai/sarvam-m:free' | 'mistralai/devstral-small:free' | 'google/gemma-3n-e4b-it:free'; export type PaidModel = 'mistralai/mistral-small-3.2-24b-instruct' | 'mistralai/magistral-small-2506' | 'mistralai/magistral-medium-2506' | 'mistralai/magistral-medium-2506:thinking' | 'anthropic/claude-opus-4' | 'anthropic/claude-sonnet-4' | 'mistralai/devstral-small' | 'mistralai/mistral-medium-3' | 'openai/gpt-4.1' | 'openai/gpt-4.1-mini' | 'openai/gpt-4.1-nano' | 'mistralai/mistral-small-3.1-24b-instruct' | 'openai/gpt-4o-mini-search-preview' | 'openai/gpt-4o-search-preview' | 'openai/gpt-4.5-preview'; export type SupportedModel = FreeModel | PaidModel; export declare const DEFAULT_FREE_MODEL: FreeModel; export interface ModelConfig { name: string; maxTokens: number; costPerToken: number; modality?: string; architecture?: string; provider?: string; } //# sourceMappingURL=openrouter-types.d.ts.map