OpenAI Agents SDK
Enable end-to-end tracing for your OpenAI agents by installing the vLLora Python package with the OpenAI feature flag.

Installation
pip install 'vllora[openai]'
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 OpenAI agents:
from vllora.openai import init
init()
# Then proceed with your normal OpenAI setup:
from openai import OpenAI
# ...define and run agents...
Once initialized, vLLora automatically captures all agent interactions, function calls, and streaming responses with full end-to-end tracing across your workflow.