sls_service(
    name="sample-python-service",
    product_group="com.citadel",
    product_name="sample-python-service",
    version="1.0.0",
    display_name="Sample Python Service",
    description="A sample FastAPI service deployed via Citadel + Apollo",
    entrypoint="app:app",
    args=["--host", "0.0.0.0", "--port", "8080"],
    python_version="3.11",
    check_command="curl -sf http://localhost:8080/health",
    resource_requests={"cpu": "100m", "memory": "128Mi"},
    resource_limits={"cpu": "500m", "memory": "512Mi"},
    replication_desired=2,
    replication_min=2,
    replication_max=10,
    labels={"team": "platform", "language": "python", "framework": "fastapi"},
)
