Artificial Intelligence

Category page of all posts on the web site that are tagged as related to Artificial Intelligence including large language models (LLMs), generative AI and more

How I Added a Second GPU to Run Qwen3.6-27B in 64K Context Fully in VRAM

Adding a Second GPU for Qwen3.6-27B 64K Context in VRAM

One of the things I’ve been trying to optimize lately is running larger local models with higher context windows without spilling over into system RAM.

I’ve been running Ollama with Qwen3.6-27B on my NVIDIA 3090, which has 24GB of VRAM. It works great, but once I started pushing the context window above 32K, I started getting a pretty nasty split between CPU and GPU memory.

It worked, but it was noticeably slower.

As anyone running local models knows, once you leave pure VRAM and start involving system RAM, performance drops fast. It’s usable, but it’s definitely not what you want (especially for coding, agent workflows, or anything with a lot of long-running context).

I wanted to stay fully in VRAM.

The problem is that in 2026, GPU prices are still absolutely ridiculous.

I was complaining about that to my wife and explaining that I really didn’t want to do a full upgrade right now when she asked a very good question:

“Can’t you just use your old GPU from your old computer and combine it with this one?”

Honestly, that was such a good suggestion I was annoyed I hadn’t thought of it first.

How I Added a Second GPU to Run Qwen3.6-27B in 64K Context Fully in VRAM Read More »

Using Ollama + Claude Code for Local Security Audits (No API Costs)

Claude Code with Ollama Qwen3.5 - 64k context window 27b parameters MoE model

I’ve been wanting to use AI to analyze my website, https://pibenchmarks.com, and uncover potential improvements (especially security issues) but without spending money on APIs or exposing my code to third-party services.

This post walks through how I set up a fully local workflow using Ollama + Claude Code, running on my RTX 3090, to scan an entire repository efficiently.

Using Ollama + Claude Code for Local Security Audits (No API Costs) Read More »

Making a Core Keeper Fishing Bot Using AI (Grok 3)

Making a Core Keeper Fishing Bot with AI (Grok 3)

Despite the massive hype around AI I have always had a lot of trouble getting the AI to generate usable code. Even when I reply back and try to help the AI understand what it’s missing it often tends to actually get *worse* after my suggestions.

Even for this simple project ChatGPT and Gemini failed miserably to write a very simple fishing bot. They both hallucinated and tried using PowerShell modules that don’t exist. Trying to further refine my prompts only yielded *worse* results!

After hearing all the hype around Grok 3 I decided to give it a try at writing something very simple I wanted: something to simply click the mouse for me in Core Keeper in order to fish. To my surprise in “Think” mode Grok 3 was able to give me incredibly simple and effective code in one try. Wow!

Making a Core Keeper Fishing Bot Using AI (Grok 3) Read More »