Merge pull request #340 from gusanmaz/main

Update langchainpy.md
This commit is contained in:
Bruce MacDonald 2023-08-14 09:38:42 -04:00 committed by GitHub
commit 74f00474e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"))
```