mirror of
https://github.com/lightbroker/llmsecops-research.git
synced 2026-02-12 22:52:51 +00:00
28 lines
828 B
YAML
28 lines
828 B
YAML
name: 'Reusable Test #1 | No Mitigation | Malicious Prompts'
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
batch_offset:
|
|
description: 'Starting prompt index offset'
|
|
required: true
|
|
type: number
|
|
range_name:
|
|
description: 'Human readable range name (e.g., "1-20")'
|
|
required: true
|
|
type: string
|
|
batch_size:
|
|
description: 'Number of prompts per batch'
|
|
required: false
|
|
type: number
|
|
default: 2
|
|
|
|
jobs:
|
|
test:
|
|
uses: ./.github/workflows/tests.abstract_base.yml
|
|
with:
|
|
batch_offset: ${{ inputs.batch_offset }}
|
|
range_name: ${{ inputs.range_name }}
|
|
batch_size: ${{ inputs.batch_size }}
|
|
test_file_path: tests/integration/test_01_malicious_prompts_no_mitigation.py
|
|
model_display_name: microsoft/Phi-3-mini-4k-instruct-onnx
|