A high-level journey from neural networks to autonomous shopping
🧠
How machines learn from examples
📊 → 🧮 → 🎯
Data in → Math → Prediction out
A neural network is a function approximator
It learns patterns by adjusting millions of numbers (weights)
This loop runs billions of times during training
The math that makes it work: backpropagation + gradient descent
Layer 1: Edges → Layer 2: Shapes → Layer 3: Objects → Layer N: Concepts
🔮
The architecture that changed everything
Old approach (RNNs): Process words one at a time, sequentially
↓
New approach (Transformers): Look at all words at once, in parallel
"Attention Is All You Need" — Google, 2017
For each word, ask: "Which other words matter for understanding me?"
"The cat sat on the mat because it was tired"
The word "it" attends strongly to "cat" — that's what "it" refers to
⚡
Train 100x faster on GPUs
🔗
Connect distant words easily
📈
More data + compute = better
📚
Transformers trained on the internet
Predict the next word
"The capital of France is ___"
→ "Paris"
Do this trillions of times across all of human text
The model learns grammar, facts, reasoning, and more — all emerge from this simple objective
Emergent abilities appear at scale: reasoning, code, analysis
🤖
From conversation to action
💬
Text in → Text out
Can only talk
🦾
Goal in → Actions + Results
Can do things
Think: "I need to find milk options"
↓
Act: Call search_products("milk")
↓
Observe: Get results back
↓
Think: "User prefers organic, let me filter..."
↓
Repeat until task complete
🔍
Search APIs
🗄️
Databases
🌐
Web Browsing
📧
Email/Messages
🛒
E-commerce
📅
Calendars
The LLM decides which tools to use and when
Model Context Protocol
A standard way for agents to connect to any tool
Like USB, but for AI tools — plug and play
🛒
The transformation of digital shopping
Search → Browse → Filter → Compare → Add → Checkout
15-30 minutes, lots of clicks
"Get what we need for dinner this week"
2 minutes, done
Dallas: "Plan dinners for the week, two people, ~$100"
Claw:
Using browser automation on GroceryCo.com — this actually happened
In 2-3 years, customers will expect:
"Handle my groceries"
...and it just works.
🦞
Deep dive available in technical.html
Business strategy: business.html