TL;DR: Scroll down to the My Prompting Strategy section to copy-pasta my current workflow. Are you having a hard time getting what you expect out of an LLM? Are you giving it a bunch of files and it’s getting lost in the task? Are you giving it multiple tasks and it is only completing someContinue reading “Structured LLM Prompting”
Tag Archives: ai
Post-transformer Architecture
There are new AI architectures that are coming out that may be the next generation of new foundation models. I’m going to keep a running list of the promising ones here. The Dragon Hatchling (BDH) https://www.rohan-paul.com/i/175334051/the-dragon-hatchling-the-missing-link-between-the-transformer-and-models-of-the-brain This new architecture was published in September 2025 and claims to be a closer representation of the brain. OneContinue reading “Post-transformer Architecture”
Retrieval Augmented Generation (RAG)
In short, RAG is a style of LLM usage where you give the LLM more information on top of your prompt. Between prompt engineering and RAG, you can dramatically increase the ability of the model to predict an accurate response. This can be in the form of internet searches the agent performs automatically (like GeminiContinue reading “Retrieval Augmented Generation (RAG)”
LLM Tips and Tools
Large language models (LLMs) utilize a form of neural network architecture to learn the relationships between words and predict the next word in a sentence (more general than words with multimodal models but words and sentences are a fine mental model to have). Below are some resources and tips I am collecting to better useContinue reading “LLM Tips and Tools”
LLM Prompts
Some of my recent prompting strategies… See my Structured LLM Prompting post for more recent and advanced prompting tips. General Tips Keep in mind: LLMs are charting a way through a latent topic space. Prompts are the starting, pre-defined path on a longer journey, and you are asking the model to auto-complete that journey. AddingContinue reading “LLM Prompts”