From 046e622aba15d53abd46238cf688997c835116cf Mon Sep 17 00:00:00 2001 From: Adam Wilson Date: Thu, 21 Aug 2025 10:33:51 -0600 Subject: [PATCH] test 3 base --- .../test_03_malicious_prompts_rag.base.yml | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/test_03_malicious_prompts_rag.base.yml diff --git a/.github/workflows/test_03_malicious_prompts_rag.base.yml b/.github/workflows/test_03_malicious_prompts_rag.base.yml new file mode 100644 index 000000000..0dc7da5c0 --- /dev/null +++ b/.github/workflows/test_03_malicious_prompts_rag.base.yml @@ -0,0 +1,27 @@ +name: 'Reusable Test #3 | RAG | Batch 1-20' +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_03_malicious_prompts_rag.py + model_display_name: microsoft/Phi-3-mini-4k-instruct-onnx \ No newline at end of file