-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagents-context.jsonld
More file actions
106 lines (102 loc) · 2.24 KB
/
Copy pathagents-context.jsonld
File metadata and controls
106 lines (102 loc) · 2.24 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"@context": {
"@version": 1.1,
"agents": "https://api-evangelist.github.io/agents/schema/",
"schema": "https://schema.org/",
"dcterms": "http://purl.org/dc/terms/",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"prov": "http://www.w3.org/ns/prov#",
"AgentDefinition": "agents:AgentDefinition",
"AgentRun": "prov:Activity",
"Tool": "agents:Tool",
"Step": "agents:Step",
"id": "@id",
"name": "schema:name",
"description": "schema:description",
"framework": {
"@id": "agents:framework",
"@type": "xsd:string"
},
"model": {
"@id": "agents:model",
"@type": "@id"
},
"instructions": {
"@id": "agents:instructions",
"@type": "xsd:string"
},
"tools": {
"@id": "agents:tools",
"@container": "@set",
"@type": "@id"
},
"memory": {
"@id": "agents:memory",
"@type": "@id"
},
"guardrails": {
"@id": "agents:guardrails",
"@container": "@set",
"@type": "xsd:string"
},
"tags": {
"@id": "schema:keywords",
"@container": "@set",
"@type": "xsd:string"
},
"run_id": "@id",
"agent_id": {
"@id": "agents:agent",
"@type": "@id"
},
"goal": {
"@id": "agents:goal",
"@type": "xsd:string"
},
"status": {
"@id": "agents:status",
"@type": "xsd:string"
},
"started_at": {
"@id": "prov:startedAtTime",
"@type": "xsd:dateTime"
},
"ended_at": {
"@id": "prov:endedAtTime",
"@type": "xsd:dateTime"
},
"steps": {
"@id": "agents:steps",
"@container": "@list",
"@type": "@id"
},
"result": {
"@id": "agents:result",
"@type": "@id"
},
"metrics": {
"@id": "agents:metrics",
"@type": "@id"
},
"trace_url": {
"@id": "agents:trace",
"@type": "@id"
},
"input_tokens": {
"@id": "agents:input_tokens",
"@type": "xsd:integer"
},
"output_tokens": {
"@id": "agents:output_tokens",
"@type": "xsd:integer"
},
"tool_call_count": {
"@id": "agents:tool_call_count",
"@type": "xsd:integer"
},
"cost_usd": {
"@id": "agents:cost_usd",
"@type": "xsd:decimal"
}
}
}