12 lines
633 B
TypeScript
12 lines
633 B
TypeScript
export const PROVIDER_MODEL_SUGGESTIONS: Record<string, string[]> = {
|
|
openai: ['gpt-4o-mini', 'gpt-4o', 'gpt-4-turbo', 'gpt-3.5-turbo'],
|
|
anthropic: ['claude-3-5-sonnet-latest', 'claude-3-5-haiku-latest', 'claude-3-opus-latest'],
|
|
google: ['gemini-1.5-flash', 'gemini-1.5-pro', 'gemini-2.0-flash-exp'],
|
|
deepseek: ['deepseek-chat', 'deepseek-coder'],
|
|
minimax: ['abab6.5-chat', 'abab6.5s-chat'],
|
|
mistral: ['mistral-small-latest', 'mistral-medium-latest', 'mistral-large-latest'],
|
|
glm: ['glm-4', 'glm-4-flash'],
|
|
openrouter: ['openai/gpt-4o-mini', 'anthropic/claude-3.5-sonnet', 'deepseek/deepseek-chat'],
|
|
custom: [],
|
|
};
|