0d3cb498a3
Deploy local.promptfoo.app / Deploy to Cloudflare Pages (push) Waiting to run
Test and Publish Multi-arch Docker Image / test (push) Waiting to run
Test and Publish Multi-arch Docker Image / build-docker-and-push-digests (map[digest-suffix:linux-amd64 platform:linux/amd64 runner:ubuntu-latest]) (push) Blocked by required conditions
Test and Publish Multi-arch Docker Image / build-docker-and-push-digests (map[digest-suffix:linux-arm64 platform:linux/arm64 runner:ubuntu-24.04-arm]) (push) Blocked by required conditions
Test and Publish Multi-arch Docker Image / merge-docker-digests (push) Blocked by required conditions
Test and Publish Multi-arch Docker Image / Attest Multi-arch Image (push) Blocked by required conditions
CI / Shell Format Check (push) Waiting to run
CI / Check Ruby (3.4) (push) Waiting to run
CI / CI Config (push) Waiting to run
CI / Test on Node ${{ matrix.node }} and ${{ matrix.os }}${{ matrix.shard && format(' (shard {0}/3)', matrix.shard) || '' }} (push) Blocked by required conditions
CI / Build on Node ${{ matrix.node }} (push) Blocked by required conditions
CI / Style Check (push) Waiting to run
CI / Generate Assets (push) Waiting to run
CI / Check Python (3.14) (push) Waiting to run
CI / Check Python (3.9) (push) Waiting to run
CI / Build Docs (push) Waiting to run
CI / Code Scan Action (push) Waiting to run
CI / Site tests (push) Waiting to run
CI / webui tests (push) Waiting to run
CI / Run Integration Tests (push) Waiting to run
CI / Run Smoke Tests (push) Waiting to run
CI / Go Tests (push) Waiting to run
CI / Share Test (push) Waiting to run
CI / Redteam (Production API) (push) Waiting to run
CI / Redteam (Staging API) (push) Waiting to run
CI / GitHub Actions Lint (push) Waiting to run
CI / Check Ruby (3.0) (push) Waiting to run
release-please / release-please (push) Waiting to run
release-please / build (push) Blocked by required conditions
release-please / publish-npm (push) Blocked by required conditions
release-please / publish-npm-backfill (push) Waiting to run
release-please / docker (push) Blocked by required conditions
release-please / publish-code-scan-action (push) Blocked by required conditions
release-please / attest-code-scan-action (push) Blocked by required conditions
Validate Renovate Config / Validate Renovate Configuration (push) Waiting to run
config-executable-prompts (Executable Prompts)
This example demonstrates how to use executable scripts and binaries as prompt generators in promptfoo.
To initialize and run it:
npx promptfoo@latest init --example config-executable-prompts
cd config-executable-prompts
promptfoo eval
Prerequisites
- bash/zsh (macOS/Linux) or PowerShell (Windows)
- jq (for the shell example): https://stedolan.github.io/jq/
- Ruby 3.x (for the Ruby example)
- Make scripts executable:
chmod +x prompt-generator.sh template-prompt.rb
Overview
Promptfoo supports using any executable (shell scripts, Python scripts, binaries, etc.) to dynamically generate prompts. This is useful when you need to:
- Generate prompts based on external data sources
- Create context-aware prompts dynamically
- Integrate with existing tools and scripts
- Generate prompts in languages other than JavaScript or Python
How It Works
-
Script Input: Your executable receives a JSON context as its first command-line argument containing:
vars: Test variables from your configurationprovider: Information about the current providerconfig: Any additional configuration passed to the prompt
-
Script Output: Your script should output the generated prompt to stdout
-
Error Handling:
- Errors should be written to stderr
- Non-zero exit codes will cause the prompt generation to fail
Usage Methods
Method 1: Using exec: prefix
prompts:
- exec:./my-script.sh
- exec:/usr/bin/custom-prompt-generator
Method 2: Direct file reference (auto-detected)
prompts:
- ./my-script.sh # Detected by .sh extension
# Note: Python files (.py) are processed as Python prompt templates by default.
# To run a Python script as an executable prompt, use the exec: prefix:
# - exec:./generator.py
Method 3: With configuration
prompts:
- label: 'Custom Prompt'
raw: exec:./generator.sh
config:
temperature: 0.7
style: technical
timeout: 30000 # 30 second timeout (default: 60s)