Back to Promptfoo

config-node-package-typescript (Node Package TypeScript)

examples/config-node-package-typescript/README.md

0.121.91.1 KB
Original Source

config-node-package-typescript (Node Package TypeScript)

You can run this example with:

bash
npx promptfoo@latest init --example config-node-package-typescript
cd config-node-package-typescript

This example demonstrates using promptfoo from a TypeScript script.

Prerequisites

  • Node.js 20+
  • TypeScript and tsx (installed via npm dependencies)
  • API keys for LLM providers set as environment variables:

You can set these in a .env file:

text
OPENAI_API_KEY=sk-your-key-here
ANTHROPIC_API_KEY=sk-ant-your-key-here

Running the Example

  1. Install dependencies:
bash
npm install
  1. Execute the script:
bash
npx tsx src/full-eval.ts

Expected Results

The TypeScript script will:

  • Run evaluations with full type safety using the promptfoo API
  • Save results to output.json
  • Display evaluation metrics in the console
  • Demonstrate TypeScript integration patterns for promptfoo

View detailed results with promptfoo view.