Kaynağa Gözat

Update langchainjs.md (#2030)

Changed ollama.call() for ollama.invoke() as per deprecated documentation from langchain
Carlos Gamez 1 yıl önce
ebeveyn
işleme
a27e419b47
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      docs/tutorials/langchainjs.md

+ 1 - 1
docs/tutorials/langchainjs.md

@@ -18,7 +18,7 @@ const ollama = new Ollama({
   model: "llama2",
   model: "llama2",
 });
 });
 
 
-const answer = await ollama.call(`why is the sky blue?`);
+const answer = await ollama.invoke(`why is the sky blue?`);
 
 
 console.log(answer);
 console.log(answer);
 ```
 ```