Deprecated in favor of the @langchain/ollama package. Import from @langchain/ollama instead.
A class that enables calls to the Ollama API to access large language
models in a chat-like fashion. It extends the SimpleChatModel class and
implements the OllamaInput interface.
Example
constprompt = ChatPromptTemplate.fromMessages([ [ "system", `You are an expert translator. Format all responses as JSON objects with two keys: "original" and "translated".`, ], ["human", `Translate "{input}" into {language}.`], ]);
Deprecated
Deprecated in favor of the
@langchain/ollama
package. Import from@langchain/ollama
instead.A class that enables calls to the Ollama API to access large language models in a chat-like fashion. It extends the SimpleChatModel class and implements the OllamaInput interface.
Example