forked from NVIDIA-AI-Blueprints/vulnerability-analysis
-
Notifications
You must be signed in to change notification settings - Fork 4
/
from_http.json
74 lines (74 loc) · 1.63 KB
/
from_http.json
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
{
"$schema": "./schemas/config.schema.json",
"engine": {
"agent": {
"model": {
"model_name": "meta/llama-3.1-70b-instruct",
"service": {
"_type": "nvfoundation"
},
"max_tokens": 2000,
"temperature": 0,
"top_p": 0.01,
"seed": 42
},
"verbose": false
},
"checklist_model": {
"service": {
"_type": "nvfoundation"
},
"model_name": "meta/llama-3.1-70b-instruct",
"max_tokens": 2000,
"temperature": 0,
"top_p": 0.01,
"seed": 42
},
"justification_model": {
"model_name": "meta/llama-3.1-70b-instruct",
"service": {
"_type": "nvfoundation"
},
"max_tokens": 1024,
"temperature": 0,
"top_p": 0.01,
"seed": 42
},
"rag_embedding": {
"_type": "nim",
"model": "nvidia/nv-embedqa-e5-v5",
"truncate": "END",
"max_batch_size": 128
},
"summary_model": {
"model_name": "meta/llama-3.1-70b-instruct",
"service": {
"_type": "nvfoundation"
},
"max_tokens": 1024,
"temperature": 0,
"top_p": 0.01,
"seed": 42
}
},
"general": {
"cache_dir": null,
"base_vdb_dir": ".cache/am_cache/vdb",
"base_git_dir": ".cache/am_cache/git",
"max_retries": 5,
"model_max_batch_size": 64,
"pipeline_batch_size": 1024,
"use_uvloop": true
},
"input": {
"_type": "http",
"port": 26466,
"address": "0.0.0.0"
},
"output": {
"_type": "file",
"file_path": ".tmp/output.json",
"markdown_dir": ".tmp/vulnerability_markdown_reports",
"overwrite": true
}
}