-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
51 lines (51 loc) · 1.55 KB
/
action.yml
File metadata and controls
51 lines (51 loc) · 1.55 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
name: 'Quant Agent Validate'
description: 'Validate AI agent output against a quality spec using the Quant validation API'
branding:
icon: 'check-circle'
color: 'blue'
inputs:
quant_api_key:
description: 'Quant API key'
required: true
quant_organization:
description: 'Quant organisation name'
required: true
agent_id:
description: 'Agent UUID to validate'
required: true
agent_output:
description: 'JSON string of the agent tool call output'
required: false
agent_output_file:
description: 'Path to JSON file containing agent output (alternative to agent_output for large responses)'
required: false
conversation_context_file:
description: 'Path to JSON file containing conversation context'
required: false
validation_spec:
description: 'Path to validation spec JSON file, or inline JSON string'
required: true
conversation_context:
description: 'JSON string of conversation context (tool calls, message count)'
required: false
test_fixtures:
description: 'Path to JSON file with test fixture state'
required: false
git_sha:
description: 'Git SHA that triggered this validation (auto-detected if not set)'
required: false
base_url:
description: 'Quant API base URL'
required: false
outputs:
score:
description: 'Quality score (0.0-1.0)'
passed:
description: 'Whether validation passed (true/false)'
report:
description: 'Full QualityReport JSON'
summary:
description: 'Human-readable summary string'
runs:
using: 'node20'
main: 'dist/index.js'