A new textbook titled Foundation Model Engineering has been released, aimed at AI engineers and research-minded readers who want to understand foundation models beyond basic API use. It ties together topics like attention, mixture-of-experts, RLHF, multimodality, long-context inference, retrieval-augmented generation, and agents into a single engineering narrative, using PyTorch examples, quizzes, and interactive visualizers.
sungeuns.github.io
· 2026-09-14
Frigade, a YC W23 startup, has released an Assist API that gives in-app AI agents a single tool call to generate on-screen visual guides instead of relying on outdated help-center text or web searches. The tool uses a browser-based agent trained on a test account to understand a product's UI, then either produces a step-by-step visual walkthrough, returns a conceptual explanation, or declines if it can't help. A demo shows integration with the Vercel AI SDK.
news.ycombinator.com
· 2026-09-09
Egiziago Cioffi, CEO of Microsoft partner SynSphere Italia, discovered that an Azure OpenAI email assistant he built was returning SharePoint content to a low-privilege test account that the account could not access directly in SharePoint. The assistant had passed all evaluation scores and unit tests, but comparing outputs from a high-privilege and a low-privilege account against identical queries exposed the mismatch, revealing that retrieval was happening under the indexer's permissions rather than the requester's.
venturebeat.com
· 2026-09-01
A free set of runnable Colab notebooks called AI Engineer Notebooks has been released to teach applied LLM engineering skills like RAG, agents, evals, fine-tuning, and serving. The curriculum deliberately avoids frameworks like LangChain or LlamaIndex, instead having learners build agent loops and retrieval pipelines from raw API calls using the free Groq API. Two GPU-heavy topics, LoRA fine-tuning and self-hosted serving, include optional appendices tested on Colab's free T4 GPU.
github.com
· 2026-08-27
A proposed technique lets websites detect AI agents through HTTP Accept headers and respond with stripped-down Markdown instead of full HTML pages. This version omits navigation bars, stylesheets, scripts, and layout elements, leaving only the core textual content for automated systems to process.
acceptmarkdown.com
· 2026-08-26
A technical guide argues that most retrieval-augmented generation (RAG) implementations are over-engineered, with teams reaching for embeddings, vector databases and reranking before checking if simpler tools suffice. It lays out decision factors—data freshness, corpus size and churn, query patterns, scale and team ML skill—to determine which retrieval approach fits, starting with plain full-text search like BM25, Elasticsearch or Postgres search before adding complexity.
lighthousenewsletter.com
· 2026-08-26