Jelajahi Sumber

Merge pull request #340 from gusanmaz/main

Update langchainpy.md
Bruce MacDonald 1 tahun lalu
induk
melakukan
74f00474e1
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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
 ```python
 from langchain.llms import Ollama
 from langchain.llms import Ollama
-ollama = Ollama(base_url='[http://localhost:11434](http://localhost:11434/)',
+ollama = Ollama(base_url='http://localhost:11434',
 model="llama2")
 model="llama2")
 print(ollama("why is the sky blue"))
 print(ollama("why is the sky blue"))
 ```
 ```