-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcore-exec.json
More file actions
49 lines (49 loc) · 1.13 KB
/
core-exec.json
File metadata and controls
49 lines (49 loc) · 1.13 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
{
"manifest_version": "1.0",
"profiles": ["core", "exec"],
"agent": {
"id": "ajson://example/core-exec-summarizer",
"name": "Summarizer Agent",
"description": "Summarizes input content.",
"version": "1.0.0",
"license": "Apache-2.0",
"tags": ["summarization", "example"]
},
"capabilities": [
{
"id": "summarization",
"description": "Summarize one or more input texts.",
"schema": "https://jsonagents.org/json/schema/capabilities/summarization.json"
}
],
"tools": [
{
"id": "tool://summarizer/local-model",
"name": "Local Summarization Model",
"description": "Internal model used for summarization.",
"type": "custom",
"metadata": {
"provider": "local"
}
}
],
"modalities": {
"input": ["text"],
"output": ["text"]
},
"context": {
"window": 8192,
"strategy": "rolling",
"persistent": false
},
"runtime": {
"type": "python",
"language": "python",
"entrypoint": "summarizer.main:run",
"resources": {
"cpu_cores_min": 1,
"memory_mb_min": 512,
"accelerator": "none"
}
}
}