Get a working AI agent up and running in minutes. This guide will walk you through creating an agent that can understand natural language and execute workflows.
# Required: Kubiya API keyexport KUBIYA_API_KEY="your-kubiya-api-key"# Choose one LLM provider:export OPENAI_API_KEY="your-openai-key" # For OpenAI# ORexport ANTHROPIC_API_KEY="your-anthropic-key" # For Anthropic# ORexport TOGETHER_API_KEY="your-together-key" # For Together AI
You: Create a workflow that prints system informationAgent: I'll create a workflow that displays system information for you...[Creates and executes workflow showing OS, CPU, memory info]
You: Use Python to analyze a CSV file and create a chartAgent: I'll create a data analysis workflow using Python and pandas...[Creates workflow with python:3.11-slim, installs dependencies, processes data]
You: Set up a CI/CD pipeline that builds, tests, and deploys my appAgent: I'll create a comprehensive CI/CD workflow for you...[Creates multi-stage workflow with parallel testing and deployment]