Skip to main content

Google ADK

Enable end-to-end tracing for your Google ADK agents by installing the vLLora Python package with the ADK feature flag.

Traces of Google ADK on vLLora

Installation

pip install 'vllora[adk]'

Quick Start

Set your environment variable before running the script:

export VLLORA_API_BASE_URL=http://localhost:9090

Initialize vLLora before creating or running any ADK agents:

from vllora.adk import init

init()

# Then proceed with your normal ADK setup:
from google.genai import Client
# ...define and run agents...

Once initialized, vLLora automatically discovers all agents and sub-agents (including nested folders), wraps their key methods at runtime, and links sessions for full end-to-end tracing across your workflow.