Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions examples/two_agent_examples/plan_execute/pi_multiple_ways.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ project: pi_multiple_ways
# things are stochastic after all :).
models:
choices:
- openai:gpt-5.2
- openai:gpt-5
- openai:o3
- openai:o3-mini
Expand All @@ -37,6 +38,38 @@ models:
base_url: "https://some.example.model.endpoint.url/vllm/v1"
api_key_env: SOME_API_KEY_HERE_THIS_PROVIDER_WILL_LOOK_FOR_IN_YOUR_USER_ENVIRONMENT

# this profiles section is optional, if you don't include it the LLM model will manage
# defaults, which might not be what you want.
profiles:
fast:
# i'm not confident temperature is even used in reasoning models anymore, i think this
# is entirely ignored
temperature: 0.2
max_completion_tokens: 6000
reasoning:
effort: low
balanced:
temperature: 0.2
max_completion_tokens: 15000
reasoning:
effort: medium
deep:
temperature: 0.2
max_completion_tokens: 50000
reasoning:
effort: high

# defaults are the, well, default profiles
defaults:
profile: fast
params: {} # optional extra kwargs always applied
# Per-agent overrides (planner vs executor)

agents:
planner:
profile: balanced
executor:
profile: balanced

# planning_mode must either be 'single' or 'heirarchical'
# single is one pass through planning and then it executes each
Expand Down
Loading
Loading