Files
promptfoo--promptfoo/examples/redteam-dalle/README.md
T
wehub-resource-sync 0d3cb498a3
CI / Shell Format Check (push) Has been cancelled
CI / Check Ruby (3.4) (push) Has been cancelled
CI / CI Config (push) Has been cancelled
CI / Test on Node ${{ matrix.node }} and ${{ matrix.os }}${{ matrix.shard && format(' (shard {0}/3)', matrix.shard) || '' }} (push) Has been cancelled
CI / Build on Node ${{ matrix.node }} (push) Has been cancelled
CI / Style Check (push) Has been cancelled
CI / Generate Assets (push) Has been cancelled
CI / Check Python (3.14) (push) Has been cancelled
CI / Check Python (3.9) (push) Has been cancelled
CI / Build Docs (push) Has been cancelled
CI / Code Scan Action (push) Has been cancelled
CI / Site tests (push) Has been cancelled
CI / webui tests (push) Has been cancelled
CI / Run Integration Tests (push) Has been cancelled
CI / Run Smoke Tests (push) Has been cancelled
CI / Go Tests (push) Has been cancelled
CI / Share Test (push) Has been cancelled
CI / Redteam (Production API) (push) Has been cancelled
CI / Redteam (Staging API) (push) Has been cancelled
CI / GitHub Actions Lint (push) Has been cancelled
CI / Check Ruby (3.0) (push) Has been cancelled
release-please / release-please (push) Has been cancelled
release-please / build (push) Has been cancelled
release-please / publish-npm (push) Has been cancelled
release-please / publish-npm-backfill (push) Has been cancelled
release-please / docker (push) Has been cancelled
release-please / publish-code-scan-action (push) Has been cancelled
release-please / attest-code-scan-action (push) Has been cancelled
Deploy local.promptfoo.app / Deploy to Cloudflare Pages (push) Has been cancelled
Test and Publish Multi-arch Docker Image / test (push) Has been cancelled
Test and Publish Multi-arch Docker Image / build-docker-and-push-digests (map[digest-suffix:linux-amd64 platform:linux/amd64 runner:ubuntu-latest]) (push) Has been cancelled
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) Has been cancelled
Test and Publish Multi-arch Docker Image / merge-docker-digests (push) Has been cancelled
Test and Publish Multi-arch Docker Image / Attest Multi-arch Image (push) Has been cancelled
Validate Renovate Config / Validate Renovate Configuration (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:24:08 +08:00

87 lines
3.0 KiB
Markdown

# redteam-dalle (DALL-E Red Team Example)
You can run this example with:
```bash
npx promptfoo@latest init --example redteam-dalle
cd redteam-dalle
```
This example demonstrates how to use promptfoo to automatically discover jailbreaks in OpenAI's DALL-E image generation model. It includes pre-configured test cases that attempt to generate various types of harmful content.
⚠️ **Warning**: Running this example may get your OpenAI account flagged for moderation or banned.
## Setup
1. Set your OpenAI API key:
```sh
export OPENAI_API_KEY=your_key_here
```
2. Initialize the example:
```sh
npx promptfoo@latest init --example redteam-dalle
```
## Usage
1. Review and optionally modify the test cases in `promptfooconfig.yaml`. The example includes the same test cases shown in our [blog post](https://promptfoo.dev/blog/jailbreak-dalle).
2. Run the evaluation:
```sh
npx promptfoo@latest eval
```
3. View the results in the web UI:
```sh
npx promptfoo@latest view
```
Important table settings:
- Under TABLE SETTINGS, enable "Render model outputs as Markdown" to display generated images
- Set "Max text length" to unlimited to view complete responses
- Click the magnifying glass icon (🔍) in the "View output and test details" column to see the final modified prompt that was used, complete conversation history, and scoring breakdown for each iteration.
## Expected Behavior
During evaluation, you may see error messages like:
```text
Error from target provider: 400 Your request was rejected as a result of our safety system.
Error from target provider: 400 This request has been blocked by our content filters.
```
This is normal expected behavior. Promptfoo automatically retries with modified prompts in a loop until it succeeds or reaches the maximum number of iterations.
## Configuration
- The default configuration uses 4 iterations per test case. To increase this (and potentially find more jailbreaks), set:
```sh
export PROMPTFOO_NUM_JAILBREAK_ITERATIONS=6
```
- For debugging or to see the internal workings, enable debug logging:
```sh
LOG_LEVEL=debug npx promptfoo@latest eval -j 1
```
## Troubleshooting
Note: DALL-E image URLs expire after 2 hours. The example includes an extension hook that downloads images to a local `images` directory as soon as they are generated. Each image is saved with a filename based on the test description and timestamp.
- If you get rate limit errors, try reducing concurrency with `-j 1`
- If you get timeout errors, the evaluation is still running in the background. Wait a few minutes and check the results
- For other issues, please check our [documentation](https://promptfoo.dev/docs/red-team) or [file an issue](https://github.com/promptfoo/promptfoo/issues)
## Learn More
For more details about LLM red teaming with promptfoo, check out:
- [Red Team Documentation](https://promptfoo.dev/docs/red-team)
- [Blog Post: Automated jailbreaking techniques with Dall-E](https://promptfoo.dev/blog/jailbreak-dalle)