What should AI models actually do?
The word of the year so far has been "agentic", and for good reason. Instead of a model relying on having all of the information in the world embued in the parameters, models can now make calls out to either retreive information for context, or perform actions. Despite this, LLMs have gotten larger and larger to attempt to accrue more knowledge and intelligence into the increased number of parameters. What if we were to move in the other direction, and maximally utilize external services for data retreival, and have knowledge fed into context, while the model itself can instead focus on providing the intelligence to put it together.
Where would the line be drawn on how much the model needs to know vs retreive?
Main Section
Begin diving into your main content here. You can use bold text for emphasis and italics for subtle highlights. Don't forget that you can also use inline code when mentioning technical terms.
Subsection Example
Break up your content with clear subsections. This improves readability and helps readers scan through your post.
Here's how you might include a code block:
// Example code with syntax highlighting
function buildBlog() {
console.log("Building something awesome...");
return "โก Lightning fast!";
}
Using Lists
Sometimes you'll want to use bullet points:
- First important point
- Second crucial detail
- Third key insight
Or numbered lists for sequential steps:
- Install dependencies with
bun add package-name - Configure your build script
- Deploy to your platform of choice
Quotes and Citations
"The best time to plant a tree was 20 years ago. The second best time is now."
โ Chinese Proverb
Use blockquotes for important callouts or citations that support your arguments.
Including Links
Don't forget to link to relevant resources when it adds value for your readers. You can also link to other posts on your blog.
Code Examples with Explanations
When showing longer code examples, provide context:
# Install Bun if you haven't already
curl -fsSL https://bun.sh/install | bash
# Initialize your project
bun init -y
# Build your static site
bun run build
Follow up code blocks with explanations of what's happening and why it matters.
Images (Optional)
While this minimal setup doesn't include image handling by default, you could reference images stored in a dist/images/ folder:

Tables for Data
When you need to present structured data:
| Feature | Performance | Developer Experience |
|---|---|---|
| Bun | โก Blazing | ๐ Excellent |
| Node.js | ๐ถ Good | ๐ Good |
| Deno | ๐ Fast | ๐ฏ Modern |
Conclusion
Wrap up your post with a strong conclusion that:
- Summarizes key takeaways
- Provides actionable next steps
- Invites engagement or further thought
Remember to keep your writing conversational yet informative. The terminal aesthetic of your blog pairs well with technical content, but don't be afraid to let your personality shine through.
Thanks for reading! If you found this helpful, you can find me on X or check out my projects on GitHub.