소스 검색

Merge pull request #340 from gusanmaz/main

Update langchainpy.md
Bruce MacDonald 1 년 전
부모
커밋
74f00474e1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/tutorials/langchainpy.md

+ 1 - 1
docs/tutorials/langchainpy.md

@@ -18,7 +18,7 @@ Then we can create a model and ask the question:
 
 ```python
 from langchain.llms import Ollama
-ollama = Ollama(base_url='[http://localhost:11434](http://localhost:11434/)',
+ollama = Ollama(base_url='http://localhost:11434',
 model="llama2")
 print(ollama("why is the sky blue"))
 ```