Claritypoint AI
No Result
View All Result
  • Login
  • Tech

    Biotech leaders: Macroeconomics, US policy shifts making M&A harder

    Funding crisis looms for European med tech

    Sila opens US factory to make silicon anodes for energy-dense EV batteries

    Telo raises $20 million to build tiny electric trucks for cities

    Do startups still need Silicon Valley? Leaders at SignalFire, Lago, and Revolution debate at TechCrunch Disrupt 2025

    OmniCore EyeMotion lets robots adapt to complex environments in real time, says ABB

    Auterion raises $130M to build drone swarms for defense

    Tim Chen has quietly become of one the most sought-after solo investors

    TechCrunch Disrupt 2025 ticket rates increase after just 4 days

    Trending Tags

  • AI News
  • Science
  • Security
  • Generative
  • Entertainment
  • Lifestyle
PRICING
SUBSCRIBE
  • Tech

    Biotech leaders: Macroeconomics, US policy shifts making M&A harder

    Funding crisis looms for European med tech

    Sila opens US factory to make silicon anodes for energy-dense EV batteries

    Telo raises $20 million to build tiny electric trucks for cities

    Do startups still need Silicon Valley? Leaders at SignalFire, Lago, and Revolution debate at TechCrunch Disrupt 2025

    OmniCore EyeMotion lets robots adapt to complex environments in real time, says ABB

    Auterion raises $130M to build drone swarms for defense

    Tim Chen has quietly become of one the most sought-after solo investors

    TechCrunch Disrupt 2025 ticket rates increase after just 4 days

    Trending Tags

  • AI News
  • Science
  • Security
  • Generative
  • Entertainment
  • Lifestyle
No Result
View All Result
Claritypoint AI
No Result
View All Result
Home AI News

This $30M startup built a dog crate-sized robot factory that learns by watching humans

Dale by Dale
September 25, 2025
Reading Time: 3 mins read
0

# Beyond the Black Box: The Critical Shift to Transparent AI Reasoning

RELATED POSTS

NICE tells docs to pay less for TAVR when possible

FDA clears Artrya’s Salix AI coronary plaque module

Medtronic expects Hugo robotic system to drive growth

For years, the power of Large Language Models (LLMs) has been matched only by their opacity. We treat them as computational oracles: we submit a prompt, and a remarkably coherent—and often correct—answer emerges. This “black box” paradigm has been sufficient for experimentation and simple applications, but as we move to deploy AI in mission-critical systems, it reveals a fundamental weakness. When an LLM fails, we’re often left guessing. Was the prompt confusing? Did the model hallucinate a fact? The inability to trace the source of an error is a major roadblock to building reliable, enterprise-grade AI.

Fortunately, a significant architectural shift is underway, moving us from opaque black boxes to transparent “glass boxes.” This new approach prioritizes verifiable, step-by-step reasoning, making the AI’s process as important as its final output. This isn’t about achieving full mechanistic interpretability of neural networks, but rather about designing systems where the model’s logical path is explicit and auditable.

Two key techniques are driving this transformation: Chain-of-Thought prompting and Tool Use.

—

### Articulated Reasoning: Chain-of-Thought

Chain-of-Thought (CoT) is a deceptively simple yet powerful technique. Instead of asking a model for just the final answer, we prompt it to “think out loud” by generating the intermediate reasoning steps it took to arrive at a conclusion.

ADVERTISEMENT

Consider a simple query: “If a project starts on May 5th and takes 20 working days, what is the completion date, assuming a standard Monday-Friday work week?”

A black box model might just output “June 1st,” and if it’s wrong, we have no idea why. A model using CoT, however, would produce a more transparent trace:

“`
1. Starting date: May 5th.
2. Count 20 working days, skipping weekends (Saturdays and Sundays).
3. Week 1: May 5-9 (5 days). Remaining: 15 days.
4. Week 2: May 12-16 (5 days). Remaining: 10 days.
5. Week 3: May 19-23 (5 days). Remaining: 5 days.
6. Week 4: May 26-30 (5 days). Remaining: 0 days.
7. The final working day is May 30th.
“`

Here, the model’s logic is laid bare. If it had made a mistake—say, by miscounting the days in a week or failing to skip a weekend—the error would be immediately obvious in the reasoning chain. This allows for rapid debugging and provides a clear audit trail of the model’s “thought” process, significantly increasing our confidence in its outputs.

### Decomposed Execution: Tool Use and Function Calling

While CoT illuminates a model’s internal reasoning, **Tool Use** (or Function Calling, as popularized by OpenAI’s API) externalizes it. This approach reframes the LLM not as an all-knowing oracle, but as a sophisticated reasoning engine that orchestrates external, deterministic tools.

Instead of trying to answer a complex, multi-faceted question in one go, the LLM breaks it down into a sequence of actions. For each action, it determines the appropriate tool to call—be it a database query, a web search API, a calculator, or an internal enterprise API—and formulates the precise input for that tool.

Imagine a user asking, “What is the total order value for our top customer this quarter, and what is their current support ticket status?”

A “glass box” agent would execute a clear, verifiable plan:

1. **Plan:** First, I need to identify the top customer. Then, I need to calculate their total order value for the quarter. Finally, I need to check their support ticket status.
2. **Tool Call 1:** `database.query(“SELECT customer_id, SUM(order_value) FROM orders WHERE quarter=’Q2′ GROUP BY customer_id ORDER BY SUM(order_value) DESC LIMIT 1”)`
3. **Observation 1:** `[{“customer_id”: “CUST-123”, “total_value”: 45000}]`
4. **Tool Call 2:** `support_system.get_ticket_status(customer_id=”CUST-123″)`
5. **Observation 2:** `{“status”: “Open”, “priority”: “High”}`
6. **Synthesis:** The LLM combines these discrete, factual pieces of information into a natural language response.

Each step in this chain is explicit and verifiable. If the final answer is wrong, we can pinpoint the failure. Was the SQL query malformed? Did the support system API return an error? This modularity transforms debugging from a guessing game into a systematic process.

—

### Conclusion: Building the Future of Reliable AI

The transition from black box to glass box architectures marks a crucial maturation of AI engineering. It reflects a move away from monolithic, unpredictable models toward composed systems that are auditable, debuggable, and ultimately, more trustworthy. By forcing LLMs to articulate their reasoning or execute a series of discrete, observable actions, we gain unprecedented visibility into their operational logic.

This transparency is not just a technical nicety; it is the foundation upon which we will build the next generation of complex AI agents. For applications in finance, logistics, and customer service—where accuracy and accountability are paramount—this verifiable approach isn’t just an option; it’s a necessity. We are finally moving beyond just asking *what* the model’s answer is, and focusing on the far more important question of *how* it got there.

This post is based on the original article at https://techcrunch.com/2025/09/16/this-30m-startup-built-a-dog-crate-sized-robot-factory-that-learns-by-watching-humans/.

Share219Tweet137Pin49
Dale

Dale

Related Posts

AI News

NICE tells docs to pay less for TAVR when possible

September 27, 2025
AI News

FDA clears Artrya’s Salix AI coronary plaque module

September 27, 2025
AI News

Medtronic expects Hugo robotic system to drive growth

September 27, 2025
AI News

Aclarion’s Nociscan nearly doubles spine surgery success

September 27, 2025
AI News

Torc collaborates with Edge Case to commercialize autonomous trucks

September 27, 2025
AI News

AMR experts weigh in on global challenges and opportunities for the industry

September 27, 2025
Next Post

Y Combinator-backed Rulebase wants to be the AI coworker for fintech

D-ID acquires Berlin-based video startup Simpleshow

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Recommended Stories

The Download: Google’s AI energy expenditure, and handing over DNA data to the police

September 7, 2025

Appointments and advancements for August 28, 2025

September 7, 2025

Ronovo Surgical’s Carina robot gains $67M boost, J&J collaboration

September 7, 2025

Popular Stories

  • Ronovo Surgical’s Carina robot gains $67M boost, J&J collaboration

    548 shares
    Share 219 Tweet 137
  • Awake’s new app requires heavy sleepers to complete tasks in order to turn off the alarm

    547 shares
    Share 219 Tweet 137
  • Appointments and advancements for August 28, 2025

    547 shares
    Share 219 Tweet 137
  • Medtronic expects Hugo robotic system to drive growth

    547 shares
    Share 219 Tweet 137
  • D-ID acquires Berlin-based video startup Simpleshow

    547 shares
    Share 219 Tweet 137
  • Home
Email Us: service@claritypoint.ai

© 2025 LLC - Premium Ai magazineJegtheme.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • Home
  • Subscription
  • Category
  • Landing Page
  • Buy JNews
  • Support Forum
  • Pre-sale Question
  • Contact Us

© 2025 LLC - Premium Ai magazineJegtheme.

Are you sure want to unlock this post?
Unlock left : 0
Are you sure want to cancel subscription?