Why choose Llama 3.1 70B?
Llama 3.1 70B provides excellent general-purpose instruction following and reasoning, offering a robust open-source alternative to GPT-4 class models.
เข้าถึง Llama 3.1 70B ได้ฟรีผ่าน Vercel AI Gateway
Llama 3.1 70B provides excellent general-purpose instruction following and reasoning, offering a robust open-source alternative to GPT-4 class models.
Vercel มอบเครดิต AI มูลค่า $5 ต่อเดือนสำหรับทุกทีม คุณสามารถทดลองใช้โมเดลนี้ได้ฟรีผ่าน Vercel AI SDK ตราบใดที่การใช้งานของคุณไม่เกินขีดจำกัดนั้น
import { generateText } from 'ai';
import { openai } from '@ai-sdk/openai';
// Often accessed via a compatible provider within Vercel's routing
const { text } = await generateText({
model: openai('meta-llama/Meta-Llama-3.1-70B-Instruct'),
prompt: 'Write a quick poem about free AI models',
});
console.log(text);