Vizra ADK

Build, test, and deploy intelligent AI agents with
Laravel's elegant framework

v{{ $packageVersion }}
{{ $agentCount }} agents registered

Intelligent Agents

Create powerful AI agents with memory, tools, and conversation abilities. From simple chatbots to complex reasoning systems.

Multi-LLM Support

Works with OpenAI, Anthropic Claude, Google Gemini, and more. Switch between providers with a single config change.

Laravel Native

Seamlessly integrates with Laravel using familiar patterns. Artisan commands, service providers, and facades - everything works the Laravel way.

Quick Start Commands

Create an Agent

php artisan vizra:make:agent MyAgent

Create a Tool

php artisan vizra:make:tool MyTool

Interactive Chat

php artisan vizra:chat my_agent

Create Evaluation

php artisan vizra:make:eval MyEvaluation

Discover Agents

php artisan vizra:discover-agents

Run Evaluation

php artisan vizra:run:eval MyEvaluation
@if($agentCount > 0)

Your Agents

@foreach($registeredAgents as $agentName => $agentClass)

{{ $agentName }}

{{ class_basename($agentClass) }}

Available in Chat Interface

@endforeach
@endif @if(isset($recent_activity))
Active

{{ $recent_activity['active_sessions'] ?? 0 }}

Active Sessions

{{ $recent_activity['total_messages'] ?? 0 }}

Total Messages

{{ $recent_activity['evaluations_run'] ?? 0 }}

Evaluations Run

@endif