PHPackages                             agenticorchestrator/agenticorchestrator - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. agenticorchestrator/agenticorchestrator

ActiveLibrary[Framework](/categories/framework)

agenticorchestrator/agenticorchestrator
=======================================

A Laravel AI Agent framework with multi-tenancy, workflows, RAG pipelines, and evaluation tools

v0.8.0(1mo ago)50MITPHPPHP ^8.3CI passing

Since Mar 15Pushed 1mo agoCompare

[ Source](https://github.com/agenticOrchestrator/agenticorchestrator)[ Packagist](https://packagist.org/packages/agenticorchestrator/agenticorchestrator)[ RSS](/packages/agenticorchestrator-agenticorchestrator/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (15)Versions (2)Used By (0)

Agent Orchestrator
==================

[](#agent-orchestrator)

A Laravel AI Agent framework with **first-class multi-tenancy support**.

[![Latest Version on Packagist](https://camo.githubusercontent.com/204f60d5d251845cb2f51a997d3978329ff2c293439dfb451e62182d5f29f051/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6167656e7469636f7263686573747261746f722f6167656e7469636f7263686573747261746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/agenticorchestrator/agenticorchestrator)[![GitHub Tests Action Status](https://camo.githubusercontent.com/ffae761c046aa45a83930c736445b85970db810428ff59b3e974422f2760897d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6167656e7469636f7263686573747261746f722f6167656e7469636f7263686573747261746f722f74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/agenticorchestrator/agenticorchestrator/actions?query=workflow%3Atests+branch%3Amain)[![PHPStan](https://camo.githubusercontent.com/fff00cebb924e124a7335e6bd8ca8f8cf38869463c1654eff45d0939f1f21c57/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048505374616e2d6c6576656c253230382d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](https://phpstan.org/)[![License](https://camo.githubusercontent.com/af03028edee3f08516b6b29e8e6dbfb7e0c648bc71f00b859cb5d42174a23b6a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6167656e7469636f7263686573747261746f722f6167656e7469636f7263686573747261746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/agenticorchestrator/agenticorchestrator)

Key Highlights
--------------

[](#key-highlights)

- **First-Class Multi-Tenancy** — Team isolation, system vs custom agents, per-team cost attribution
- **10+ LLM Providers** — OpenAI, Anthropic, Gemini, Mistral, Ollama, and more via Prism PHP
- **5 Vector Stores** — Pinecone, Qdrant, Weaviate, Chroma, PgVector for semantic memory
- **Full Workflow Engine** — Sequential, parallel, conditional, loop, and human-in-the-loop patterns
- **LLM-as-Judge Evaluation** — Built-in evaluation framework with custom assertions and metrics
- **Production Ready** — Rate limiting, caching, circuit breakers, and comprehensive event system

Installation
------------

[](#installation)

```
composer require agenticorchestrator/agenticorchestrator
```

Publish the configuration:

```
php artisan vendor:publish --provider="AgenticOrchestrator\AgenticOrchestratorServiceProvider"
```

Run migrations:

```
php artisan migrate
```

Quick Start
-----------

[](#quick-start)

### Create Your First Agent

[](#create-your-first-agent)

```
php artisan agent:make CustomerSupportAgent
```

```
