Files
microsoft--promptflow/examples/flex-flows/eval-checklist/README.md
T
wehub-resource-sync e768098d0e
Flake8 Lint / flake8 (push) Waiting to run
Spell check CI / Spell_Check (push) Waiting to run
tools_continuous_delivery / Private PyPI non-main branch release (push) Has been skipped
tools_continuous_delivery / Private PyPI main branch release (push) Failing after 2m42s
Publish Promptflow Doc / Build (push) Has been cancelled
Publish Promptflow Doc / Deploy (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:39:52 +08:00

2.3 KiB

Eval Check List

A example flow defined using class entry which demos how to evaluate the answer pass user specified check list.

Prerequisites

Install promptflow sdk and other dependencies:

pip install -r requirements.txt

Run flow

  • Prepare your Azure OpenAI resource follow this instruction and get your api_key if you don't have one.

  • Setup connection

Go to "Prompt flow" "Connections" tab. Click on "Create" button, select one of LLM tool supported connection types and fill in the configurations.

Or use CLI to create connection:

# Override keys with --set to avoid yaml file changes
pf connection create --file ../../connections/azure_openai.yml --set api_key=<your_api_key> api_base=<your_api_base> --name open_ai_connection

Note in flow.flex.yaml we are using connection named open_ai_connection.

# show registered connection
pf connection show --name open_ai_connection
  • Run as normal Python file
python check_list.py
  • Test flow You'll need to write flow entry flow.flex.yaml to test with prompt flow.
pf flow test --flow . --init init.json --inputs sample.json
  • Create run with multiple lines data
pf run create --flow . --init init.json --data ./data.jsonl --stream

Reference here for default behavior when column-mapping not provided in CLI.

  • List and show run meta
# list created run
pf run list

# get a sample run name

name=$(pf run list -r 10 | jq '.[] | select(.name | contains("eval_checklist_")) | .name'| head -n 1 | tr -d '"')
# show specific run detail
pf run show --name $name

# show output
pf run show-details --name $name

# visualize run in browser
pf run visualize --name $name

Run flow in cloud

  • Assume we already have a connection named open_ai_connection in workspace.
# set default workspace
az account set -s <your_subscription_id>
az configure --defaults group=<your_resource_group_name> workspace=<your_workspace_name>
  • Create run
# run with environment variable reference connection in azureml workspace
pfazure run create --flow . --init init.json --data ./data.jsonl --stream
# run using yaml file
pfazure run create --file run.yml --stream