PyData · Published 2026-08-25

Demystifying Agentic AI Using Small Language Models [PyCon DE & PyData 2026]

Open on YouTube ↗

Summary

Overview

  • Speaker: Serhii Sokolenko
  • Channel: PyData
  • Main topic: Agentic AI Using Small Language Models
  • Purpose: To educate developers and data scientists on how to build, run, and evaluate agentic AI applications locally and cost-effectively using Small Language Models. The presentation demystifies agentic AI by demonstrating how small language models (SLMs), such as Salesforce xLAM-2 (32B), can effectively replace large language models for agentic workflows and tool-calling tasks at a lower cost, with enhanced privacy, and on local consumer hardware. The talk covers the evolution of LLMs into decisioning engines, the core capabilities required for agentic workflows, a comparison between SLMs and LLMs using benchmark leaderboards (like Berkeley Function Calling Leaderboard), and practical setup and deployment using local runtimes like llama.cpp and Tower.

Topic Map

Introduction & Motivation: The Agentic AI Hype

  • Explanation: Introduction of the speaker, company Tower.dev, and the current hype around agentic AI (salesforce Agentforce, Postman, Satya Nadella quotes).
  • Key claims:
    • AI agents are becoming the primary way of interacting with computers.
    • Developers need to 'get their hands dirty' and test ideas on laptops using small language models.
  • Examples:
    • Historical Gold Rush vs. AI Agent Gold Rush
  • Terminology:
    • Agentic AI
    • Small Language Models (SLMs)
  • Why it matters: Sets the stage for moving beyond LLM hype into practical local experimentation.

How LLMs Became Decisioning Engines

  • Explanation: The progression from GPT-3 era training data containing reasoning-like patterns to Chain-of-Thought prompting and intermediate reasoning steps.
  • Key claims:
    • LLMs and SLMs contain reasoning patterns from their training data.
    • Chain-of-thought prompting injects intermediate reasoning steps into the model's generation loop.
  • Examples:
    • Stack Overflow, code tutorials, forum answers
  • Terminology:
    • Chain-of-Thought Prompting
    • Decisioning Engines
    • Reasoning Loops
  • Why it matters: Explains the underlying mechanism that transforms a next-token predictor into an autonomous agent.

Small vs. Large Language Models for Agentic Workflows

  • Explanation: Comparing SLMs and LLMs on parameter count, memory requirements, strengths, and weaknesses.
  • Key claims:
    • LLMs are an overkill for agentic reasoning because they contain irrelevant knowledge and expensive inference.
    • SLMs (<30B parameters) fit into consumer-grade GPU memory, offering better privacy, lower cost, and local experimentation capabilities.
  • Examples:
    • Using a sledgehammer to crack a walnut
  • Terminology:
    • SLM
    • LLM
    • Quantization
    • Inference Cost
  • Why it matters: Justifies the use of smaller models specifically for agentic tasks.

Important Capabilities for Agents & Benchmark Evaluation

  • Explanation: Detailed breakdown of the 4 key capabilities required for agentic workflows (reasoning, tool calling, code generation, instruction following) and review of Berkeley Function Calling Leaderboard (BFCL).
  • Key claims:
    • SLMs of size ~32B are now as accurate on agentic tasks as LLMs 10x their size.
    • Open-source SLMs like Salesforce xLAM-2 (32B) rank competitively with proprietary models on function calling.
  • Examples:
    • Berkeley Function Calling Leaderboard V4
  • Terminology:
    • Tool Calling
    • Parameter Passing
    • Function Calling (FC)
    • BFCL
  • Why it matters: Provides empirical proof from benchmarks that SLMs are viable for production agentic workflows.

Experimentation Setup & Demo

  • Explanation: Walkthrough of the exact technical stack needed for local and cloud experimentation: SLMs, local inference servers, Python runtimes, and agentic frameworks.
  • Key claims:
    • Local experimentation is feasible using llama.cpp with 4-bit quantization on Apple Silicon.
    • Tower runtime allows easy packaging, local testing, and cloud deployment of Python-native data pipelines and agents.
  • Examples:
    • Building a stock price data agent using Claude Code, LangChain, Apache Iceberg, and llama.cpp
  • Terminology:
    • llama.cpp
    • Tower
    • LangChain
    • Apache Iceberg
    • Model Context Protocol (MCP)
  • Why it matters: Gives developers a concrete blueprint to start building and deploying agents immediately.

Key Points

LLMs are an overkill for agentic reasoning

  • Explanation: Large language models contain excessive compressed world knowledge that is irrelevant for specific tool-calling and reasoning loops, making inference slow and expensive.
  • Evidence: Comparison of general knowledge vs. task-specific agent requirements.
  • Practical implication: Switching to SLMs drastically reduces cloud infrastructure costs and data privacy risks.

Small models can match large model performance on agentic tasks

  • Explanation: Recent benchmarks like BFCL show that open-source 32B SLMs achieve accuracy comparable to 100B+ proprietary models when evaluated specifically on tool calling and reasoning.
  • Evidence: Berkeley Function Calling Leaderboard rankings showing Salesforce xLAM-2 (32B) near top proprietary models.
  • Practical implication: Developers can run high-performing agentic apps locally without depending on costly external APIs.

Business rules replace rigid data pipelines for agents

  • Explanation: Agentic workflows replace traditional Airflow DAGs with natural language business rules and guardrails, allowing agents to dynamically choose tools based on context.
  • Evidence: Prompt examples contrasting deterministic DAGs with conditional rules (e.g., check database cache before calling external API).
  • Practical implication: More flexible data ingestion and processing systems that handle free-form requests.

Frameworks, Models & Processes

Agentic Reasoning & Tool Calling Loop

  • How it works: The user prompt goes to the LLM/SLM, which enters a reasoning loop to break down the task, selects appropriate tools (APIs, databases), executes them, and continues until a final answer token is produced.
  • Components:
    • Prompt
    • Reasoning Loop
    • Tools (APIs, Analytical/Operational DBs)
    • Final Answer
    • Memory
  • When to use: When building autonomous agents that need to interact with external systems to answer complex queries.

Local Agent Experimentation Stack

  • How it works: A modular stack combining an open-source quantized SLM, a local inference server, a Python runtime, and an agent framework.
  • Components:
    • SLM (Salesforce xLAM-2 32B)
    • Local inference server (llama.cpp)
    • Python runtime service (Tower)
    • Agentic Framework (LangChain)
  • When to use: For local development, testing, and production deployment of cost-effective agents.

Examples & Case Studies

New York lawyers submitted a legal brief generated entirely by ChatGPT containing hallucinated case citations.

  • Illustrates: The danger of using LLMs without access to real structured business data and proper grounding.
  • Lesson: Agents need access to reliable data sources (like Apache Iceberg lakehouses) and cached business data rather than relying solely on parametric model memory.

Building a stock price data agent using Claude Code and Tower, querying Yahoo Finance or Apache Iceberg lakehouse based on business rules.

  • Illustrates: The practical creation and deployment of an agentic app using Python, LangChain, and MCP.
  • Lesson: Agents can make intelligent decisions on whether to fetch data from local caches or external APIs based on explicit system prompt instructions.

Actionable Takeaways

  • Immediate:
    • Install llama.cpp and test serving an SLM like Salesforce xLAM-2 locally.
    • Use LangChain for writing agentic workflows with tool calling.
    • Incorporate business rules and guardrails instead of rigid DAGs.
  • Strategic:
    • Leverage Small Language Models for agentic workloads to cut inference costs and ensure data privacy.
    • Pair inference engines with data lakehouses like Apache Iceberg to prevent hallucinations and ground agent decisions in real business data.
    • Transition from traditional ETL pipelines to agentic data workflows.
  • Questions to investigate:
    • How do infinite looping issues in agentic reasoning get mitigated effectively?
    • What are the latency tradeoffs between local quantized SLMs and cloud-hosted large models in high-concurrency production environments?

Claims Worth Verifying

  • SLMs with ~32B parameters and 4-bit quantization can fit into 16GB-32GB RAM/VRAM on consumer hardware. (technical hardware claim)
  • Salesforce xLAM-2 (32B) scores comparably to GPT-4 on tool calling and function calling benchmarks. (benchmark performance claim)

Notable Quotes

"AI agents will become the primary way we interact with computers in the future. They will be able to understand our needs and preferences, and proactively help us with tasks and decision making." "More human than human is our motto." "An entity that perceives its environment, makes decisions, and takes actions to achieve goals." "I'm gonna have to science the shit out of this."

Compressed Summary

  • SLMs (<30B parameters) match LLM performance on agentic workflows and tool calling while being vastly cheaper and runnable locally.
  • Chain-of-thought prompting turned language models into decisioning engines by incorporating intermediate reasoning steps.
  • Effective agentic workflows require strong reasoning, tool calling, code generation, and instruction following capabilities.
  • Pairing SLMs with local inference servers (llama.cpp) and data lakehouses (Apache Iceberg) enables privacy, cost reduction, and factual grounding.
  • Keywords: agentic ai, small language models, function calling, llama.cpp, apache iceberg, langchain
  • Core insight: Small language models are sufficiently powerful, flexible, and economical to replace large models for agentic workflows and tool-calling applications.

Core insights

6
Empirical Resulthigh noveltymoderate evidence

For agentic workflows, model size is no longer a reliable proxy for capability: open-source SLMs of roughly 32B parameters can match LLMs ten times their size on tool-calling benchmarks such as the Berkeley Function Calling Leaderboard.

Why it matters

Model selection for agents can shift from 'largest available model' to 'smallest model that passes an agentic benchmark', which directly enables local, private, and cheaper deployments without sacrificing task accuracy.

Generalization

Any capability that can be isolated and benchmarked (function calling, tool selection, parameter passing) can become a sizing criterion; general-purpose intelligence metrics are insufficient for system design.

SLMs of size ~32B are now as accurate on agentic tasks as LLMs 10x their size.
Open source video
Open-source SLMs like Salesforce xLAM-2 (32B) rank competitively with proprietary models on function calling.
Open source video
Mental Modelmedium noveltymoderate evidence

An LLM or SLM becomes an autonomous agent not by accumulating knowledge but by running a decisioning loop in which chain-of-thought prompting injects intermediate reasoning steps between the user prompt, tool execution, and final answer.

Why it matters

It reframes the model as a reasoning-and-tool-orchestration engine rather than a knowledge database, changing what we optimize: context, tool availability, and loop structure matter more than encyclopedic knowledge.

Generalization

When building agent harnesses, engineering effort should go into the reasoning loop and tools, not into selecting a model solely for its broad factual recall.

Chain-of-thought prompting injects intermediate reasoning steps into the model's generation loop.
Open source video
The progression from GPT-3 era training data containing reasoning-like patterns to Chain-of-Thought prompting and intermediate reasoning steps.
Open source video
Tradeoffmedium noveltymoderate evidence

Extra parameters in large models can be a liability rather than an asset for agentic reasoning: irrelevant world knowledge and expensive inference make LLMs 'overkill', while SLMs under ~30B parameters fit consumer GPU memory and provide better privacy, lower cost, and local experimentation.

Why it matters

It turns cost and privacy from deployment concerns into architectural selection criteria, making SLMs the default for closed-loop tool-calling agents unless a specific task demands broad world knowledge.

Generalization

Benchmarking a workload's required capability lets teams choose the smallest sufficient model, avoiding penalties for unneeded parametric knowledge.

LLMs are an overkill for agentic reasoning because they contain irrelevant knowledge and expensive inference.
Open source video
SLMs (<30B parameters) fit into consumer-grade GPU memory, offering better privacy, lower cost, and local experimentation capabilities.
Open source video
Architecturehigh noveltymoderate evidence

Agentic orchestration can replace deterministic data pipelines (Airflow DAGs) with natural-language business rules and guardrails, letting agents dynamically choose tools based on context rather than following a fixed execution graph.

Why it matters

This moves the control plane of data engineering from scheduling logic to policy expression, forcing a redesign of orchestration runtimes, observability, and guardrail mechanisms.

Generalization

Any domain with rigid workflows can be re-expressed as a policy-driven agent loop, provided the tool surface and guardrails are explicit enough to preserve reliability.

Agentic workflows replace traditional Airflow DAGs with natural language business rules and guardrails, allowing agents to dynamically choose tools based on context.
Open source video
Practicemedium noveltystrong evidence

A practical local agent stack is now possible: an open-source 32B SLM running under 4-bit quantization in llama.cpp on Apple Silicon, wrapped in a Python runtime, and connected through an agent framework to external data tools.

Why it matters

Developers can iterate on agentic systems locally without exposing sensitive data or incurring API costs, and then package the same runtime for cloud deployment, collapsing the experimentation-to-production gap.

Generalization

With quantization and local inference runtimes, model-hosting decisions become part of the software engineering stack rather than a fixed external dependency.

Local experimentation is feasible using llama.cpp with 4-bit quantization on Apple Silicon.
Open source video
Tower runtime allows easy packaging, local testing, and cloud deployment of Python-native data pipelines and agents.
Open source video
Failure Modemedium noveltymoderate evidence

Without grounding to authoritative structured data and caching, an otherwise capable LLM agent can fabricate confidently wrong output, as seen in the legal-brief hallucination case.

Why it matters

Agent reliability is not solved by model choice alone; production agents must be architecturally connected to trusted data stores (e.g., Apache Iceberg lakehouses) and computed/cached results before generating final answers.

Generalization

Adding retrieval, database access, and caching to a reasoning loop is a hallucination mitigation pattern applicable to any text-generating decision system.

New York lawyers submitted a legal brief generated entirely by ChatGPT containing hallucinated case citations.
Open source video
The danger of using LLMs without access to real structured business data and proper grounding.
Open source video

Deep dives

4

Transfer of function-calling parity from BFCL to production agent tool logs

Research question

Does the function-calling parity between 32B SLMs and LLMs ten times their size, as shown on BFCL, persist when agents are faced with heterogeneous, evolving, multi-turn tools and private APIs in real production workloads?

Why

Engineering teams are beginning to use leaderboard rankings to select SLMs for agentic systems; if that parity does not transfer, the selection criterion is misleading and will surface only after deployment.

SLMs of size ~32B are now as accurate on agentic tasks as LLMs 10x their size.
Open source video
Open-source SLMs like Salesforce xLAM-2 (32B) rank competitively with proprietary models on function calling.
Open source video
Source video

Minimum viable parameter size and quantization for a local agent loop

Research question

What is the smallest quantized SLM that reliably drives a structured tool-calling loop, and how does reliability scale from 1B to 32B parameters?

Why

The promise of local SLM agents depends on a specific crossover point; knowing that point lets engineers choose the smallest sufficient model and avoid paying for parameter count that does not improve agent outcomes.

SLMs (<30B parameters) fit into consumer-grade GPU memory, offering better privacy, lower cost, and local experimentation capabilities.
Open source video
Local experimentation is feasible using llama.cpp with 4-bit quantization on Apple Silicon.
Open source video
Source video

Grounding SLM agents with lakehouse and cache access to suppress hallucination

Research question

Can connecting a local SLM agent to authoritative structured data and cached results prevent confident hallucinations, such as fabricated legal citations, without requiring a larger model?

Why

The legal-brief case shows that factual reliability is not solved by model choice alone; grounding is an architectural intervention whose effect can be quantified independently of model size.

New York lawyers submitted a legal brief generated entirely by ChatGPT containing hallucinated case citations.
Open source video
The danger of using LLMs without access to real structured business data and proper grounding.
Open source video
Source video

Guardrails for natural-language orchestration versus deterministic DAGs

Research question

What policy-checking and validation guardrails are necessary and sufficient for a natural-language agentic workflow to be as reliable as an explicit Airflow DAG?

Why

Replacing the workflow control plane with natural-language rules creates flexibility but also nondeterminism; these risks need to be measured against a DAG baseline before production adoption.

Agentic workflows replace traditional Airflow DAGs with natural language business rules and guardrails, allowing agents to dynamically choose tools based on context.
Open source video
Source video

Article ideas

4

The Sledgehammer Is Overkill: 32B SLMs Are the Default for Agentic Tool Calling

Given that 32B-class open SLMs match much larger models on function-calling benchmarks, agent builders should adopt SLMs as the default for tool calling and reserve frontier LLMs only for cases where a workload-specific benchmark proves the need for extra world knowledge.

Angle

Practitioner argument that model selection should move from parameter-count instinct to task-specific capability benchmarking, with cost, privacy, and local deployment as first-class benefits.

Source video

Your Agent Does Not Need a Bigger Brain, It Needs a Data Connection

The legal-brief hallucination incident is evidence that an otherwise capable generator will fabricate authoritative-seeming content when disconnected from real data; therefore grounding agents in structured stores such as lakehouses and caches is a more direct reliability strategy than increasing model size.

Angle

Failure-mode architecture piece moving the hallucination debate from model capability to system grounding.

Source video

Airflow DAGs Are Not Sacred: Making Natural-Language Orchestration Safe Enough for Production

Agentic orchestration can replace deterministic pipeline DAGs, but only if guardrails are treated as a first-class programmable control plane that bounds tool access, validates every call, and provides rollback semantics.

Angle

Data-engineering modernization: contrast the implicit safety of a compiled DAG with the explicit guardrails required by natural-language rules.

Source video

Benchmark Your Own Agent Logs Before Buying a Bigger Model

Public function-calling leaderboards give a coarse signal, but the only defensible model-selection evidence for a production agent is a replayable eval built from its own tool logs; teams should compile that harness before considering cloud model upgrades.

Angle

Engineering-led evaluation: show that a small internal eval can replace guesswork and leaderboard hype when sizing local SLMs for agent workloads.

Source video

Project ideas

4

TracedToolParity

beyond-evals

On a benchmark reconstructed from production agent logs, a 32B SLM will complete tasks within five percentage points of a frontier cloud LLM; if BFCL parity is an artifact of curated functions, the gap will exceed fifteen points.

Proof of concept

Instrument an existing Python agent runtime to collect 100-500 logged tool-call turns, build a replay harness that preserves tool schemas and context, and run the same task set through a local 32B quantized SLM and a large cloud LLM.

Measurement

Task completion rate, tool-selection accuracy, argument validity, and the performance difference between models on logged production turns.

Source video

AgentScaleKnee

new

For a fixed agentic tool-calling task suite, success rate follows an S-curve by parameter count: models below a certain size will fail tool-serialization tasks far more often, while 13B and 32B models will be statistically indistinguishable after prompt normalization.

Proof of concept

Run 1B, 3B, 7B, 13B, and 32B quantized checkpoints through llama.cpp with an identical system prompt, tool schema, and agent loop on the same task set.

Measurement

Task success rate, tool-call parse validity, token cost per success, memory footprint, and the coordinate of the performance knee.

Source video

PolicyGuardedAgentRunner

gatehouse

A natural-language agent governed by pre-tool policy checks and post-tool schema validation can match an Airflow DAG's success rate within two percentage points while producing zero policy violations on a controlled 1,000-run workload.

Proof of concept

Express an existing Airflow pipeline (read from Iceberg, transform, cache results) as natural-language business rules plus a tool registry; run the same workload through both an agentic runtime and the original DAG, with guardrail checks on every tool call.

Measurement

Task success rate, policy-violation count, invalid-tool-call count, and deviation from the intended DAG execution order.

Source video

GroundedSLMDataAgent

gatehouse

A 32B SLM required to fetch evidence from an authoritative structured source before producing a final answer will reduce hallucination rate by at least 30 percentage points compared with an identical ungrounded model on business-data questions.

Proof of concept

Build a local agent with a required Iceberg/cache lookup tool, seed a test set with plausible-sounding false facts, and compare grounded versus ungrounded final-answer precision under identical prompts.

Measurement

Factual precision, hallucinated-reference rate, evidence-citation accuracy, and task completion rate across grounded and ungrounded runs.

Source video

Architectural implications

4

Benchmarks like BFCL rank 32B SLMs alongside large proprietary models on function calling.

Before

Engineering teams selected cloud-hosted frontier models for agent reasoning, treating capability as a function of parameter count.

After

Teams can select smaller open models for a defined agentic capability after verifying them on function-calling benchmarks and local hardware.

Consequence

Model choice becomes a regular engineering decision driven by task evaluation, reducing lock-in and enabling local/private deployment.

Source video

Agentic workflows replace static business logic with natural-language business rules and guardrails.

Before

Data pipelines and operational logic were encoded as deterministic DAGs and code paths.

After

Runtime agents interpret business rules to dynamically select and call tools based on context.

Consequence

The system control plane shifts from workflow code to policy, prompting new requirements for explainability, guardrails, and tool-context management.

Source video

Local inference via llama.cpp with 4-bit quantization makes SLM agents feasible on consumer hardware.

Before

Agent development and experimentation typically required API calls to distant hosted models.

After

Developers can run and test the full agent loop locally, including confidential data, before deploying to the cloud.

Consequence

Development iteration is faster and data-privacy risk is drastically lower, but quantized model behavior must be monitored for degradation.

Source video

Agents lacking grounding to real structured data generate hallucinated authorities and false results.

Before

Agents relied primarily on parametric knowledge in their weights for answers.

After

Agents are connected to authoritative data sources (e.g., lakehouses) and cached data, so answers are derived from verifiable state.

Consequence

Grounding infrastructure becomes as critical to an agent's correctness as the model, shifting design effort toward data/API integration.

Source video

Tradeoffs and failure modes

3

SLMs vs LLMs for agentic reasoning

Benefit

SLMs enable lower inference cost, better privacy, local experimentation, and deployment on consumer GPU hardware.

Cost or risk

SLMs contain less broad world knowledge, so agentic performance may degrade on tasks requiring knowledge not surfaced by tools.

SLMs (<30B parameters) fit into consumer-grade GPU memory, offering better privacy, lower cost, and local experimentation capabilities.
Open source video
Source video

Natural-language business rules vs deterministic DAGs

Benefit

Flexibility to handle free-form requests and dynamically choose the right tools or data path.

Cost or risk

Less deterministic than compiled DAGs, so reliability depends on carefully designed business rules and guardrails.

Agentic workflows replace traditional Airflow DAGs with natural language business rules and guardrails, allowing agents to dynamically choose tools based on context.
Open source video
Source video

Relying on model-generated output without external data access

Benefit

Fast generation and low integration complexity when no external systems are consulted.

Cost or risk

Confident hallucinations can escape into production, as with fabricated legal citations.

New York lawyers submitted a legal brief generated entirely by ChatGPT containing hallucinated case citations.
Open source video
Source video

Open questions

4

Does BFCL function-calling parity between 32B SLMs and 100B+ LLMs transfer to real production agents that use heterogeneous, evolving tools and private APIs?

Why unresolved

The summary cites leaderboard rankings, which measure curated functions rather than the full exploratory tool space of production agents.

Research direction

Build an internal function-calling eval from a real agent's tool logs and compare SLM vs LLM failure rates on consecutive turns.

Source video

How small can an SLM be and still reliably drive an agentic tool-calling loop?

Why unresolved

The benchmark evidence points to ~32B models, while the memory argument highlights sub-30B models; the lower bound is not specified.

Research direction

Sweep quantized models from 1B to 32B on the same agentic test suite to measure size versus reliability curves.

Source video

Which agentic cases genuinely require the deep world knowledge that large models carry, and can a small model plus retrieval/tool access fully compensate?

Why unresolved

The summary's 'sledgehammer to crack a walnut' argument applies to many tool-calling tasks, but the boundary where knowledge matters is unclear.

Research direction

Create benchmark subsets isolating general-knowledge questions from tool-mediated questions, and compare SLM performance on each.

Source video

What guardrail mechanisms make natural-language business rules safe enough to replace deterministic pipeline logic?

Why unresolved

The summary highlights guardrails as part of the architecture but does not specify validation, sandboxing, or rollback approaches.

Research direction

Prototype and evaluate policy-checking layers that constrain tool calls, budgets, and read/write scopes for NL-driven agents.

Source video

Key claims

6
comparativeVerification needed

Small language models of ~32B are as accurate on agentic tasks as LLMs ten times their size.

Evidence

SLMs of size ~32B are now as accurate on agentic tasks as LLMs 10x their size.

Question

Can this parity be reproduced on an independent, production-like agentic evaluations beyond BFCL?

Source video
comparativeVerification needed

Open-source SLMs like Salesforce xLAM-2 (32B) rank competitively with proprietary models on function calling.

Evidence

Open-source SLMs like Salesforce xLAM-2 (32B) rank competitively with proprietary models on function calling.

Question

What is the exact leaderboard position and margin between xLAM-2 and the leading proprietary models on BFCL V4?

Source video
causalVerification needed

Chain-of-thought prompting injects intermediate reasoning steps into the model's generation loop.

Evidence

Chain-of-thought prompting injects intermediate reasoning steps into the model's generation loop.

Question

Does modifying the prompt to include explicit intermediate steps reliably change tool-selection behavior in controlled experiments?

Source video
opinionVerification not requested

LLMs are overkill for agentic reasoning because they carry irrelevant knowledge and incur expensive inference.

Evidence

LLMs are an overkill for agentic reasoning because they contain irrelevant knowledge and expensive inference.

Source video
predictionVerification needed

Agentic workflows replace traditional Airflow DAGs with natural-language business rules and guardrails.

Evidence

Agentic workflows replace traditional Airflow DAGs with natural language business rules and guardrails, allowing agents to dynamically choose tools based on context.

Question

Is there production evidence that agentic rule interpretation surpasses DAG-based orchestration on reliability and maintenance overhead?

Source video
factualVerification needed

Local experimentation with 4-bit quantized llama.cpp on Apple Silicon is feasible for agentic workflows.

Evidence

Local experimentation is feasible using llama.cpp with 4-bit quantization on Apple Silicon.

Question

What are the measured latency and throughput for tool-calling tasks with a 32B-parameter model under this configuration?

Source video

Connections

5