• Business
  • Entertainment
  • Health
  • News
  • Sport
  • Tech
  • World
Newsy Today
news of today
Home - agents
Tag:

agents

Tech

How Slack Manages Context in Long-running Multi-agent Systems

by Chief Editor April 28, 2026
written by Chief Editor

Beyond the Chat Log: The Evolution of AI Memory

For a long time, the standard approach to maintaining “memory” in AI agents was simple: preserve a running log of the conversation. As the user and the AI exchanged messages, the system would simply feed the entire history back into the model with every new request. While this works for a quick Q&amp. A session, it fails spectacularly in complex, long-running enterprise workflows.

Beyond the Chat Log: The Evolution of AI Memory
Chat Critics The Evolution

The problem is the “context window”—the hard limit on how much information an LLM can process at once. When a session spans hundreds of requests and generates megabytes of output, the history doesn’t just fill the window; it degrades the quality of the responses. We are seeing a fundamental shift from linear chat logs to structured memory.

Did you know? Approaching an agent’s context window limit doesn’t just stop the AI from “remembering” the start of the chat—it can actually degrade the overall reasoning quality and accuracy of the responses.

The future of AI isn’t about larger context windows, but about smarter context management. By using distilled truth and structured summaries, agents can maintain coherence over vast amounts of data without getting “lost” in the noise of a raw transcript.

The Architecture of Truth: Why “Critics” are the New Essential

One of the most significant trends in multi-agent design is the separation of execution from validation. In traditional setups, a single agent is expected to find the answer and ensure We see correct. In more sophisticated systems, such as those implemented by Slack, a “coordinator/dispatcher” model is used.

In this model, specialized agents handle specific tasks, but a dedicated Critic agent acts as a truth filter. This is crucial because, as observed in complex AI deployments, expert findings “could either be invented or grossly misinterpret the data.”

How the Validation Loop Works

  • Expert Agents: Gather data and generate initial findings.
  • Critic Agents: Review summary reports and use evidence inspection tools to assign credibility scores.
  • Strict Guardrails: To prevent the Critic itself from hallucinating, it is narrowly instructed to “only craft a judgement on the submitted findings.”

This trend toward “adversarial” internal checks ensures that only corroborated, high-credibility information makes it into the final output, effectively scrubbing hallucinations before they reach the end user.

Slack Native Multi-Agent Todo System

Scaling Complex Workflows: The Coordinator-Dispatcher Model

As we move toward more autonomous AI “workforces,” the industry is moving away from monolithic agents toward a hierarchical structure. This is best exemplified by the use of a central coordinator that manages a team of experts and critics.

To keep this team aligned, the system requires a shared source of truth. Instead of sharing the whole chat history, these systems use complementary context channels to maintain a “common narrative.”

The three essential channels for long-term coherence:

  1. The Director’s Journal: A structured working memory containing decisions, hypotheses, and observations. This “provides the common narrative that keeps other agents on track.”
  2. The Critic’s Review: A credibility-weighted list of findings based on evidence.
  3. The Critic’s Timeline: A distilled, chronological narrative that resolves conflicts by preferring the strongest sources and removing duplicates.

By separating these streams, the Director can make strategic decisions, Experts can build on established understanding, and Critics can evaluate findings objectively—all without overloading the LLM’s memory.

Pro Tip: If you are building agentic workflows, stop passing the full history array to your LLM. Start implementing a “summary” or “state” object that is updated at the end of each turn. This reduces token costs and increases reliability.

The Future of Agentic Reasoning: Distilled Truth vs. Raw Data

The broader principle emerging here is the move toward distilled truth. In the next generation of AI applications, the goal will not be to provide the AI with all the data, but to provide it with the right structured summary.

The Future of Agentic Reasoning: Distilled Truth vs. Raw Data
Chat Slack

We can expect to see this evolve into dynamic memory systems that automatically prune irrelevant information and prioritize “high-credibility” nodes of information. This allows an AI application to handle megabytes of output and hundreds of requests while remaining as sharp and focused as it was during the first prompt.

For those interested in the technical implementation of these patterns, exploring Slack’s approach to agentic applications provides a blueprint for moving from simple chatbots to robust, long-running AI systems.

Frequently Asked Questions

What is a context window in AI?
The context window is the maximum amount of text (tokens) an LLM can process in a single request. Once this limit is reached, the model begins to “forget” earlier parts of the conversation or may experience a drop in reasoning quality.

How does structured memory differ from chat history?
Chat history is a raw, linear log of every message exchanged. Structured memory is a curated set of summaries, decisions, and validated facts (like a journal or timeline) that capture the essence of the conversation without the bulk.

What is a Critic agent?
A Critic agent is a specialized AI role designed to validate the work of other agents. It inspects evidence and assigns credibility scores to findings to filter out hallucinations and errors.


What do you think? Is the “Critic” model the best way to solve AI hallucinations, or should we be focusing on larger context windows? Let us know in the comments below or subscribe to our newsletter for more deep dives into the future of AI engineering!

April 28, 2026 0 comments
0 FacebookTwitterPinterestEmail
Tech

Stripe Engineers Deploy Minions, Autonomous Agents Producing Thousands of Pull Requests Weekly

by Chief Editor March 20, 2026
written by Chief Editor

Stripe’s ‘Minions’ Signal a Modern Era of AI-Powered Coding

Engineers at Stripe have quietly launched a revolution in software development: autonomous coding agents dubbed “Minions.” These aren’t the yellow, banana-loving creatures, but sophisticated AI systems capable of generating production-ready pull requests with minimal human intervention. The implications for developer productivity and the future of coding are significant.

From Concept to 1,300 Pull Requests a Week

The Minions project began as an internal fork of Goose, a coding agent developed by Block. Stripe customized Goose for its specific LLM infrastructure and refined it to meet the demands of a large-scale payment processing system. The results are impressive. Currently, Minions generate over 1,300 pull requests per week, a figure that has climbed from 1,000 during initial trials. Crucially, all changes are reviewed by human engineers, ensuring quality and security.

This isn’t about replacing developers; it’s about augmenting their capabilities. The Minions handle tasks like configuration adjustments, dependency upgrades, and minor refactoring – the often-tedious but essential function that can consume a significant portion of a developer’s time.

One-Shot Agents: A Different Approach to AI Coding

What sets Minions apart from popular AI coding assistants like GitHub Copilot or Cursor? Minions operate on a “one-shot” basis, completing end-to-end tasks from a single instruction. Tasks can originate from various sources – Slack threads, bug reports, or feature requests – and are then orchestrated using “blueprints.” These blueprints combine deterministic code with flexible agent loops, allowing the system to adapt to different requirements.

This contrasts with interactive tools that require constant human guidance. Minions are designed to take a task description and deliver a complete, tested, and documented solution, ready for review.

Handling Complexity at Scale: $1 Trillion in Payments

The stakes are high. The code managed by Minions supports over $1 trillion in annual payment volume at Stripe. This means reliability and correctness are paramount. The system operates within a complex web of dependencies, navigating financial regulations and compliance obligations. Stripe reinforces reliability through robust CI/CD pipelines, automated tests, and static analysis.

Did you recognize? Stripe’s Minions are not just theoretical; they are actively managing critical infrastructure for a global payments leader.

The Rise of Agent-Driven Software Development

Stripe’s Minions are part of a broader trend toward agent-driven software development. LLM-based agents are becoming increasingly integrated with development environments, version control systems, and CI/CD pipelines. This integration promises to dramatically increase developer productivity while maintaining strict quality controls.

The key to success, according to Stripe engineers, lies in carefully defining tasks and utilizing blueprints to guide the agents. Blueprints act as a framework, weaving together agent skills with deterministic code to ensure both efficiency and adaptability.

Future Trends: What’s Next for AI Coding Agents?

The success of Minions suggests several potential future trends:

  • Increased Task Complexity: As agents become more sophisticated, they will be able to handle increasingly complex tasks, potentially automating entire features or modules.
  • Self-Improving Agents: Agents may learn from their successes and failures, continuously improving their performance and reducing the need for human intervention.
  • Domain-Specific Agents: We can expect to see the development of specialized agents tailored to specific industries or programming languages.
  • Enhanced Blueprinting Tools: Tools for creating and managing blueprints will become more user-friendly and powerful, allowing developers to easily define and orchestrate complex tasks.

FAQ

Q: Will AI coding agents replace developers?
A: No, the current focus is on augmenting developer productivity, not replacing developers entirely. Human review remains a critical part of the process.

Q: What are “blueprints” in the context of Stripe’s Minions?
A: Blueprints are workflows defined in code that specify how tasks are divided into subtasks and handled by either deterministic routines or the agent.

Q: How does Stripe ensure the reliability of code generated by Minions?
A: Stripe uses CI/CD pipelines, automated tests, and static analysis to ensure generated changes meet engineering standards before human review.

Q: What types of tasks are Minions best suited for?
A: Minions perform best on well-defined tasks such as configuration adjustments, dependency upgrades, and minor refactoring.

Pro Tip: Explore the Stripe developer blog for more in-depth technical details about the Minions project: https://stripe.dev/blog/minions-stripes-one-shot-end-to-end-coding-agents

What are your thoughts on the future of AI-powered coding? Share your insights in the comments below!

March 20, 2026 0 comments
0 FacebookTwitterPinterestEmail
Tech

AWS Launches Strands Labs for Experimental AI Agent Projects

by Chief Editor March 12, 2026
written by Chief Editor

AWS Unveils Strands Labs: A Playground for the Future of AI Agents

Amazon Web Services (AWS) has launched Strands Labs, a new GitHub organization dedicated to experimental AI agent development. This move signals a significant investment in the rapidly evolving field of agentic AI, offering developers a sandbox to explore cutting-edge approaches beyond the constraints of production-ready software.

Robots Accept Center Stage: Bridging the Physical and Digital Worlds

A core focus of Strands Labs is robotics. The Strands Robots project aims to connect AI agents directly with physical hardware. This isn’t about remote control; it’s about agents that can perceive their environment, interpret instructions, and take action autonomously. Demonstrations showcase an agent controlling an SO-101 robotic arm using the NVIDIA GR00T model, a vision-language-action (VLA) model.

The integration with LeRobot further simplifies the process of interacting with robotics hardware and datasets. This combination allows developers to build agents capable of processing visual data, understanding commands, and performing physical tasks – a crucial step towards more versatile and adaptable robots.

Simulation as a Stepping Stone: The Power of Strands Robots Sim

Recognizing the challenges of working directly with physical robots, Strands Labs also offers Strands Robots Sim. This project provides a simulation environment where developers can test and refine their agents without the risks and costs associated with real-world hardware. The simulator supports environments from the Libero robotics benchmark and integrates VLA policies, allowing for iterative experimentation and debugging.

Pro Tip: Simulation environments are invaluable for rapid prototyping and testing different agent behaviors before deploying them to physical robots. This significantly reduces development time and potential damage to hardware.

AI Functions: A New Paradigm for Software Development

Beyond robotics, Strands Labs is exploring innovative approaches to software development itself. The AI Functions project introduces a novel concept: defining function behavior using natural language descriptions and validation conditions. The @ai_function decorator then triggers the Strands agent loop to generate code that meets the specified criteria.

This “specification-driven programming” approach represents a potential shift in how software is created, allowing developers to focus on *what* they want a function to do, rather than *how* to implement it. The system automatically retries if validation fails, ensuring the generated code meets the defined requirements. The framework can generate code that performs tasks like parsing files and data transformations, returning standard Python objects.

Community Response and Future Implications

The launch of Strands Labs has generated excitement within the AI development community. Clare Liguori, Senior Principal Engineer at AWS, described Strands Labs as “a playground for the next generation of ideas for AI agent development.” Others have highlighted the potential of AI Functions to revolutionize software development workflows.

Did you know? The Strands Agents SDK, upon which Strands Labs builds, has already been downloaded over 14 million times since its open-source release in May 2025, demonstrating strong developer interest in agentic AI.

FAQ

What is Strands Labs? Strands Labs is a new GitHub organization from AWS dedicated to experimental AI agent development.

What are the key projects in Strands Labs? The initial projects are Robots, Robots Sim, and AI Functions.

What is the NVIDIA GR00T model? GR00T is a vision-language-action (VLA) model used to control robots based on visual input and language instructions.

What is specification-driven programming? It’s an approach where developers define the desired behavior of a function using natural language and validation rules, and an AI agent generates the code to implement it.

Explore the projects and contribute to the future of agentic AI at Strands Labs on GitHub.

March 12, 2026 0 comments
0 FacebookTwitterPinterestEmail
Tech

Microsoft Open Sources Evals for Agent Interop Starter Kit to Benchmark Enterprise AI Agents

by Chief Editor February 27, 2026
written by Chief Editor

The Rise of Agent Interoperability: How Microsoft’s New Toolkit Signals the Future of AI

Microsoft’s recent release of Evals for Agent Interop isn’t just another developer tool; it’s a signpost pointing towards the next major evolution in artificial intelligence. The open-source starter kit is designed to aid organizations rigorously evaluate how well AI agents work together, a critical capability as businesses increasingly deploy multiple agents to automate complex tasks.

Beyond Individual Agent Performance: The Demand for Interoperability

For years, the focus in AI development has been on improving the performance of individual models. However, the real power of AI in enterprise settings lies in its ability to orchestrate a network of agents, each specializing in a specific function. These agents need to seamlessly hand off tasks, share information, and coordinate actions. Traditional testing methods, focused on isolated accuracy, simply aren’t equipped to assess this level of complexity.

As organizations build more autonomous agents powered by large language models, the challenges are growing. Agents behave probabilistically, integrate deeply with applications, and coordinate across tools, making isolated accuracy metrics insufficient for understanding real-world performance. What we have is why agent evaluation has turn into a critical discipline, particularly where agents impact business processes, compliance, and safety.

What Does Evals for Agent Interop Offer?

The starter kit provides a framework for systematic, reproducible evaluation. It includes curated scenarios, representative datasets, and an evaluation harness. Currently, the focus is on email and calendar interactions, but Microsoft plans to expand the kit with richer scoring capabilities and support for broader agent workflows. The kit utilizes templated, declarative evaluation specs (in JSON format) and measures signals like schema adherence and tool call correctness, alongside AI-powered assessments of qualities like coherence, and helpfulness.

A key component is the inclusion of a leaderboard, allowing organizations to benchmark their agents against “strawman” agents built using different stacks and model variants. This comparative insight helps identify failure modes early and develop informed decisions before widespread deployment.

The Architecture Behind the Scenes

The Evals for Agent Interop project is built on a three-part architecture: an API (backend) for managing test cases and agent evaluations, an Agent component serving as a reference implementation, and a Webapp (frontend) for creating, managing, and viewing results. It leverages Azure infrastructure, including Cosmos DB and Azure OpenAI, and can be deployed using a provided Bicep template. The kit is designed to be easily executed locally using Docker Compose.

Future Trends in Agent Evaluation

Microsoft’s initiative highlights several emerging trends in AI agent development:

  • Emphasis on Holistic Evaluation: The shift from evaluating individual models to assessing the performance of entire agent ecosystems.
  • The Rise of AI-Powered Judging: Utilizing AI models to evaluate the output of other AI models, providing scalable and consistent assessments.
  • Standardization of Evaluation Frameworks: The need for common benchmarks and metrics to facilitate comparison and progress in the field.
  • Increased Focus on Robustness and Resilience: Evaluating agents’ ability to handle unexpected inputs, errors, and changing conditions.
  • Integration with Enterprise Workflows: Testing agents in realistic scenarios that mirror actual business processes.

We can expect to observe more tools and platforms emerge that focus on these areas, enabling organizations to build and deploy AI agents with greater confidence and reliability.

Pro Tip

Don’t underestimate the importance of defining clear rubrics for evaluating agent performance. A well-defined rubric ensures consistency and objectivity in your assessments.

FAQ

Q: What is Evals for Agent Interop?
A: It’s an open-source starter kit from Microsoft designed to help evaluate how well AI agents work together.

Q: What platforms does it support?
A: Currently, it focuses on Microsoft 365 services like Email and Calendar, with plans to expand.

Q: Is it tough to get started?
A: The kit is designed to be simple to start with, and it can be deployed locally using Docker Compose.

Q: What is the leaderboard for?
A: The leaderboard allows organizations to compare the performance of their agents against others built using different technologies.

Q: What is the MCP server?
A: The MCP (Model Context Protocol) server is used for tool execution within the evaluation framework.

Did you know? Agent evaluation is becoming as vital as model training in the development of effective AI systems.

Ready to dive deeper into the world of AI agents? Explore the Evals for Agent Interop repository on GitHub and start evaluating your own agents today! Share your experiences and insights in the comments below.

February 27, 2026 0 comments
0 FacebookTwitterPinterestEmail
Sport

2026 CFL Free Agency: News & Updates

by Chief Editor February 10, 2026
written by Chief Editor

CFL Free Agency Frenzy: A Day of Deals and a Changing League Landscape

CFL free agency officially opened today and the flurry of activity signals a pivotal moment for several teams. Even as the initial hours saw a steady stream of announcements, the most significant development revolves around the B.C. Lions and linebacker Maxime Rouyer. Rouyer’s recent designation as a National player, granted through a special exception by the CFL, dramatically alters his value and potential career trajectory.

The Rouyer Rule: A Game Changer for Canadian Talent

The CFL’s decision to allow Rouyer to change his status from Global to National is unprecedented. This move, aligning him with other U Sports alumni, effectively opens up roster spots for Canadian players and provides teams with greater flexibility in meeting ratio requirements. It’s a clear indication the league is prioritizing the development and retention of Canadian talent.

Ottawa’s Defensive Overhaul: A Bold Strategy

The Ottawa Redblacks are making a statement early in free agency, aggressively bolstering their defence with signings like C.J. Reavis and Demerio Houston. Reavis, a two-time All-CFL player, represents a significant upgrade at the strongside linebacker position. Houston’s addition further strengthens a secondary that has struggled in recent seasons. The Redblacks appear determined to address defensive weaknesses and contend in the East Division.

Winnipeg’s Strategic Additions: Building on a Championship Foundation

The Winnipeg Blue Bombers, consistently a powerhouse in the CFL, are making calculated moves to maintain their competitive edge. The signings of Jarell Broxton, Tommy Nield, and Jovan Santos-Knox demonstrate a commitment to both bolstering the offensive line and adding depth to the linebacker corps. Winnipeg’s ability to attract established players speaks to the organization’s stability and championship culture.

Edmonton’s Offensive Rebuild: A New Era in the North?

The Edmonton Elks are undergoing a significant offensive overhaul, securing commitments from several players previously with the Hamilton Tiger-Cats, including Taylor Powell, Joe Robustelli, and Brendan O’Leary-Orange. This influx of talent suggests a deliberate effort to revitalize the Elks’ offence and provide a more dynamic attack.

Hamilton’s Focus on Canadian Content and Special Teams

The Hamilton Tiger-Cats are prioritizing Canadian talent and special teams prowess. The signings of Kene Onyeka and Fraser Masin reflect this strategy. Masin, the first overall pick in the 2023 Global Draft, adds depth to the punting game, while Onyeka provides potential depth on the defensive line.

The Impact of Legal Tampering and Financial Flexibility

The pre-free agency legal tampering window has develop into a crucial period for player negotiations. Increased revenue sharing and the strategic utilize of marketing money provide teams with greater financial flexibility, allowing them to compete for top free agents. This has led to a more active and competitive market, with many agreements reached before the official opening of free agency.

Pro Tip

Keep a close eye on teams that are actively addressing ratio requirements. Canadian players are becoming increasingly valuable, and teams will often prioritize signing them to maintain roster balance.

Did You Know?

The CFL’s salary cap has increased significantly in recent years, giving teams more resources to pursue free agents. This increased financial flexibility is contributing to a more competitive free agency market.

FAQ: CFL Free Agency

Q: What is the CFL’s legal tampering window?
A: It’s a period before official free agency opens where teams can negotiate with pending free agents.

Q: What is a “National” player in the CFL?
A: A player who is a Canadian citizen and meets specific criteria related to their football background.

Q: What is a “Global” player in the CFL?
A: A player who is not a Canadian citizen but is eligible to play in the CFL under specific rules.

Q: How does the CFL salary cap work?
A: The CFL has a salary cap that limits the amount of money teams can spend on player salaries. The cap amount varies each year.

Q: What is the significance of the ratio rule?
A: The ratio rule requires teams to have a certain number of Canadian players on the field at all times.

Stay tuned to 3DownNation for continued coverage of CFL free agency. We’ll provide in-depth analysis, breaking news, and expert insights throughout the day.

February 10, 2026 0 comments
0 FacebookTwitterPinterestEmail
Business

Next Moca Releases Agent Definition Language as an Open Source Specification

by Chief Editor February 9, 2026
written by Chief Editor

The Rise of Agent Definition Languages: A Fresh Standard for AI’s Future

The artificial intelligence landscape is rapidly evolving beyond simple chatbots and one-off prompts. We’re entering the era of AI agents – autonomous entities capable of reasoning, utilizing tools, accessing knowledge, and orchestrating complex workflows. But with this advancement comes a critical challenge: a lack of standardization. Every platform and team defines “agents” differently, leading to fragmentation and hindering scalability. Now, a new open-source standard, the Agent Definition Language (ADL), aims to solve this problem.

What is ADL and Why Does it Matter?

Developed by Next Moca and released under the Apache 2.0 license, ADL is essentially a blueprint for AI agents. It provides a vendor-neutral, declarative format for defining everything an agent *is* and *can do*. This includes its identity, purpose, the language model it uses, the tools it has access to, its permissions, how it accesses information (through Retrieval Augmented Generation or RAG), and even governance metadata like ownership and version history.

Think of it like this: OpenAPI defines APIs, allowing different systems to communicate seamlessly. ADL aims to do the same for AI agents. As Kiran Kashalkar, founder of Next Moca, puts it, ADL is “Think OpenAPI (Swagger) for agents.”

Addressing the Fragmentation Problem

Currently, agent definitions are often scattered across various formats – YAML files, code embedded configurations, proprietary JSON fields – making it difficult to understand an agent’s capabilities and boundaries. This lack of clarity poses significant challenges for security reviews, compliance, and reuse. ADL consolidates these definitions into a single, machine-readable format, enhancing inspectability and governance.

Pro Tip: A standardized definition layer like ADL allows for consistent validation in CI/CD pipelines, ensuring agents meet predefined standards before deployment.

How ADL Works: A Declarative Approach

ADL is a declarative language, meaning it focuses on *what* an agent should do, not *how* it should do it. It doesn’t define runtime behavior or agent-to-agent communication protocols. Instead, it provides a clear specification of the agent’s characteristics, allowing different platforms and frameworks to interpret and execute it.

This framework-agnostic approach is crucial for portability. Developers can define an agent once using ADL and then deploy it across various platforms without modification. This reduces vendor lock-in and promotes interoperability.

Beyond Definition: The Future of Agent Management

The release of ADL is just the beginning. The open-source nature of the project encourages community contributions and the development of an ecosystem of tools around the standard. This could include:

  • Editors: User-friendly interfaces for creating and managing ADL definitions.
  • Validators: Tools for ensuring ADL definitions are valid and conform to the specification.
  • Registries: Centralized repositories for storing and sharing ADL definitions.
  • Testing Tools: Automated tests for verifying agent behavior based on its ADL definition.

This ecosystem will streamline the entire agent lifecycle, from development and deployment to monitoring and maintenance.

ADL and Existing Technologies

ADL isn’t intended to replace existing technologies like A2A (agent-to-agent communication), MCP, OpenAPI, or workflow engines. Instead, it complements them. ADL defines the agent itself, while these other technologies handle communication, execution, and orchestration.

Did you know? ADL focuses on the “what” of an agent, while other technologies focus on the “how.”

Real-World Applications

The potential applications of ADL are vast. Consider these examples:

  • Customer Support: Defining agents that can handle specific customer inquiries, access knowledge bases, and escalate complex issues.
  • Fraud Detection: Creating agents that can analyze transactions, identify suspicious patterns, and flag potential fraud.
  • HR Automation: Developing agents that can automate tasks like onboarding, benefits administration, and employee inquiries.

In each of these scenarios, ADL provides a standardized way to define the agent’s capabilities, permissions, and governance policies.

Frequently Asked Questions (FAQ)

Q: Is ADL a runtime environment?
A: No, ADL is a definition language. It doesn’t execute code or manage agent workflows. It simply defines what an agent is and what it can do.

Q: Is ADL tied to a specific programming language?
A: No, ADL is model-agnostic and platform-agnostic. It’s based on JSON, a widely supported data format.

Q: How can I contribute to the ADL project?
A: The ADL repository on GitHub ([https://github.com/nextmoca/adl](https://github.com/nextmoca/adl)) provides contribution guidelines and a public roadmap.

Q: What are the benefits of using ADL?
A: Portability, auditability, vendor neutrality, and improved governance are key benefits.

The open-sourcing of ADL marks a significant step towards a more standardized and scalable future for AI agents. By providing a common language for defining these powerful entities, ADL empowers developers, enhances security, and unlocks new possibilities for innovation.

Explore the ADL project on GitHub: https://github.com/nextmoca/adl

February 9, 2026 0 comments
0 FacebookTwitterPinterestEmail
Tech

Google Supercharges Gemini 3 Flash with Agentic Vision

by Chief Editor February 6, 2026
written by Chief Editor

AI Just Got a New Pair of Eyes: How Agentic Vision Will Change Everything

For years, artificial intelligence has struggled with a surprisingly human task: truly seeing. AI models could identify objects in images, but lacked the ability to investigate, to zoom in on details, or to reason about what they were looking at. That’s changing with the introduction of Agentic Vision in Google’s Gemini 3 Flash, a capability that’s poised to redefine how AI interacts with the visual world.

From Static Glance to Active Investigation

Traditionally, AI models like Gemini processed images with a single, static look. Miss a crucial detail – a serial number, a subtle sign – and the AI was forced to guess. Agentic Vision flips this script. It transforms image understanding into an active process, treating vision as an investigation. Instead of simply receiving an image, Gemini 3 Flash now plans how to examine it.

This process relies on a “think -> act -> observe” loop. First, the model analyzes the user’s request and the image. Then, it generates and executes Python code to manipulate the image – cropping, zooming, annotating – and extract more information. Finally, the transformed image is added to the model’s context, allowing it to refine its understanding before providing an answer.

The Power of Code Execution: Solving the “Hard Problems”

The key to Agentic Vision’s success lies in its ability to execute code. This allows for incredibly precise inspection of images. For example, Gemini can now reliably count the digits on a hand, a task that has historically stumped AI systems. It achieves this by drawing bounding boxes and labels directly onto the image, a “visual scratchpad” that grounds its reasoning in pixel-perfect understanding.

Beyond object counting, code execution also enables visual arithmetic and data visualization. Complex, image-based math problems can be offloaded to Python and Matplotlib, reducing the likelihood of AI “hallucinations” – those confidently incorrect answers that plague many current systems. Google reports a 5-10% accuracy improvement on vision tasks across most benchmarks as a result of this approach.

Beyond Gemini: The Future of Agentic Vision

Google’s vision for Agentic Vision extends far beyond the current capabilities of Gemini 3 Flash. The roadmap includes making the process more implicit, so the AI automatically zooms and rotates images without explicit instructions. Adding tools like web search and reverse image search will further enhance the model’s ability to gather evidence and contextualize its understanding.

The implications are significant, particularly for robotics. As one Redditor noted, Agentic Vision could unlock visual reasoning for AI in physical robots, giving them a much richer understanding of their surroundings and enabling more sophisticated agentic capabilities. While ChatGPT has experimented with similar code execution features, it still struggles with tasks like counting fingers.

Agentic Vision is currently accessible through the Gemini API in Google AI Studio and Vertex AI, and is rolling out in the Gemini app’s Thinking mode.

Pro Tip

Experiment with the “Code Execution” setting in the AI Studio Playground to see Agentic Vision in action. Try posing complex image-based questions to Gemini 3 Flash and observe how it uses code to arrive at its answers.

FAQ

What is Agentic Vision?
Agentic Vision is a new capability in Gemini 3 Flash that allows the AI to actively investigate images by planning steps, manipulating the image, and using code to verify details.

How does Agentic Vision improve accuracy?
It improves accuracy by enabling fine-grained inspection of details and reducing hallucinations through code execution and visual arithmetic.

Is Agentic Vision available now?
Yes, it’s accessible through the Gemini API in Google AI Studio and Vertex AI, and is rolling out in the Gemini app.

Will Agentic Vision be available in other Gemini models?
Google plans to extend support to other models in the Gemini family beyond Flash.

What are the potential applications of Agentic Vision?
Potential applications include robotics, image analysis, and any task requiring detailed visual understanding.

Did you know? Agentic Vision allows Gemini 3 Flash to not just *see* an image, but to actively *investigate* it, leading to more accurate and reliable results.

Want to learn more about the latest advancements in AI? Explore our other articles or subscribe to our newsletter for regular updates.

February 6, 2026 0 comments
0 FacebookTwitterPinterestEmail
World

Trump immigration crackdown: Border chief signals agent drawdown in Minneapolis

by Chief Editor January 30, 2026
written by Chief Editor

Federal Crackdown in Minneapolis: A Turning Point for Immigration Enforcement?

The recent deployment of over 3,000 federal agents to Minneapolis, dubbed “Operation Metro Surge,” and the subsequent political fallout, signals a potentially significant shift in the approach to immigration enforcement within the United States. Minneapolis Mayor Jacob Frey’s stark description of the situation as an “invasion” and claims of constitutional rights being “trampled” highlight the deep tensions at play. This isn’t simply a local issue; it’s a flashpoint in a national debate about federal overreach, community trust, and the future of immigration policy.

The Power Struggle Within the Trump Administration

The situation is complicated by internal power dynamics within the Trump administration. The sidelining of Homeland Security chief Kristi Noem, with direct control of immigration operations handed to Tom Homan, a more hardline figure, demonstrates a clear desire for tighter control and a more aggressive stance. This move, coupled with President Trump’s continued attacks on Representative Ilhan Omar, suggests a strategy that intertwines immigration enforcement with political messaging. A recent report by the American Civil Liberties Union (ACLU) details a pattern of politically motivated deployments of federal agents in cities with large minority populations.

Homan’s initial conciliatory tone – emphasizing “community safety” and acknowledging the need for “improvements” – represents a calculated attempt to de-escalate tensions. However, his insistence on increased cooperation from Minnesota authorities, specifically regarding the notification of ICE about the release of incarcerated migrants, reveals the core objective: expanding ICE’s reach and detention capabilities. This echoes a broader national trend of ICE seeking greater access to local law enforcement databases, a practice fiercely opposed by many sanctuary cities.

The Congressional Standoff and Funding Implications

The political battle has escalated to Congress, with a potential government shutdown looming. Senate Democrats’ rejection of a procedural vote, fueled by outrage over the shootings of two protesters, underscores the high stakes. Their demand for “guardrails” on ICE funding reflects a growing movement to limit the agency’s power and ensure accountability. This mirrors similar legislative efforts in states like California and Illinois, where laws have been passed to restrict cooperation with ICE.

The current impasse highlights a fundamental disagreement about the role of federal immigration enforcement. Democrats are pushing for policies that prioritize due process and community safety, while Republicans generally favor a more aggressive approach focused on border security and deportation. The outcome of this standoff will likely shape the future of immigration policy for years to come.

Beyond Minneapolis: A National Trend?

The events in Minneapolis are not isolated. Similar deployments of federal agents to other cities, including Portland and Chicago, have sparked protests and accusations of federal overreach. These actions raise critical questions about the limits of federal power and the potential for abuse. A 2020 report by the Human Rights Watch documented instances of federal agents using excessive force against protesters in Portland, further fueling concerns about the militarization of law enforcement.

Did you know? The number of ICE detentions has fluctuated significantly in recent years, but remains historically high. According to ICE data, the average daily detainee population in fiscal year 2023 was over 34,000.

The increasing reliance on “Operation Metro Surge”-style deployments suggests a shift towards a more proactive and visible form of immigration enforcement. This approach, while intended to deter crime and deport undocumented immigrants, risks alienating communities and eroding trust in law enforcement. The long-term consequences of this strategy remain to be seen.

The Future of ICE and Local Cooperation

The success of Homan’s “drawdown plan” hinges on increased cooperation from Minnesota authorities. However, many local officials are reluctant to share information with ICE, fearing that it will lead to the deportation of law-abiding residents and undermine community safety. This tension between federal and local authorities is likely to continue, creating a complex and challenging landscape for immigration enforcement.

Pro Tip: Understanding the legal rights of immigrants is crucial. Resources like ImmigrationLawHelp.org provide access to free or low-cost legal assistance.

The future of ICE may also be in question. Calls for the agency to be abolished or significantly reformed have grown in recent years, fueled by concerns about its aggressive tactics and lack of accountability. While a complete overhaul of ICE is unlikely in the near future, the agency will likely face increasing scrutiny and pressure to adopt more humane and effective policies.

FAQ

Q: What is “Operation Metro Surge”?
A: It’s a federal operation deploying over 3,000 agents to Minneapolis to focus on immigration enforcement and public safety.

Q: Why is there a political battle over ICE funding?
A: Democrats are seeking to impose restrictions on ICE’s power and ensure greater accountability, while Republicans generally support a more aggressive approach to immigration enforcement.

Q: What are the concerns about federal overreach?
A: Critics argue that the deployment of federal agents to cities without the consent of local authorities undermines community trust and violates constitutional rights.

Q: What is the role of Tom Homan in this situation?
A: He was appointed by President Trump to take direct control of immigration operations in Minnesota, effectively sidelining the Homeland Security chief.

Reader Question: “Will these federal deployments become more common?”

A: It’s highly probable. The current administration has demonstrated a willingness to use these tactics, and if the political climate remains polarized, we can expect to see similar deployments in other cities.

Explore more articles on immigration policy and federal-state relations to deepen your understanding of these complex issues. Subscribe to our newsletter for the latest updates and analysis.

January 30, 2026 0 comments
0 FacebookTwitterPinterestEmail
Tech

Toad: A Unified CLI Tool for All Your LLMs That Promises Improved UX From Existing Ones

by Chief Editor December 22, 2025
written by Chief Editor

The Rise of the Terminal as Your AI Coding Command Center

For years, the terminal has been the domain of developers, a powerful but often intimidating interface. Now, thanks to tools like Toad, created by Will McGugan (the mind behind Rich and Textual), it’s poised to become the central hub for AI-assisted coding. Toad isn’t just another CLI tool; it’s a unified GUI for multiple coding agents, accessible directly within your terminal, leveraging the Agent Communication Protocol (ACP) for seamless integration.

Why the Terminal is Making a Comeback

McGugan’s work stems from a belief that the current AI tooling landscape often suffers from poor user experience. He argues that many AI companies haven’t prioritized building intuitive interfaces, relying instead on technology stacks that lack the necessary building blocks for usability. This is a valid point. A recent Stack Overflow Developer Survey (https://survey.stackoverflow.co/2023/) showed that while AI tools are gaining traction, usability remains a significant barrier to widespread adoption. Developers want power, but they also want efficiency and a comfortable workflow.

Toad addresses this by providing a single, visually appealing interface for tools like OpenHands, Claude Code, and Gemini CLI. Instead of juggling multiple command-line interfaces, developers can access them all through Toad, streamlining their workflow.

Pro Tip: The ACP protocol is key here. It’s a standardized way for AI agents to communicate, meaning Toad can easily integrate new tools as they emerge, future-proofing your workflow.

Beyond Simple Integration: UX Innovations

Toad isn’t just about consolidating tools; it’s about enhancing the terminal experience. Features like the “@” convention for fuzzy file searching (respecting .gitignore) and a fully-featured prompt editor with Markdown highlighting are game-changers. These aren’t just cosmetic improvements; they directly address common pain points in terminal-based coding.

The efficient streaming of Markdown responses is another crucial element. Many existing terminal AI tools struggle with rendering complex Markdown, often falling back to plain text. Toad’s ability to handle tables and syntax highlighting in real-time makes the output much more readable and useful. This is particularly important for tasks like code generation and documentation review.

Shell Integration and the Jupyter Notebook Influence

Toad understands that developers are deeply ingrained in their shell environments. The “!” prefix for inline commands and tab completion semantics that mirror existing shells demonstrate a commitment to respecting established workflows. This isn’t about replacing the shell; it’s about augmenting it with AI capabilities.

The influence of Jupyter Notebooks is also apparent. The ability to navigate conversation history, reuse prompts, and export content as SVG hints at a future where the terminal becomes a more interactive and exploratory coding environment. This aligns with a broader trend towards more visual and collaborative coding experiences.

Did you know? The open-source nature of Toad (AGPL 3.0 license) means the community can contribute to its development and tailor it to their specific needs.

The Future of AI-Assisted Coding: Trends to Watch

Toad is a sign of things to come. Here are some key trends we can expect to see in the AI-assisted coding space:

  • Increased Terminal Integration: More tools will focus on enhancing the terminal experience, rather than trying to replace it.
  • Standardized Agent Communication: Protocols like ACP will become increasingly important for interoperability between different AI agents.
  • Enhanced UX for CLIs: Expect to see more CLIs with features like Markdown rendering, fuzzy searching, and interactive prompts.
  • Notebook-Inspired Environments: The terminal will evolve into a more interactive and exploratory coding environment, borrowing concepts from Jupyter Notebooks.
  • Personalized AI Assistants: AI agents will become more personalized, learning from your coding style and preferences.

Getting Started with Toad

Installation is straightforward:

curl -fsSL batrachian.ai/install | sh

Or, using UV:

uv tool install -U batrachian-toad --python 3.14

You can find more information and contribute to the project on batrachian.ai and the Toad repository.

FAQ

What is the Agent Communication Protocol (ACP)?
ACP is a standardized way for AI agents to communicate, allowing tools like Toad to integrate with them seamlessly.
Is Toad suitable for beginners?
While a basic understanding of the terminal is helpful, Toad aims to make AI-assisted coding more accessible to developers of all levels.
Is Toad free to use?
Yes, Toad is open-source and released under the AGPL 3.0 license.
How can I contribute to Toad’s development?
You can contribute by submitting bug reports, feature requests, or code contributions on the Toad GitHub repository.

Ready to supercharge your coding workflow? Explore Toad and join the growing community of developers embracing the power of the AI-enhanced terminal. Share your experiences and let us know how you’re using Toad in the comments below!

December 22, 2025 0 comments
0 FacebookTwitterPinterestEmail
Business

Fannie Mae and Freddie Mac focus of privatization debate

by Chief Editor June 22, 2025
written by Chief Editor

The Future of Fannie Mae and Freddie Mac: Navigating the Shifting Sands of Housing Finance

The landscape of American homeownership is perpetually in flux, and at the heart of this dynamic are Fannie Mae and Freddie Mac. These government-sponsored enterprises (GSEs) are critical cogs in the mortgage machine, and their future is a subject of intense debate. As the current administration explores pathways toward potential privatization, understanding the potential impact on homebuyers, investors, and the broader economy is more crucial than ever.

The GSEs: Pillars of the Mortgage Market

Fannie Mae and Freddie Mac were established by Congress to inject liquidity and stability into the mortgage market. They purchase mortgages from lenders, bundle them into securities, and sell them to investors. This model allows lenders to replenish their capital and issue new mortgages, making the 30-year fixed-rate mortgage a standard fixture in American homeownership. These agencies back a massive amount of the U.S. mortgage market – almost half of all outstanding loans.

During the 2008 financial crisis, the GSEs faced immense challenges and were placed under government conservatorship. The government injected billions to keep them afloat. Since then, they’ve generated significant returns for the Treasury. This has fuelled an ongoing debate about their ultimate fate: should they be privatized, remain under government control, or adopt a hybrid model? The decisions made today will influence mortgage rates, home prices, and the overall accessibility of homeownership for future generations.

Did you know? The Federal Housing Finance Agency (FHFA) currently oversees both Fannie Mae and Freddie Mac. It determines the standards for mortgage lending and sets capital requirements.

Potential Privatization: What Could It Mean?

Talk of privatization has resurfaced with renewed intensity. Proponents argue that privatization could stimulate innovation in the mortgage market. Freed from government constraints, the GSEs might develop more flexible mortgage products. It could also reduce taxpayer risk and potentially lead to greater efficiency. However, the shift isn’t without its risks.

Critics warn that privatization could increase borrowing costs for homebuyers. Without an implicit government guarantee, investors might demand higher yields on mortgage-backed securities. This could translate into higher interest rates on mortgages, potentially making homeownership less attainable, especially for first-time buyers or those with lower incomes.

Pro Tip: Stay informed about changes in the mortgage market. Follow reputable news sources, such as the FHFA and industry publications, to understand how policy shifts could affect you.

Impact on Homebuyers and the Housing Market

The future of Fannie Mae and Freddie Mac directly impacts homebuyers. The changes could ripple through the housing market, potentially leading to higher interest rates, tighter lending standards, and less availability of certain loan products. In a world of rising interest rates, this would make buying a home more expensive.

Consider a scenario where mortgage rates increase by even a modest percentage point. The monthly payment on a $300,000 mortgage could increase significantly. This translates to thousands of dollars in extra costs over the life of the loan. This increased financial burden could push potential homebuyers out of the market, especially in high-cost areas.

Exploring Alternative Models: The Hybrid Approach

Recognizing the complex implications of full privatization, some industry stakeholders are advocating for a hybrid model. This approach involves maintaining a degree of government oversight and support while giving the GSEs greater operational autonomy. This could balance the benefits of market competition and innovation with the stability of a government safety net.

The Mortgage Bankers Association (MBA) is one prominent advocate for a hybrid model. They believe it is crucial to preserve investor confidence and market liquidity while avoiding placing the full weight of the mortgage system on the government’s shoulders. This balanced approach could help mitigate the risks associated with both full privatization and continued government conservatorship.

Looking Ahead: What Homeowners Need to Know

Homeowners and prospective buyers should stay informed about the ongoing developments regarding Fannie Mae and Freddie Mac. The housing finance landscape is constantly evolving, and staying ahead of the curve is crucial for making informed financial decisions.

Here are some key takeaways:

  • Monitor Interest Rates: Keep a close eye on prevailing mortgage rates. Compare rates from various lenders to find the best deal.
  • Understand Loan Options: Explore different mortgage products, such as adjustable-rate mortgages (ARMs), to see if they fit your financial situation.
  • Seek Professional Advice: Consult with a mortgage broker or financial advisor who can provide personalized guidance and help you navigate the complexities of the mortgage market.

Frequently Asked Questions (FAQ)

Here are some answers to common questions about Fannie Mae and Freddie Mac:

  1. What are Fannie Mae and Freddie Mac? They are government-sponsored enterprises that facilitate the mortgage market by purchasing and guaranteeing mortgages.
  2. What is privatization? It refers to the process of transferring ownership of Fannie Mae and Freddie Mac from government control to private investors.
  3. What are the potential impacts of privatization? Potential impacts could include higher mortgage rates, changes in lending standards, and increased market volatility.
  4. What is a hybrid model? A hybrid model aims to combine government oversight and support with greater operational autonomy for the GSEs.
  5. How can I stay informed? Follow financial news from reputable sources, such as Bloomberg, The Wall Street Journal, and industry-specific publications.

The future of Fannie Mae and Freddie Mac is complex. It’s a story with many chapters still to be written. By understanding the key players, potential outcomes, and the ongoing debate, you can better navigate the evolving landscape of housing finance. Keep informed, do your research, and make informed decisions to secure your financial future.

If you found this article helpful, share your thoughts in the comments below. What are your biggest concerns about the future of the mortgage market? Also, don’t forget to subscribe to our newsletter for more insights and updates on the housing market and finance!

June 22, 2025 0 comments
0 FacebookTwitterPinterestEmail
Newer Posts
Older Posts

Recent Posts

  • Turkey Issues Yellow Weather Alerts for 10 Provinces Due to Heavy Rain

    May 18, 2026
  • Endangered Tree Kangaroos are Starring in Viral Crunch Videos

    May 18, 2026
  • Trump Warns Iran Time Is Running Out Amid UAE Nuclear Plant Drone Attack

    May 18, 2026
  • Britain’s deep political divides were plain to see on the streets of London this weekend – The Irish Times

    May 18, 2026
  • Pork Prices in Latvia Rise in March Amid EU Market Trends

    May 18, 2026

Popular Posts

  • 1

    Maya Jama flaunts her taut midriff in a white crop top and denim jeans during holiday as she shares New York pub crawl story

    April 5, 2025
  • 2

    Saar-Unternehmen hoffen auf tiefgreifende Reformen

    March 26, 2025
  • 3

    Marta Daddato: vita e racconti tra YouTube e podcast

    April 7, 2025
  • 4

    Unlocking Success: Why the FPÖ Could Outperform Projections and Transform Austria’s Political Landscape

    April 26, 2025
  • 5

    Mecimapro Apologizes for DAY6 Concert Chaos: Understanding the Controversy

    May 6, 2025

Follow Me

Follow Me
  • Cookie Policy
  • CORRECTIONS POLICY
  • PRIVACY POLICY
  • TERMS OF SERVICE

Hosted by Byohosting – Most Recommended Web Hosting – for complains, abuse, advertising contact: o f f i c e @byohosting.com


Back To Top
Newsy Today
  • Business
  • Entertainment
  • Health
  • News
  • Sport
  • Tech
  • World