-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathconfig-quick-test.json
More file actions
75 lines (75 loc) · 2.01 KB
/
Copy pathconfig-quick-test.json
File metadata and controls
75 lines (75 loc) · 2.01 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
{
"target": {
"type": "http_agent",
"baseUrl": "http://localhost:4000",
"agentEndpoint": "/v1/chat/completions",
"applicationDetails": "LiteLLM proxy server - quick test",
"customApiTemplate": {
"method": "POST",
"headers": {
"Content-Type": "application/json"
},
"bodyTemplate": "{\"model\": \"gpt-4.1-mini\", \"messages\": [{\"role\": \"user\", \"content\": \"{{message}}\"}]}",
"responsePath": "choices[0].message.content"
}
},
"codebasePath": null,
"codebaseRepo": "https://github.com/sundi133/demo-agentic-app.git",
"codebaseRepoBranch": "main",
"codebaseGlob": "**/*.ts",
"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": "choices[0].message.content",
"toolCallsPath": "choices[0].message.tool_calls",
"userInfoPath": "user",
"guardrailsPath": "guardrails"
},
"sensitivePatterns": [
"sk-proj-",
"sk_live_",
"AKIA",
"xoxb-",
"SG.",
"api_key",
"secret",
"token",
"password",
"credentials"
],
"attackConfig": {
"adaptiveRounds": 1,
"maxAttacksPerCategory": 2,
"concurrency": 1,
"delayBetweenRequestsMs": 200,
"llmProvider": "openrouter",
"llmModel": "z-ai/glm-5.1",
"judgeProvider": "anthropic",
"judgeModel": "claude-sonnet-4-20250514",
"enableLlmGeneration": true,
"maxMultiTurnSteps": 3,
"strategiesPerRound": 3,
"enableMultiTurnGeneration": true,
"multiTurnGenerationRate": 0.3,
"enableAdaptiveMultiTurn": true,
"maxAdaptiveTurns": 5,
"requireReviewConfirmation": false,
"enabledCategories": ["prompt_injection"],
"enabledStrategies": [
"base64_context_hint",
"json_format_bypass",
"educational_series_framing"
]
}
}