30 lines
878 B
Python
30 lines
878 B
Python
"""
|
|
A2A skill declarations for AutoDeployApplicationToDevelopm.
|
|
"""
|
|
from a2a.types import AgentSkill
|
|
|
|
|
|
AUTO_DEPLOY_APPLICATION_TO_DEVELOPM_SKILLS = [
|
|
AgentSkill(
|
|
id="auto_deploy_application_to_developm_skill",
|
|
name="AutoDeployApplicationToDevelopm",
|
|
description="Deploy application to development environment",
|
|
tags=["auto-generated"],
|
|
examples=[],
|
|
),
|
|
]
|
|
|
|
|
|
AGENT_CONFIG = {
|
|
"name": "AutoDeployApplicationToDevelopm",
|
|
"description": "Deploy claims-api to development environment with Postgres database.",
|
|
"version": "1.0.0",
|
|
"framework": "LangGraph + Starlette",
|
|
"capabilities": {
|
|
"streaming": False,
|
|
"async": True,
|
|
},
|
|
"input_schema": {"ci_pipeline_config_path": "string", "postgres_version": "string"},
|
|
"output_schema": {"deployment_status": "string", "deployment_url": "string"},
|
|
}
|