PHPackages                             vizra/vizra-adk - 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. [Search &amp; Filtering](/categories/search)
4. /
5. vizra/vizra-adk

ActiveLaravel-package[Search &amp; Filtering](/categories/search)

vizra/vizra-adk
===============

Vizra Agent Development Kit - A comprehensive Laravel package for building intelligent AI agents.

0.0.46(2mo ago)29026.1k↑15.1%36[2 PRs](https://github.com/vizra-ai/vizra-adk/pulls)MITPHPPHP ^8.2CI passing

Since Jun 17Pushed 2mo ago6 watchersCompare

[ Source](https://github.com/vizra-ai/vizra-adk)[ Packagist](https://packagist.org/packages/vizra/vizra-adk)[ GitHub Sponsors](https://github.com/aaronlumsden)[ RSS](/packages/vizra-vizra-adk/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (7)Versions (54)Used By (0)

 [![Vizra Logo](https://camo.githubusercontent.com/380920561da7f7c8e27380b678615eaa4469b4d282a55e7f09587f84604c1dab/68747470733a2f2f76697a72612e61692f696d672f76697a72612d6c6f676f2e737667)](https://camo.githubusercontent.com/380920561da7f7c8e27380b678615eaa4469b4d282a55e7f09587f84604c1dab/68747470733a2f2f76697a72612e61692f696d672f76697a72612d6c6f676f2e737667)

Vizra ADK - AI Agent Development Kit for Laravel
================================================

[](#vizra-adk---ai-agent-development-kit-for-laravel)

 **Build intelligent AI agents with Laravel's elegant syntax**

 [![Latest Version](https://camo.githubusercontent.com/c5cd8c6f19d36d7fb90b4089e7b2f889096e41371dd31d44ccb1341c0e344975/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f76697a72612f76697a72612d61646b)](https://packagist.org/packages/vizra/vizra-adk) [![Total Downloads](https://camo.githubusercontent.com/9f8c2869a32792040f0bd0937393ee215fc3a96fe1c0dab979f3baf0f256e7e2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f76697a72612f76697a72612d61646b)](https://packagist.org/packages/vizra/vizra-adk) [![MIT License](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](LICENSE.md) [![PHP](https://camo.githubusercontent.com/c2588b5670f2c910b8cc849ace22a22efda8956b7c2f797d11d2096bbfc7b1f5/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e322532422d3737374242342e737667)](https://www.php.net) [![Laravel](https://camo.githubusercontent.com/5c1ab7d7515a233a975ccc80c07777b7799407e6d13e35d00cd9c22b43785bca/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d31312e302532422d4646324432302e737667)](https://laravel.com) [![Discord](https://camo.githubusercontent.com/5ec80d7c732a0c40b7a6668678f93a07c5d32046e3c3dfd064f2dec096671e95/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f446973636f72642d4a6f696e253230436f6d6d756e6974792d3538363546322e7376673f6c6f676f3d646973636f7264266c6f676f436f6c6f723d7768697465)](https://discord.gg/CRRzmvS5MK)

Vizra ADK is a comprehensive Laravel package for building autonomous AI agents that can reason, use tools, and maintain persistent memory. Create intelligent, interactive agents that integrate seamlessly with your Laravel application.

✨ Key Features
--------------

[](#-key-features)

- **🤖 Multi-Model AI Support** - Works with OpenAI, Anthropic, and Google Gemini + more, thanks to prism PHP
- **🎯 Sub-Agent Delegation** - Agents can delegate tasks to specialized sub-agents
- **🛠️ Extensible Tool System** - Give agents abilities to interact with databases, APIs, and external services
- **🧠 Persistent Memory** - Agents remember conversations and learn from interactions across sessions
- **🔄 Agent Workflows** - Build complex processes with sequential, parallel, conditional flows and loops
- **⚡ Execution Modes** - Multiple trigger modes: conversational, scheduled, webhook, event-driven, and queue jobs
- **📊 Evaluation Framework** - Automated quality testing framework for agents at scale with LLM-as-a-Judge
- **💬 Streaming Responses** - Real-time, token-by-token streaming for responsive user experiences
- **📈 Comprehensive Tracing** - Debug and monitor agent execution with detailed traces
- **🎨 Web Dashboard** - Beautiful Livewire v4-powered interface for testing and monitoring
- **🔧 Laravel Native** - Built with Laravel patterns: Artisan commands, Eloquent models, service providers

🚀 Quick Start
-------------

[](#-quick-start)

```
# Install via Composer
composer require vizra/vizra-adk

# Publish config and run migrations
php artisan vizra:install

# Create your first agent
php artisan vizra:make:agent CustomerSupportAgent

# Start chatting!
php artisan vizra:chat customer_support
```

💻 Basic Usage
-------------

[](#-basic-usage)

```
