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
This feature is deprecated and will be removed in the future.
It is not recommended for use.
Optional
Maximum number of tokens to generate in the completion.
Model to use
Sampling temperature to use
Generated using TypeDoc
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.This feature is deprecated and will be removed in the future.
It is not recommended for use.