Ephemeral Dance Of Electrons

Ars Longa, Vita Brevis

Code and thought are a false dichotomy: both are an ephemeral dance of electrons.

Building Natural Language Interfaces with LLM Function Calling

Large Language Models (LLMs) are good at generating coherent text, but they have few inherent limitations:

  1. Hallucinations: They learn and generate information in terms of likelihood and may produce information that is not grounded in facts
  2. Knowledge Cutoff: LLMs are trained on a fixed dataset and …

Building Natural Language Interfaces with LLM Function Calling

Building a Codenames AI Assistant with Multi-Modal LLMs

Codenames is a word association game where two teams guess secret words based on one-word clues. The game involves a 25-word grid, with each team identifying their words while avoiding the opposing team’s words and the “assassin” word.

I knew that word embeddings could be used to …

Building a Codenames AI Assistant with Multi-Modal LLMs

Generating Visual Illusions Using Diffusion Models On Low VRAM

By now, many of us may be familiar with text-to-image models like Midjourney, DALL·E 3, StableDiffusion etc., Recently, I came across an interesting project called Visual Anagrams that utilizes text-to-image model to generate picture illusions. This project enables us to input two different text …

Generating Visual Illusions Using Diffusion Models On Low VRAM

Exploring Retrieval-Augmented Generation with Open Source Large Language Models

While chatbots have grown common in applications like customer service, they have several shortcomings which disrupts user experience. Traditional chatbots rely on pattern matching and database lookups, which are ineffective when a user’s question deviates from what was expected. Responses may …