Zack Saadioui
8/27/2024
1
2
bash
ollama serve
1
2
bash
ollama pull mistral
1
2
bash
pip install notebook
1
2
bash
jupyter notebook
1
2
python
from langchain.llms import Ollama
1
2
python
ollama = Ollama(base_url="http://localhost:11434", model="mistral")
1
2
python
TEXT_PROMPT = "Why is the sky blue?"
1
2
3
python
response = ollama(TEXT_PROMPT)
print(response)
Copyright © Arsturn 2025