File size: 1,392 Bytes
55c321d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[
  {
    "domain": "Organization Creation",
    "input": "Create a sales department",
    "output": {
      "department": "Sales",
      "manager": "Sales Manager",
      "workers": ["Sales Agent", "Account Manager", "BDR Agent"]
    }
  },
  {
    "domain": "Agent Creation",
    "input": "Create a customer support agent",
    "output": {
      "name": "Customer Support Agent",
      "skills": ["Ticket analysis", "Customer response", "Escalation"],
      "permissions": ["read_customer_records"]
    }
  },
  {
    "domain": "Workflow Generation",
    "input": "Build an onboarding workflow",
    "output": {
      "workflow": [
        "Create account",
        "Assign onboarding agent",
        "Send welcome email",
        "Schedule meeting"
      ]
    }
  },
  {
    "domain": "Task Decomposition",
    "input": "Launch an enterprise product",
    "output": {
      "CEO": ["Define objectives"],
      "CTO": ["Estimate infrastructure"],
      "CMO": ["Prepare launch campaign"]
    }
  },
  {
    "domain": "Governance",
    "input": "Increase pricing by 30%",
    "output": {
      "requires_approval": true,
      "reason": "Pricing changes affect customers"
    }
  },
  {
    "domain": "Tool Usage",
    "input": "Create an onboarding workflow",
    "output": {
      "tool": "workflow.create",
      "parameters": {
        "name": "customer_onboarding"
      }
    }
  }
]