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.

Replace Google Photos with PhotoPrism, PhotoSync, and TrueNAS

The Background


For the last fifteen years, I've used Android phones, starting with the Samsung S3 through the S4 and then moving on to Pixel phones. Like many Android users, I've relied on classic Google apps such as Gmail, Drive, Hangouts, Calendar, and Photos. The Google Photos app is particularly great, offering excellent categorization, sorting features, and automatic cloud backups.

The Problem


Using AI to help with code writing

#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();