Welcome to the Lab of Code, AI, and Innovation

Exploring the intersection of software development, AI, and the home lab revolution. From the depths of C# to the frontier of AI, and the backbone of every tech enthusiast's haven, this is where ideas take shape and technology evolves.

Posts for Software Development


Using AI to help with code writing

by Andy Gorman on 01/20/2025 22:01:09

#C-Sharp #C# #AI #ChatGPT

I recently started using ChatGPT and my own local Ollama server.  The code is generally pretty good, and requires some tweaking, as you'd suspect.  For example, here is a code snippet of ChatGPT trying to show how to perform Name Entity Recognition.

using Microsoft.SemanticKernel;
using Microsoft.SemanticKernel.ChatCompletion;
#pragma warning disable SKEXP0070

// Create two kernels for each model
var intentKernel = Kernel.CreateBuilder()
                   .AddOllamaChatCompletion(
                       modelId: "llama3.2:latest",
                       endpoint: new Uri("http://192.168.2.19:11434"))
                   .Build();

var nerKernel = Kernel.CreateBuilder()
                   .AddOllamaChatCompletion(
                       modelId: "ner-model:latest",
                       endpoint: new Uri("http://192.168.2.19:11434"))
                   .Build();