-
Notifications
You must be signed in to change notification settings - Fork 837
Expand file tree
/
Copy pathagent_config.schema.json
More file actions
35 lines (35 loc) · 1.2 KB
/
agent_config.schema.json
File metadata and controls
35 lines (35 loc) · 1.2 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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Agent Configuration",
"description": "Configuration schema for creating agents.",
"type": "object",
"properties": {
"name": {
"description": "Name of the agent.",
"type": ["string", "null"],
"default": null
},
"model": {
"description": "The model ID to use for this agent. If not specified, uses the default model.",
"type": ["string", "null"],
"default": null
},
"prompt": {
"description": "The system prompt for the agent. Provides high level context to the agent.",
"type": ["string", "null"],
"default": null
},
"tools": {
"description": "List of tools the agent can use. Can be file paths, Python module names, or @tool annotated functions in files.",
"type": "array",
"items": { "type": "string" },
"default": []
},
"mcp_servers": {
"description": "MCP server configurations. Each key is a server name and the value is a server configuration object with transport-specific settings.",
"type": "object",
"additionalProperties": { "$ref": "mcp_server_config.schema.json" }
}
},
"additionalProperties": false
}