import { LLM } from '@runflow-ai/sdk';
// OpenAI
const gpt4 = LLM.openai('gpt-4o', { temperature: 0.7 });
// Anthropic (Claude)
const claude = LLM.anthropic('claude-3-5-sonnet-20241022', {
temperature: 0.9,
maxTokens: 4000,
});
// Bedrock
const bedrock = LLM.bedrock('anthropic.claude-3-sonnet-20240229-v1:0', {
temperature: 0.8,
});