Basic Stream

Code

1from typing import Iterator # noqa
2from kern.agent import Agent, RunOutputEvent # noqa
3from kern.models.ollama import Ollama
4
5agent = Agent(model=Ollama(id="llama3.1:8b"), markdown=True)
6
7# Get the response in a variable
8# run_response: Iterator[RunOutputEvent] = agent.run("Share a 2 sentence horror story", stream=True)
9# for chunk in run_response:
10# print(chunk.content)
11
12# Print the response in the terminal
13agent.print_response("Share a 2 sentence horror story", stream=True)

Usage

Set up your virtual environment

1uv venv --python 3.12
2source .venv/bin/activate
1uv venv --python 3.12
2.venv\Scripts\activate

Install Ollama

Follow the Ollama installation guide and run:

1ollama pull llama3.1:8b

Install dependencies

1uv pip install -U ollama kern-ai

Run Agent

1python cookbook/11_models/ollama/basic_stream.py

Cloud Alternative

For easier setup without local installation, you can use Ollama Cloud with your API key:

1from kern.agent import Agent
2from kern.models.ollama import Ollama
3
4# No local setup required - just set OLLAMA_API_KEY
5agent = Agent(model=Ollama(id="gpt-oss:120b-cloud", host="https://ollama.com"))
6agent.print_response("Share a 2 sentence horror story", stream=True)