소스 검색

Update langchainjs.md (#2030)

Changed ollama.call() for ollama.invoke() as per deprecated documentation from langchain
Carlos Gamez 1 년 전
부모
커밋
a27e419b47
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/tutorials/langchainjs.md

+ 1 - 1
docs/tutorials/langchainjs.md

@@ -18,7 +18,7 @@ const ollama = new Ollama({
   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);
 ```