Quick Start Guide¶
This guide will help you create your first workflow agent using Agent Builder. We'll create a simple document review workflow that includes AI analysis and human approval.
Prerequisites¶
- Access to Agent Builder platform
- Necessary permissions to create and edit workflows
- Basic understanding of workflow concepts
Step 1: Create a New Agent¶
- Navigate to the Agent Builder dashboard
- Click "Create New Agent"
- Fill in the basic details:
Step 2: Configure Assignment Rules¶
Before adding tasks, set up at least one assignment rule:
- Click "Assignment Rules"
- Add a new rule:
Step 3: Add an AI Task¶
Add the first task for AI analysis:
- Click "Add Task"
- Choose "AI Task"
- Configure the task:
{ "name": "Analyze Document", "type": "TASK", "instructions": "Analyze the document content and extract key points", "input_parameters": [ { "name": "document_text", "type": "string", "description": "Document content to analyze", "required": true, "source": "task_config" } ], "expected_output": [ { "name": "analysis_result", "type": "object", "description": "Analysis results", "properties": { "key_points": { "type": "array", "items": { "type": "string" } }, "summary": { "type": "string" } } } ] }
Step 4: Add a Human Task¶
Add a human approval task:
- Click "Add Task"
- Choose "Human Task"
- Configure the task:
Step 5: Test Your Agent¶
-
Save Your Agent
- Click "Save" to store your configuration
-
Run a Test
- Click "Test Agent"
- Input test document content
- Monitor the execution
-
Review Results
- Check AI analysis output
- Complete human review task
- Verify workflow completion
Common Issues and Solutions¶
Issue 1: Task Creation Errors¶
- Problem: Cannot create task
- Solution: Check all required fields are filled
Issue 2: Assignment Rule Errors¶
- Problem: Assignment rule validation fails
- Solution: Ensure at least one rule is properly configured
Issue 3: Dependency Errors¶
- Problem: Tasks not properly connected
- Solution: Verify task dependencies are correctly set
Next Steps¶
After completing this guide, you can:
-
Explore More Task Types
- Learn about App Tasks
- Try Coder Tasks
-
Advanced Configuration
- Configure Input Parameters
- Set up Output Parameters
-
Best Practices
- Review Validation Rules
- Learn Best Practices
Tips for Success¶
-
Start Simple
- Begin with basic tasks
- Add complexity gradually
-
Test Thoroughly
- Test each task individually
- Verify full workflow execution
-
Document Your Work
- Add clear descriptions
- Document any special requirements