Bite-Sized AI
This section is my personal exploration of the AI ecosystem. To feel more comfortable with this topic, I needed to understand the foundations, without going too deep into the mathematics behind them.
I hope these articles can help you understand these concepts as well.
Understand the foundations
An overview of how large language models work during inference
How text is converted into tokens and IDs before reaching the model
How token IDs are converted into vectors that are refined inside the model
How transformer layers progressively refine token representations during inference
How tokens retrieve information from other tokens in the context
How the MLP transforms each token’s hidden state after attention
How the KV cache helps an LLM avoid recomputing information during decode
Explore the ecosystelm
Where open-source models live: how to find a model, read a model card, and download what you need
What qwen2.5:7b-instruct-q4_K_M actually means: family, parameter count, variant, and quantization explained
Run open-source LLMs locally using Ollama and add a web UI with Open WebUI
Deploy Ollama with persistent model storage and a web UI, using an initContainer to pull models automatically
PagedAttention, continuous batching, and why a GPU is essential for production inference
Install the NVIDIA GPU Operator and serve your first model via the OpenAI-compatible API
How to make LLMs answer questions about your own data: the indexing pipeline, embeddings, vector stores, and retrieval
How LLMs can call functions and take actions: defining tools, handling responses, and feeding results back
Introduction to the protocol that allows an LLM to access external services
Articles published on Exoscale blog
- 2026 Jul 2nd - GPU Partitioning with MIG on Exoscale SKS
- 2026 Jun 15th - Inside an LLM: From Prompt to Tokens