Where Does Multi-Agent Work Actually Live?
A discussion post asks where shared project state, task ownership, and accountability should live when multiple AI agents work on the same project, noting Hugging Face already has work around agent fr…
A discussion post asks where shared project state, task ownership, and accountability should live when multiple AI agents work on the same project, noting Hugging Face already has work around agent fr…
A 4 September 2026 audit of six open-source AI agent frameworks found that the median framework records only 5 of the 12 mandatory fields required by the agent audit trail Internet-Draft, and none rec…
A developer has released HF Agent OS, a multi-agent system built on smolagents that manages the Hugging Face project lifecycle through natural language, including search, inference, upload, and deploy…
A developer built an 'Agentic AI Knowledge Assistant' that combines hybrid retrieval-augmented generation (RAG) with an LLM agent to answer questions strictly from a predefined knowledge base. The sys…
An engineer detailed the design and deployment of a hybrid agentic retrieval-augmented generation (RAG) architecture that combines dense semantic search (FAISS) with exact keyword search (BM25) and us…
A new technical reference documents that AI model APIs, including Anthropic, OpenAI, and vLLM, return HTTP 200 with well-formed bodies when generation hits the max output token ceiling, making truncat…
In the week of 2026-08-24, 100 AI agents were evaluated, with cline ranking first at a score of 87.7. The biggest climbers included gpt-researcher (rank 67 to 45), smolagents (26 to 14), and deepseek-…
A developer's analysis of Pydantic AI's run loop reveals that the framework maintains a single mutable conversation list per run and re-sends the entire accumulated history—including tool outputs—on e…
A Hugging Face agents course user encountered a runtime error when duplicating the first agent example on ZeroGPU, with the message 'No @spaces.GPU function detected during startup.' The fix involves …
Hugging Face's smolagents framework incurs a quadratic token cost because its CodeAgent re-sends the entire accumulated memory of every previous step at each reasoning step, rather than sending only n…
A developer fuzzing Hugging Face's smolagents framework discovered a bug where the sandboxed Python interpreter rejected valid Python code, such as dict merges with `**`, and returned misleading error…
A developer found that a single line of math—10 ** 10 ** 8—can freeze an AI agent built with Hugging Face's smolagents library indefinitely, because CPython's arbitrary-precision exponentiation holds …
RelayShield released four smolagents.Tool classes that let an AI agent check its own attack surface before acting, including verifying whether an MCP server is known-malicious, detecting prompt-inject…
Hugging Face's smolagents library enables AI agents to generate and execute SQL queries against databases, using a code-based reasoning approach that allows error correction and verification. The agen…
Hugging Face released ML Intern, an open-source CLI agent that automates machine learning tasks such as fine-tuning models, exploring research papers, and launching GPU training jobs. The tool uses th…
Smolagents, a Python library from Hugging Face for building AI agents, prioritizes code-based actions over JSON tool calls, enabling loops, conditionals, and tool composition. However, this design shi…
A developer breaks down the five essential components of production-grade AI agents: planning, tool use, memory, constraints, and verification. The post argues that agent failures stem from workflow d…
HuggingFace's smolagents framework introduces CodeAgent, a code-writing agent that generates and executes Python in a sandboxed Jupyter kernel environment, replacing traditional tool-calling approache…