Skip to main content

Writer

LangChain.js supports calling Writer LLMs.

Setup

First, you'll need to sign up for an account at https://writer.com/. Create a service account and note your API key.

Next, you'll need to install the official package as a peer dependency:

yarn add @writerai/writer-sdk
npm install @langchain/community

Usage

import { Writer } from "@langchain/community/llms/writer";

const model = new Writer({
maxTokens: 20,
apiKey: "YOUR-API-KEY", // In Node.js defaults to process.env.WRITER_API_KEY
orgId: "YOUR-ORGANIZATION-ID", // In Node.js defaults to process.env.WRITER_ORG_ID
});
const res = await model.invoke(
"What would be a good company name a company that makes colorful socks?"
);
console.log({ res });

API Reference:

  • Writer from @langchain/community/llms/writer

Help us out by providing feedback on this documentation page: