Integration with ChatCohere
const model = new ChatCohere({ apiKey: process.env.COHERE_API_KEY, // Default model: "command-r-plus" // Default});const response = await model.invoke([ new HumanMessage("How tall are the largest pengiuns?")]); Copy
const model = new ChatCohere({ apiKey: process.env.COHERE_API_KEY, // Default model: "command-r-plus" // Default});const response = await model.invoke([ new HumanMessage("How tall are the largest pengiuns?")]);
Optional
Integration with ChatCohere
Example