-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
54 lines (53 loc) · 1.42 KB
/
Copy pathrender.yaml
File metadata and controls
54 lines (53 loc) · 1.42 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
services:
- type: web
name: agentguard
env: node
buildCommand: npm install && npm run build
startCommand: npm run start
envVars:
- key: LLM_BASE_URL
sync: false
- key: LLM_API_KEY
sync: false
- key: LLM_MODEL
value: gpt-4o-mini
- key: DATABASE_URL
sync: false
- key: ENCRYPTION_KEY
sync: false
- key: NEO4J_URI
sync: false
- key: NEO4J_USER
sync: false
- key: NEO4J_PASSWORD
sync: false
- key: SARVAM_API_KEY
sync: false
- key: AGENT_URL
sync: false
- type: cron
name: agentguard-nightly-scan
schedule: "0 2 * * *"
buildCommand: npm install && npm run build
startCommand: npx tsx src/cli/index.ts test --url $AGENT_URL --count 3 --output json > /tmp/results.json && npx tsx src/cli/index.ts analyze /tmp/results.json --output /tmp/report.html && npx tsx src/cli/index.ts publish /tmp/report.html
envVars:
- key: LLM_BASE_URL
sync: false
- key: LLM_API_KEY
sync: false
- key: LLM_MODEL
value: gpt-4o-mini
- key: DATABASE_URL
sync: false
- key: ENCRYPTION_KEY
sync: false
- key: NEO4J_URI
sync: false
- key: NEO4J_USER
sync: false
- key: NEO4J_PASSWORD
sync: false
- key: SARVAM_API_KEY
sync: false
- key: AGENT_URL
sync: false