/ 00-agent-agentcore / app.py
app.py
1 #!/usr/bin/env python3 2 """CDK App entry point for standalone AgentCore Runtime deployment.""" 3 4 import aws_cdk as cdk 5 6 from agent_agentcore.agent_agentcore_stack import AgentAgentCoreStack 7 8 app = cdk.App() 9 AgentAgentCoreStack(app, "AgentAgentCoreStack") 10 app.synth()