Explorar el Código

Merge pull request #340 from gusanmaz/main

Update langchainpy.md
Bruce MacDonald hace 1 año
padre
commit
74f00474e1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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"))
 ```