-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcdk.json
More file actions
41 lines (39 loc) · 1008 Bytes
/
cdk.json
File metadata and controls
41 lines (39 loc) · 1008 Bytes
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
{
"app": "python3 app.py",
"watch": {
"include": [
"**"
],
"exclude": [
"README.md",
"cdk*.json",
"requirements*.txt",
"**/__pycache__",
"**/*.pyc",
"tests",
"docs",
".git",
".venv"
]
},
"context": {
"project_name": "hermes-agentcore",
"@aws-cdk/aws-lambda:recognizeLayerVersion": true,
"@aws-cdk/core:stackRelativeExports": true,
"default_model_id": "global.anthropic.claude-opus-4-6-v1",
"warmup_model_id": "global.anthropic.claude-sonnet-4-6-v1",
"session_idle_timeout": 1800,
"session_max_lifetime": 28800,
"workspace_sync_interval_seconds": 300,
"enable_guardrails": false,
"enable_token_monitoring": true,
"daily_token_budget": 2000000,
"daily_cost_budget_usd": 20,
"channels": ["telegram", "slack", "discord", "feishu"],
"vpc_cidr": "10.0.0.0/16",
"az_count": 2,
"alarm_email": "",
"agentcore_runtime_arn": "",
"agentcore_qualifier": ""
}
}