Generate complex workflows using natural language. Our ADK provider uses cutting-edge LLMs to transform your requirements into production-ready automation.
Universal Integration
Connect anything: containers, APIs, databases, cloud services, AI models. If it has an interface, Kubiya can orchestrate it.
Deterministic Execution
Unlike agent frameworks that wander, Kubiya provides rails for AI. Every workflow step runs in isolated containers with defined boundaries.
from kubiya_workflow_sdk.providers import get_provider# Generate workflows with AIadk = get_provider("adk")result = await adk.compose( task="Create a zero-downtime deployment pipeline with health checks", mode="act" # Instantly execute!)
from kubiya_workflow_sdk import workflow, step, run@workflowdef hello_kubiya(): step("greet").shell("echo 'Hello from Kubiya! 🚀'")# Run it!run(hello_kubiya)