-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
31 lines (31 loc) · 735 Bytes
/
Copy pathconfig.json
File metadata and controls
31 lines (31 loc) · 735 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
{
"llm": {
"provider": "openai-compatible",
"model": "text-to-cypher-gemma-3-4b-instruct-2025.04.0@f16",
"url": "http://llm.prowler-kg.test:1234/v1/chat/completions",
"timeout": 1800,
"max_tokens": 512,
"temperature": 0.0,
"reasoning_effort": "none"
},
"database": {
"provider": "neo4j",
"url": "bolt://neo4j.prowler-kg.test:7687",
"username": "neo4j"
},
"scanner": {
"provider": "prowler",
"api_url": "http://localhost:8080/api/v1",
"page_size": 1000
},
"logging": {
"level": "DEBUG",
"external_level": "INFO"
},
"evidence": {
"enabled": true,
"path": "evidence/raw/llm_runs.jsonl",
"include_results": true,
"max_result_records": 100
}
}