ANTHROPIC_API_KEY="<Your key>"
npm install @llm-tools/embedjs-anthropic
import { RAGApplicationBuilder } from '@llm-tools/embedjs'; import { Anthropic } from '@llm-tools/embedjs-anthropic'; const app = await new RAGApplicationBuilder() .setModel(new Anthropic({ modelName: "..." }))
Was this page helpful?