promptflowEasy Examples

Microsoft toolkit for building and evaluating LLM workflows

Getting started with promptflow

Installation and basic usage of promptflow.

python
# Install: pip install promptflow
import promptflow

# Basic promptflow usage
print(f"Using promptflow")
# See documentation for detailed examples
Expected Output
# Expected output shown below
# (Run locally with: promptflow)

promptflow is a third-party package. Microsoft toolkit for building and evaluating LLM workflows. Install with: pip install promptflow

Common promptflow operations

Frequently used features of promptflow.

python
# Install: pip install promptflow
import promptflow

# Common promptflow patterns
print(f"promptflow version: {promptflow.__version__}")

These are the most commonly used features of promptflow in everyday development.

Want to try these examples interactively?

Open Easy Playground