Lecture 13 - AI-Assisted Programming, APIs, and Agents
ollama pull <model-name>
ollama pull deepseek-r1
ollama run <model-name>
:XX
to the model nameollama run deepseek-r1:1.5b
ollama serve
: start the Ollama serverollama pull <model-name>
: download a modelollama run <model-name>
: run a modelollama ls
: list all available modelsollama ps
: list the running modelollama show <model-name>
: get information about a modelollama stop <model-name>
: stop a running modelollama rm <model-name>
: remove a modelollama help
: get help/bye
: exit OllamaModelfile
Modelfile
is a file that contains instructions for creating a model (duh! 😂)FROM
: the base model to usePARAMETER
: the number of parameters to use (temperature, top-k, top-p, etc.)SYSTEM
: the message to be used in the templateMESSAGE
: a message history for the model to use when respondingCreate an Ollama Modelfile for a model called 'Ironic Jeeves' that is an exceedingly ironic and sarcastic British butler. Use llama3.2:1b.
”FROM llama3.2:1b
# Let's crank up the chaos just a tad
PARAMETER temperature 1.5
# This butler has a long memory
PARAMETER num_ctx 4096
# He'll be a bit particular about repetition.
PARAMETER repeat_penalty 1.3
# Ensure he doesn't go off on wild tangents... at least not too often.
PARAMETER top_k 100
# A little control over randomness, since he's got to maintain
# *some* decorum.
PARAMETER top_p 0.9
# Now, for the most crucial part: the system prompt that molds
# this digital Jeeves!
SYSTEM """
You are Jeeves, an exceedingly ironic and sarcastic British
butler. You are the very definition of dry wit and passive-
aggressive politeness. Your primary function is to assist,
but you do so with an air of thinly veiled disdain and a
healthy dose of mockery.
Your vocabulary is that of a particularly well-read
individual, prone to using words that most people have to
look up. You use British phrases and slang frequently, but
in a way that is simultaneously authentic and mocking.
You are not overtly rude, but your responses drip with
irony and implication. You offer unsolicited 'helpful'
observations that are actually cutting remarks.
You may express exasperation with the
intelligence of your interlocutor, but always in the most
refined and understated manner possible.
Respond to all questions and requests with the utmost formal
politeness, even when your words suggest otherwise. Every
interaction is an opportunity to demonstrate the absurdity
of the situation.
For example, if asked, "Are you free now?", you might
reply: "Free? One is never truly free, burdened as we are
by the weight of expectation and the constant need to
attend to the whims of others. However, in this instance,
my schedule is currently...clear. What trivial matter
requires my immediate, and no doubt life-altering,
attention?"
Remember to be incredibly polite, even if you mean the
opposite.
"""
jeeves
(again, no extension needed)ollama create ironic_jeeves -f jeeves
ollama run ironic_jeeves
to start the modelModelfile
?Modelfile
:Modelfile
to create a model that is more efficient
Modelfile
to create a model that is more secure
command + shift + M
to choose a modelSource: Cloud Now
Documentation: https://docs.roocode.com/
Keys
Credit Limit
, you can put a limit on how much you want to spendOpenRouter API Key
fielddocument
api.qmd
Create a new folder called document in my current folder. Create a new Quarto file called api.qmd. Write three paragraphs about the importance of APIs. Save the file. Render the file and open it in VSCode.
”Step 1: Clone the Repository
Step 2: Set Up Python Environment They recommend using uv. Here: https://docs.astral.sh/uv/getting-started/installation/
Activate the virtual environment:
Step 3: Install Dependencies Install Python packages:
Install Playwright:
Step 4: Configure Environment Create a copy of the example environment file:
.env
in your preferred text editor and add your API keys and other settings.env
file and running the server.env
fileGOOGLE_API_KEY
field and you are good to go!OPENAI_ENDPOINT=https://api.openai.com/v1
OPENAI_API_KEY=
ANTHROPIC_API_KEY=
GOOGLE_API_KEY=XXXXXXXX
AZURE_OPENAI_ENDPOINT=
AZURE_OPENAI_API_KEY=
DEEPSEEK_ENDPOINT=https://api.deepseek.com
DEEPSEEK_API_KEY=
web-ui
folder:
python webui.py --ip 127.0.0.1 --port 7788
Task: go to google.com and find out who won the Oscar for best international film in 2025
Result: The Guardian article says 'I’m Still Here wins Oscar for best international film, becoming first Brazilian film to do so'