-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathconfig-usage-demo.json
More file actions
81 lines (81 loc) · 2.44 KB
/
Copy pathconfig-usage-demo.json
File metadata and controls
81 lines (81 loc) · 2.44 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
{
"target": {
"type": "http_agent",
"baseUrl": "https://ticketio-smartticketagent-production-d015.up.railway.app",
"agentEndpoint": "/api/agent",
"applicationDetails": "SmartTicket AI Agent ticketing chatbot exposed as a JSON API. The endpoint accepts POST requests with a user message and returns a JSON response containing success, response, session_id, and message_count. The assistant appears to help users with ticket workflows such as flight, train, bus, or movie ticket requests.",
"customApiTemplate": {
"method": "POST",
"headers": {
"Content-Type": "application/json",
"Accept": "application/json"
},
"bodyTemplate": "{\"message\":\"{{message}}\"}",
"responsePath": "response"
}
},
"codebasePath": null,
"codebaseRepo": null,
"codebaseRepoBranch": "main",
"codebaseGlob": "**/*",
"policyFile": "policies/strict.json",
"auth": {
"methods": ["none"],
"jwtSecret": "not-needed",
"credentials": [],
"apiKeys": {}
},
"requestSchema": {
"messageField": "message",
"roleField": "role",
"apiKeyField": "api_key",
"guardrailModeField": "guardrail_mode"
},
"responseSchema": {
"responsePath": "response",
"toolCallsPath": "tool_calls",
"userInfoPath": "user",
"guardrailsPath": "guardrails"
},
"sensitivePatterns": [
"sk-",
"api_key",
"secret",
"token",
"password",
"credentials",
"session_id",
"booking reference",
"confirmation number"
],
"attackConfig": {
"adaptiveRounds": 1,
"maxAttacksPerCategory": 3,
"concurrency": 1,
"delayBetweenRequestsMs": 800,
"llmProvider": "anthropic",
"llmModel": "claude-sonnet-4-5-20250929",
"judgeProvider": "anthropic",
"judgeModel": "claude-sonnet-4-5-20250929",
"enableLlmGeneration": true,
"enableIdealResponses": false,
"maxMultiTurnSteps": 3,
"strategiesPerRound": 10,
"enableMultiTurnGeneration": false,
"multiTurnGenerationRate": 0,
"enableAdaptiveMultiTurn": false,
"maxAdaptiveTurns": 1,
"attacksPerStrategy": 2,
"requireReviewConfirmation": false,
"skipIrrelevantCategories": false,
"enableDiscovery": false,
"appTailoredCustomPromptCount": 3,
"contextBudgetChars": 200000,
"maxAnalysisBatches": 2,
"enabledCategories": ["data_exfiltration", "sensitive_data"],
"enabledStrategies": [
"base64_context_hint",
"authority_mimicry_security_manager"
]
}
}