Neuron AI - PHP Agentic Framework
Neuron AI is the First Agentic Framework of the PHP Ecosystem
11/06/2026
Taking the stage at the International PHP Conference in Berlin was about one clear mission: challenging the assumption that production-grade AI belongs exclusively to Python. ๐
These intense days have been fully focused on deep architectural discussions, code implementations, and connecting with the international community. Seeing our slides up on that stage and presenting the core concepts of Neuron AI to fellow engineers validates the exact reason we built this framework.
Scaling an open-source project and pushing a whole ecosystem forward doesn't happen in a vacuum. It requires shared challenges, continuous learning, and strong technical relationships.
Berlin was also the perfect opportunity for real, face-to-face networking. We are glad we could grab a physical copy of โAnatomia di una mente artificialeโ by Enrico Zimuel.
Enrico hosted our team back in February at the PHP User Group (PUG) in Turin during the launch of Neuron v3.
Seeing recognized leaders in our community publish high-quality technical literature that grounds AI into solid software engineering principles is exactly what developers need to move past the temporary hype and focus on production-ready systems. ๐
The global landscape is shifting. PHP developers are realizing they can build, deploy, and scale autonomous agentic systems natively, leveraging the exact stack they already master. ๐
A huge thanks to the team for the incredible effort during this international tour, to everyone we crossed paths with in Berlin, and to Enrico for his ongoing engineering contribution to the ecosystem.
If you are a PHP developer looking to integrate stable AI workflows without changing your stack or rewriting your codebase from scratch, let's connect.
You can check out Enricoโs book here: ๐ https://amzn.eu/d/07Gnmf5O
And dive into the Neuron AI architecture on GitHub: ๐
https://github.com/neuron-core/neuron-ai
Learn how the tool search middleware works, accepting a pool of tools for model searches. This allows you to easily manage and access various tools, like those within the calendar toolkit, without them being added by default to every request.
Full video: https://www.youtube.com/watch?v=qYmidHAXEYM&t=1s
Exploring the growing world of AI agents. As a frontend developer, I've found ChatGPT invaluable for coding assistance for years. Now, I'm integrating AI agents into site features, developing entire applications and software. Excited to see what Neuron brings to the table!
Full video testimonial: https://youtu.be/kW3RXaNC0LM
04/06/2026
Why should your AI agent care which LLM provider answers its calls? ๐
In a well-designed system, it shouldn't. But in reality, hardcoding your application to a single provider creates a fragile architecture: you are stuck with their pricing, their rate limits, and their latency spikes.
When we designed v3 of Neuron AI, we spent a lot of time on the unsexy part of the infrastructure: the Unified Messaging Layer. We wanted a single, native PHP representation for messages and tools that every provider (OpenAI, Anthropic, Gemini) could understand.
That early architectural decision is now paying dividends.
Because the agent is completely decoupled from the underlying LLM, we just released a new component: neuron-core/router. It allows you to route single inference calls to different providers dynamically, and the agent doesn't even notice the switch.
This solves three massive headaches when running agents in production:
๐น Token Budgeting: You can route requests to premium models (like Anthropic) only when complex tools are active, and offload simpler validation steps to faster, cheaper models.
๐น Native Multimodality: Dynamically shift the single inference call to Gemini when your workflow detects a video file, keeping everything inside the same agent lifecycle.
๐น Rate Limit Management: Use the built-in RoundRobinRule to distribute the load across multiple accounts or providers without adding external proxy layers.
In software engineering, clean plumbing isn't an academic preference: it is what keeps your system production-ready as the market changes. ๐
If you want to see the exact code implementation, understand how the RouterProvider implements the standard interface, and check the built-in routing rules, the deep dive is live on our blog.
Read the architectural breakdown:
๐ https://inspector.dev/routing-inference-calls-between-providers-in-neuron-ai/
The router is completely framework-agnostic. You can inspect the source code and contribute to the package directly on GitHub:
๐ https://github.com/neuron-core/router
I'm a front-end developer helping to integrate features and develop entire pages and applications. This event has been incredibly helpful with its interesting topics that will aid future self-improvement.
Full video testimonial: https://youtu.be/kW3RXaNC0LM
Witness the power of AI agents as they execute a script. Observe how dynamic tool use unfolds in real-time on your screen. This demonstration shows the practical application of complex prompts.
Full video: https://www.youtube.com/watch?v=qYmidHAXEYM&t=1s
Discover how AI identifies the perfect tool for any job. It analyzes your query, tokenizes tool information, and performs a smart similarity search to retrieve the best match from its pool. It's complex, but incredibly effective.
Full video: https://www.youtube.com/watch?v=qYmidHAXEYM&t=1s
Ever wonder how AI models accomplish complex tasks? They don't always have built-in capabilities. When needed, a smart middleware allows them to search for and dynamically use the right tools, unlocking new levels of performance.
Full video: https://www.youtube.com/watch?v=qYmidHAXEYM&t=1s
26/05/2026
Scaling an AI Agent to hundreds of integrations should be an infrastructural routine, not a reason to split your software stack. โก
The industry has settled on a fragile habit: bloating the LLM prompt with a massive, hardcoded array of tool schemas. The moment your PHP application connects to a CRM, an ERP, a calendar, and a few custom database tools, your context window collapses under the weight of thousands of redundant tokens per turn.
Forcing an agent to carry an entire, static integration catalog is an anti-pattern that guarantees parameter confusion and production-log errors.
We built Neuron AI to challenge the assumption that PHP applications need a Python microservice proxy just to handle complex orchestration workloads natively and efficiently. ๐
This is not an isolated feature release. It is a fundamental shift in runtime memory management through the introduction of the DynamicToolRegistry.
Instead of treating tool signatures as static variables appended to every single inference request, we have re-engineered the catalog into an on-demand retrieval layer powered by Vector Search. By calculating semantic relevance before the LLM ex*****on turn, the system architecture scales predictably:
๐น Pristine Working Memory: Token consumption is bound to the exact integration needed for the immediate step, isolating the context window from background noise.
๐น Ex*****on Determinism: Mitigating prompt bloat forces the model to focus on argument mapping, eliminating the hallucination loops that deplete cloud budgets.
๐น Scale-Invariant Maintenance: Your development team can build and connect hundreds of enterprise capabilities without modifying core routing logic or degrading accuracy.
We are standardizing production-ready, autonomous AI inside native PHP environments. You do not need to accept infrastructure duplication to deploy stable, enterprise-grade systems. ๐
The complete structural architecture, the context window breakdown, and the step-by-step implementation guidelines are fully detailed.
Read the full deep dive here:
๐ https://inspector.dev/your-ai-agent-has-too-many-tools-heres-the-fix/
We are here to help you.
25/05/2026
Building production-grade AI agents in PHP is no longer a question of microservice orchestration. It is a matter of software architecture. โก
Until today, developing complex agentic workflows meant accepting a structural compromise: either you hardcoded your tool signatures into the prompt, destroying your token budget and model accuracy as you scaled, or you abandoned your stack entirely to build a separate Python environment.
The static tool array is a dead end for production software.
We built Neuron AI to eliminate this compromise and prove a specific statement: the PHP stack has the native structural strengths to handle enterprise-grade AI workloads cleaner, faster, and with higher observability than duplicated, cross-language setups. ๐
This is not about dropping an isolated utility feature. It is about a fundamental shift in how agentic systems are managed at runtime.
Instead of forcing an LLM to carry a heavy, static catalog of fifty tool schemas on every single request, the architecture must shift toward an on-demand retrieval layer powered by Vector Search.
By indexing tool signatures as semantic embeddings, the agent initiates every ex*****on turn with a clean, minimal context window. The system queries the tool registry dynamically, injecting the precise schema into the inference call only when the specific task requires it.
This architectural approach changes how you design production software:
๐น Context Window Isolation: Token consumption is bound to immediate ex*****on necessity, not to the overall size of your integration catalog.
๐น Deterministic Ex*****on: Removing background prompt noise mitigates parameter confusion, stopping ex*****on loops before they hit your logs.
๐น Infrastructure Sanity: You scale your business capabilities to hundreds of enterprise tools without rewriting your core workflow logic.
We are establishing a native, framework-agnostic ecosystem where PHP developers can build autonomous software that is production-ready from day one, without splitting their codebase. ๐
The foundational architecture and the design patterns behind Neuron are live.
Watch the full architectural introduction here:
๐ https://www.youtube.com/watch?v=qYmidHAXEYM
We are here to help you build reliable systems.
Clicca qui per richiedere la tua inserzione sponsorizzata.
Digitare
Sito Web
Indirizzo
Via Gabriele Jannelli 424
Naples
80131