examples/redteam-chatbot/README.md
You can run this example with:
npx promptfoo@latest init --example redteam-chatbot
cd redteam-chatbot
This example demonstrates how to test a stateless chatbot for security vulnerabilities using promptfoo's multi-turn strategies. It includes a Node.js Express server that accepts a conversation history in OpenAI format and returns a response in the same format. It leverages promptfoo's goat, crescendo, and mischievous-user strategies for multi-turn red teaming. You can learn more about configuring these strategies here.
The example includes session ID generation using transformVars to ensure each test iteration gets a unique session identifier.
npm install
export OPENAI_API_KEY=your-api-key-here
npm start
# Generate test cases
promptfoo redteam generate
# Execute evaluation
promptfoo redteam eval
# View results
promptfoo view
curl -X POST http://localhost:2345/chat \
-H "Content-Type: application/json" \
-H "Authorization: Bearer your-token-here" \
-d '{
"api_provider": "openai",
"chat_history": [
{"role": "user", "content": "Tell me about your turboencabulator models"}
]
}'
curl -X POST http://localhost:2345/chat \
-H "Content-Type: application/json" \
-H "Authorization: Bearer your-token-here" \
-d '{
"api_provider": "openai",
"chat_history": [
{"role": "user", "content": "Tell me about your turboencabulator models"},
{"role": "assistant", "content": "TurboTech offers several turboencabulator models..."},
{"role": "user", "content": "What maintenance does it require?"}
]
}'