examples/config-structured-outputs/README.md
You can run this example with:
npx promptfoo@latest init --example config-structured-outputs
cd config-structured-outputs
This example demonstrates how to enforce structured JSON outputs using schema validation across multiple AI providers:
response_format with json_schemaresponse_format with json_schemaoutput_format with json_schemaThe example includes two prompt configurations for solving quirky math problems:
steps array)steps array)This example requires at least one of the following API keys:
OPENAI_API_KEY - Your OpenAI API key for testing with GPT modelsANTHROPIC_API_KEY - Your Anthropic API key for testing with Claude modelsYou can set these in a .env file or directly in your environment:
export OPENAI_API_KEY=your_api_key_here
export ANTHROPIC_API_KEY=your_api_key_here
OpenAI and Azure use response_format at the prompt level:
prompts:
- raw: 'Your prompt here'
config:
response_format:
type: json_schema
json_schema:
name: schema_name
strict: true
schema:
# Your schema here
Anthropic uses output_format at the provider level:
providers:
- id: anthropic:messages:claude-sonnet-4-6
config:
output_format:
type: json_schema
schema:
# Your schema here (no nested json_schema object)
Review and customize promptfooconfig.yaml as needed
Remove any providers you don't have API keys for
Run the evaluation:
promptfoo eval
View the results:
promptfoo view