File size: 279 Bytes
a8a231d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
"""Entry point for Agent Engine deployment.

This module provides the root_agent instance required by the ADK deployment system.
"""

from .agents import create_content_generation_pipeline

# Create the root agent for deployment
root_agent = create_content_generation_pipeline()