Google rebranded NotebookLM as Gemini Notebook, integrating it more tightly into the Gemini product family. The HN thread drew 153 points — mostly practitioners noting the product utility while questioning whether the rename signals deeper integration with Gemini models or is primarily a marketing move. NotebookLM/Gemini Notebook remains one of the more actively adopted RAG-adjacent products among knowledge workers.
Framework for stress-testing multi-step search agents under poor-quality evidence conditions — a failure mode that is rare in standard benchmarks but catastrophic in production. DeepStress controls the frequency and severity of misleading/noisy evidence in retrieved documents and measures agent robustness, exposing brittleness invisible to standard QA metrics. Relevant for any practitioner deploying RAG-based or web-search agents in adversarial or noisy environments.
LLMVault is a purpose-built, intentionally vulnerable platform for hands-on AI security training covering the full OWASP LLM Top 10: prompt injection, RAG security, agent security, and GenAI penetration testing. Useful for practitioners building red-teaming competence on agentic systems. 94 stars on GitHub as of this week.
📑 arXiv 3w ago
⭐ Editor's Pick
As RLVR increasingly uses an LLM judge as the reward model, this paper asks: how capable must the judge be, and how biased is it? Studies this calibration question specifically for citation quality in deep-research systems — a practically important but understudied reward signal. Finds that frontier models are not always necessary as citation judges, and characterizes the bias profile of smaller rubric LLMs. Directly informs design of reward models for training web-grounded research agents.
Addresses the depth-vs-breadth tradeoff that limits single-agent ReAct-style web search: one long trajectory cannot simultaneously go deep on sub-questions and cover broad coverage. WebSwarm uses recursive multi-agent orchestration where a coordinator dynamically spawns specialized sub-agents for sub-queries and synthesizes their outputs, enabling parallelism across breadth while each sub-agent can depth-search independently. Targets complex research-oriented queries where current single-agent and naive multi-agent approaches fall short.
Proposes a hybrid architecture where LLMs are augmented with an automatically constructed RDF/OWL ontology as an external memory layer, replacing or supplementing vector-based RAG with a structured knowledge graph. The pipeline performs entity recognition, relation extraction, triple generation, and SHACL/OWL validation from heterogeneous sources, enabling persistent and verifiable reasoning. The key distinction from standard RAG is that retrieved context is semantically structured and constraint-validated rather than embedding-similarity ranked.
Graphify is a Claude Code skill that builds a queryable knowledge graph of a codebase using tree-sitter ASTs across 25 languages, then writes a GRAPH_REPORT.md for Claude to read instead of raw files — reporting 71.5x token reduction per query. The tool also does semantic extraction over docs, PDFs, images, and audio (via Whisper) and detects cross-file dependency communities. 32k GitHub stars and 250k PyPI downloads suggest real adoption; the token reduction claim warrants independent benchmarking.
A hands-on build report on Karpathy's 'LLM Wiki' concept — pre-processing sources into a structured, interlinked markdown wiki rather than retrieving raw chunks at query time. Synthesis and cross-document reasoning questions improve noticeably versus RAG, but the approach struggles with scale, update latency, and source conflicts. Honest tradeoff analysis rather than a benchmark.
Extension of Karpathy's LLM-as-wiki-editor pattern, adding an atomic knowledge layer, topic-branching structure, and a two-tier linting pass. Distilled from end-to-end production runs of the pattern. Primarily a workflow/architecture recipe rather than a new tool.