Class representing a Cohere Large Language Model (LLM). It interacts with the Cohere API to generate text completions.
const model = new Cohere({ temperature: 0.7, maxTokens: 20, maxRetries: 5,});const res = await model.invoke( "Question: What would be a good company name for a company that makes colorful socks?\nAnswer:");console.log({ res }); Copy
const model = new Cohere({ temperature: 0.7, maxTokens: 20, maxRetries: 5,});const res = await model.invoke( "Question: What would be a good company name for a company that makes colorful socks?\nAnswer:");console.log({ res });
Use Cohere from @langchain/cohere instead.
Cohere
@langchain/cohere
Optional
Maximum number of tokens to generate in the completion.
Model to use
Sampling temperature to use
Class representing a Cohere Large Language Model (LLM). It interacts with the Cohere API to generate text completions.
Example
Deprecated
Use
Cohere
from@langchain/cohere
instead.