-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcore-exec-gov-graph.json
More file actions
83 lines (83 loc) · 1.87 KB
/
core-exec-gov-graph.json
File metadata and controls
83 lines (83 loc) · 1.87 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"manifest_version": "1.0",
"profiles": ["core", "exec", "gov", "graph"],
"agent": {
"id": "ajson://example/router-hub",
"name": "Router Hub",
"description": "Routes incoming queries to specialized downstream agents.",
"version": "1.0.0",
"tags": ["router", "orchestration"]
},
"capabilities": [
{
"id": "routing",
"description": "Select appropriate downstream agent based on intent.",
"schema": "https://jsonagents.org/json/schema/capabilities/routing.json"
}
],
"tools": [],
"modalities": {
"input": ["text"],
"output": ["text"]
},
"context": {
"window": 4096,
"strategy": "stateless",
"persistent": false
},
"runtime": {
"type": "node",
"language": "typescript",
"entrypoint": "dist/router.js",
"resources": {
"cpu_cores_min": 1,
"memory_mb_min": 512,
"accelerator": "none"
}
},
"security": {
"sandbox": "process",
"network_zone": "trusted"
},
"observability": {
"log_level": "info",
"log_sink": "https://logs.example.net/agents/router-hub",
"redact_sensitive": true,
"metrics_enabled": true,
"trace_enabled": true
},
"graph": {
"nodes": [
{
"id": "router",
"ref": "ajson://example/router-hub",
"role": "router"
},
{
"id": "faq",
"ref": "ajson://example/faq-agent",
"role": "faq"
},
{
"id": "billing",
"ref": "ajson://example/billing-agent",
"role": "billing"
}
],
"edges": [
{
"from": "router",
"to": "faq",
"condition": "message.intent == 'faq'"
},
{
"from": "router",
"to": "billing",
"condition": "message.intent == 'billing'"
}
],
"message_envelope": {
"schema": "https://jsonagents.org/json/schema/message-envelope.json"
}
}
}