<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Llm on JM's Site</title><link>/tags/llm/</link><description>Recent content in Llm on JM's Site</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Thu, 23 Apr 2026 23:43:10 +0000</lastBuildDate><atom:link href="/tags/llm/index.xml" rel="self" type="application/rss+xml"/><item><title>Why I'm Learning LLMs</title><link>/llm/learning-motivations/</link><pubDate>Fri, 03 Apr 2026 23:43:34 +0000</pubDate><guid>/llm/learning-motivations/</guid><description>&lt;h2 id="motivation"&gt;Motivation&lt;/h2&gt;
&lt;p&gt;Part &lt;strong&gt;curiosity&lt;/strong&gt; — I like gardening, math, geology, history, psychology, and now this. Part &lt;strong&gt;continued employment&lt;/strong&gt;. I don&amp;rsquo;t shine at working faster or adopting the coolest tools. I am, however, capable of thinking critically and &lt;strong&gt;asking why&lt;/strong&gt;, even when it bothers everyone else.&lt;/p&gt;
&lt;p&gt;AI will disrupt the technology landscape. It&amp;rsquo;s also opening opportunities. We have to figure out what they are.&lt;/p&gt;
&lt;p&gt;Software engineers don&amp;rsquo;t work the way they did five years ago. Five years ago I was reprojecting maps in tile servers. Today I develop data pipelines for robotic applications. I want to be ready for whatever comes next.&lt;/p&gt;</description></item><item><title>Running Local LLMs with Ollama</title><link>/software/ollama/</link><pubDate>Thu, 02 Apr 2026 00:00:00 +0000</pubDate><guid>/software/ollama/</guid><description>&lt;p&gt;Ollama lets you run large language models locally with a single command.&lt;/p&gt;
&lt;h2 id="quick-start"&gt;Quick start&lt;/h2&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bash" data-lang="bash"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;ollama run llama3
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="why-local"&gt;Why local?&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;No API keys or rate limits.&lt;/li&gt;
&lt;li&gt;Data stays on your machine.&lt;/li&gt;
&lt;li&gt;Works offline.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="models-i-use"&gt;Models I use&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;llama3&lt;/code&gt; — general purpose&lt;/li&gt;
&lt;li&gt;&lt;code&gt;codellama&lt;/code&gt; — code generation&lt;/li&gt;
&lt;li&gt;&lt;code&gt;nomic-embed-text&lt;/code&gt; — embeddings for vector search&lt;/li&gt;
&lt;/ul&gt;</description></item><item><title>Vector Search with ChromaDB</title><link>/software/chromadb/</link><pubDate>Thu, 02 Apr 2026 00:00:00 +0000</pubDate><guid>/software/chromadb/</guid><description>&lt;p&gt;ChromaDB is an embedding database for building search and retrieval systems.&lt;/p&gt;
&lt;h2 id="how-i-use-it"&gt;How I use it&lt;/h2&gt;
&lt;p&gt;I chunk documentation (VyOS, Hugo) into paragraphs, embed them with
&lt;code&gt;nomic-embed-text&lt;/code&gt; via Ollama, and store the vectors in ChromaDB for
semantic search.&lt;/p&gt;
&lt;h2 id="stack"&gt;Stack&lt;/h2&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;Documents → Chunker → Ollama embeddings → ChromaDB → Query API
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id="key-concepts"&gt;Key concepts&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Collection&lt;/strong&gt;: a named group of embeddings (like a table).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Document&lt;/strong&gt;: the raw text stored alongside the vector.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Metadata&lt;/strong&gt;: key-value pairs for filtering results.&lt;/li&gt;
&lt;/ul&gt;</description></item></channel></rss>