Tuesday, 14 July 2026
GPT-5.6 Sol - Preview
Friday, 10 July 2026
Claude's "Access Consciousness"& Rise of the "J-Space"
Tuesday, 23 June 2026
LiteLLM - Gateway to 100+ LLMs
Tuesday, 2 June 2026
JetBrains Releases Mellum2
JetBrains (the home of IntelliJ and PyCharm) has released its Mellum2 Mixture-of-Experts coding model, of 12B parameters.
The model is available under the Apache 2.0 license.
The model has been published on Hugging Face and can be run locally.
A mixture-of-experts model works via a "gating network" which delegates work to smaller neural networks, the "experts", optimising overall performance. This model also leads to "sparse activation" - which means of all the possible parameters utilised by the model, only a subset are used per input.
Training an MoE model requires training the gating network and training the various "experts".
Monday, 1 June 2026
OpenCode and GLM Models
Monday, 16 March 2026
LoRA in Real Workflows
LoRA, or low-rank adaptation, is a fine-tuning technique for LLMs (one of many disparate techniques).
The idea is to inject low rank matrices into large pre training models.
Recall that the rank of a matrix A is the dimension of the vector space spanned by its columns. This in turn corresponds to the number of linearly independent columns of A.
So LoRA is essentially a dimensionality reduction of the column space of parameters to ease off compute.
Books and Resources on AI Engineering
Sunday, 1 February 2026
GGUF = GPT-Generated Unified Format
GGUF is a special model file format used to run LLMs efficiently on your own computer. It stands for GPT-Generated Unified Format. It is the successor to GGML. Privacy-sensitive workflows are one application of these optimized-for-local execution model packages.
Friday, 30 January 2026
Wednesday, 28 January 2026
How Claude Code Works
Friday, 23 January 2026
What is Pydantic?
Monday, 24 November 2025
Microsoft Launch Fara-7B: A CUA (Computer Use Agent) in SLM Form
And here we have it. Ready for action on Hugging Face, Sir.
Sandboxing and monitoring are recommended. The agent itself is a wrapper around Playwright.
Sunday, 23 November 2025
IBM's Guide to Small Language Models
Tuesday, 11 November 2025
Getting Jiggy with gpt-oss-20b (and why open weights matter)
Friday, 12 September 2025
Microsoft Semantic Kernel
Microsoft Semantic Kernel is a "lighweight, open-source development kit" to build AI agents and integrate models into C#, Python and Java code.
When you load up SK into a fresh Visual Studio Code (no extensions) it will prompt to install recommended extensions. These will include:
- ESLint - integrates ESLint JavaScript into VS Code (for static analysis)
- Prettier - integrates Prettier, the opinionated code formatter (for JavaScript, TypeScript and other webby stuff)
- Azure Functions - to quickly manage serverless apps directly from VS Code
- vscode-pdf - to display pdf files in VSCode (required to open PDF code maps for .NET and Python)
Cost Effective Deployment of Language Models
Cost effective deployment of language models (explicit financial as well as implicit environmental cost) is partly responsible for triggering the interest in small language models (SLMs) as alternatives for specific applications.
Nvidia Research have a great paper on this entitled "Small Language Models are the Future of Agentic AI" with the recommendation that more routine tasks (non reasoning tasks) move from LLMs to SLMs.
Fine tuning these SLMs for specific tasks can also enhance the effectiveness of deployed models.
Saturday, 6 September 2025
Prompt Maintenance
Friday, 8 August 2025
OpenAI Releases Open Models under Apache 2.0
- gpt-oss-120b
- gpt-oss-20b
Wednesday, 9 July 2025
LLM Training Data
LLMs are trained on large data sets. One such data set is Common Crawl which consists of 250 billion Internet pages with 3-5 billion pages added each month. This is petabytes worth of data (1 petabyte = 10^15 bytes of digital information). The data is stored on Amazon's S3 service allowing direct download or access for Map-Reduce processing in EC2.