Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel
Michael becfa34b34
docs: standardize file references to use file:// scheme (#4291)
2 months ago
..
92830ecb92
fix: resolve issues with relative prompt paths (#1066)
1 year ago
360d7b519d
docs(examples): add uniform init commands to all example READMEs (#4068)
3 months ago
9071eef2df
fix: load file before running prompt function (#583)
1 year ago
673e1431a8
chore(prompts): support j2 files (#3338)
5 months ago
9bd03d29e3
feat: normalize prompt input formats, introduce single responsibility handlers, improve test coverage, and fix minor bugs (#994)
1 year ago
96306c3b1a
feat: add support for markdown prompts (#1616)
11 months ago
9bd03d29e3
feat: normalize prompt input formats, introduce single responsibility handlers, improve test coverage, and fix minor bugs (#994)
1 year ago
9bd03d29e3
feat: normalize prompt input formats, introduce single responsibility handlers, improve test coverage, and fix minor bugs (#994)
1 year ago
d3fe2bdbab
Support for custom functions as prompts (#147)
1 year ago
44415863af
fix: typescript for prompt functions (#2287)
8 months ago
3dcb660e35
feat(prompts): allow prompt functions to return config (#3239)
5 months ago
3dcb660e35
feat(prompts): allow prompt functions to return config (#3239)
5 months ago
3014f7ebf0
chore: formatting
1 year ago
18a4d751af
Fix issue with named prompt function imports
1 year ago
ac58592414
fix(ci): updated yanked dependency and ruff format (#2608)
7 months ago
d3fe2bdbab
Support for custom functions as prompts (#147)
1 year ago
becfa34b34
docs: standardize file references to use file:// scheme (#4291)
2 months ago
0c58ee772e
feat(prompts): add support for loading prompts from CSV files (#3542)
4 months ago

README.md

You have to be logged in to leave a comment. Sign In

custom-prompt-function (Prompt Functions and Format Examples)

You can run this example with:

npx promptfoo@latest init --example custom-prompt-function

This example demonstrates the full range of prompt formats supported by promptfoo, with special focus on prompt functions that can return both content and configuration.

Quick Start

# Copy this example to your project
npx promptfoo@latest init --example custom-prompt-function

# Set required API keys
export OPENAI_API_KEY=your_openai_key
export ANTHROPIC_API_KEY=your_anthropic_key

# Run the evaluation
npx promptfoo@latest eval

# View results
npx promptfoo@latest view

What This Example Shows

Supported Prompt Formats

  • Raw text prompts
  • File-based prompts (txt, yaml, json, jsonl, md, j2)
  • Glob patterns for multiple files
  • JSON chat formats
  • Markdown formatted prompts
  • Jinja2 template files

Prompt Functions

  • JavaScript prompt functions (CommonJS and ESM)
  • TypeScript prompt functions
  • Python prompt functions and class methods
  • Multiple functions in a single file
  • Dynamic configuration - returning { prompt, config } objects that override provider settings

Example Structure

  • prompt.txt, prompt.yaml, etc. - Various prompt file formats
  • prompt.j2 - Jinja2 template format
  • prompt_chat.js/ts - Chat format examples
  • prompt_multiple.js - Multiple functions in one file
  • prompt_esm.mjs - ESM module format
  • prompt_python.py - Python examples
  • prompt_config.js/py - Functions returning dynamic configuration
  • subfolder/ - Demonstrates nested file structures
  • promptfooconfig.yaml - Complete configuration showing all prompt types

Configuration Features

  • Dynamic adjustment of model parameters (temperature, tokens) based on content
  • Content-aware JSON schema formatting
  • Configuration merging (function values override provider defaults)
  • Provider-specific prompt configurations
  • Multiple provider comparisons (OpenAI and Anthropic)

Customization

To adapt this example:

  1. Explore different prompt formats to find what works best for your use case
  2. Use dynamic configurations to optimize model behavior based on input context
  3. Compare how different providers respond to the same prompts
  4. Create your own prompt functions for advanced use cases

Documentation

Learn more about:

Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...