Members-Only
Recent Talks & Demos are for members only
You must be an AI Tinkerers active member to view these talks and demos.
Agents require executive function
Explore an open-source YAML specification for agent orchestration, drawing on cognitive science to build an artificial neocortex and improve agent executive function.
I’m building out an open source YAML specification for agent orchestration.
Based on a hundred years of human cognitive science, the metaphor is the construction of an artificial Neocortex.
Specifically working on improving executive function in agents.
Rust-based pipeline runtime orchestrating LLM agents via YAML-defined executive functions.
- LLMLarge Language Models (LLMs) are deep learning models, built on the Transformer architecture, that process and generate human-quality text and code at scale.LLMs are a class of foundation models: massive, pre-trained neural networks (often with billions to trillions of parameters) that leverage the self-attention mechanism of the Transformer architecture (introduced in 2017) to predict the next token in a sequence. Trained on vast datasets (e.g., Common Crawl's 50 billion+ web pages), these models—like GPT-4, Gemini, and Claude—acquire predictive power over syntax and semantics. They function as general-purpose sequence models, enabling critical applications such as complex content generation, language translation, and automated code completion (e.g., GitHub Copilot). Their core value: generalizing across diverse tasks with minimal task-specific fine-tuning.
- Artificial NeocortexA computational architecture replicating the human brain's six-layer sensory processing structure to achieve human-level visual perception.The Artificial Neocortex leverages Recursive Cortical Networks (RCN) to solve complex computer vision tasks that baffle standard deep learning models. By mimicking the biological hierarchy of the mammalian brain, this technology masters high-level abstraction and data efficiency (learning from 100x fewer samples than traditional CNNs). It gained global recognition by breaking text-based CAPTCHAs with 90% accuracy using zero-shot learning. This approach moves beyond brute-force pattern matching toward a functional understanding of shape, texture, and object permanence.
- YAMLYAML (YAML Ain't Markup Language) is a human-friendly data serialization language prioritizing readability and ease of use.YAML is a human-readable data serialization language, primarily used for configuration files and inter-process data exchange. It employs a minimal, indentation-based syntax (like Python) to define structure, utilizing colons for key-value pairs (mappings) and hyphens for list items (sequences). YAML is a superset of JSON, offering key benefits like support for comments and reusable data references (anchors). This clarity and feature set make it the standard for major DevOps tools, including Kubernetes deployments and Ansible Playbooks.
- Agent OrchestrationAgent orchestration is the command layer that coordinates multiple specialized AI agents to solve complex, multi-step workflows.Think of orchestration as the conductor for an AI ensemble: it manages state, handles handoffs between models like GPT-4o and Claude 3.5, and ensures logical consistency across long-running loops. Instead of a single prompt hitting a wall, frameworks like LangGraph or CrewAI allow a 'Researcher' agent to browse the web, pass structured data to a 'Writer' agent, and trigger a 'Critic' agent for final validation. This architecture moves beyond simple RAG (Retrieval-Augmented Generation) by implementing cycles, conditional branching, and human-in-the-loop checkpoints to reduce hallucinations and automate production-grade business logic.