mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-09 15:07:55 -05:00
14 lines
404 B
TypeScript
14 lines
404 B
TypeScript
export const MODEL_TOOLS = {
|
|
'gpt-4o': 'openai_chat',
|
|
'o1': 'openai_chat',
|
|
'o1-mini': 'openai_chat',
|
|
'deepseek-v3': 'deepseek_chat',
|
|
'deepseek-r1': 'deepseek_reasoner',
|
|
'claude-3-5-sonnet-20241022': 'anthropic_chat',
|
|
'gemini-pro': 'google_chat',
|
|
'grok-2-latest': 'xai_chat'
|
|
} as const
|
|
|
|
export type ModelType = keyof typeof MODEL_TOOLS
|
|
export type ToolType = typeof MODEL_TOOLS[ModelType]
|