Summary
When a Suite contains multiple scenarios and each scenario applies several checks (including LLM-based checks with multiple generations), await suite.run(target=...) can run for a long time with little or no incremental feedback in the terminal or logs.
Request
Add a way to surface progress and identity for each unit of work during execution, for example:
- Which scenario is currently running (name / id).
- Which check (or step) within that scenario is executing.
- For generator-backed checks: optional visibility into generation rounds or at least start/complete per check (without necessarily dumping full prompts/responses by default).
This could take the form of:
- A
verbose= / progress= flag on Suite.run(), or
- Structured logging hooks / callbacks (e.g.
on_scenario_start, on_check_start, on_generation_complete), or
- Integration with Python
logging at INFO/DEBUG levels.
Motivation
- CI and scripts: Easier to see where a run is stuck or slow.
- Demos and notebooks: Clearer narrative when multiple checks are composed.
- Debugging: Faster isolation of failing checks without waiting for the full
SuiteResult.
Notes
- Default behavior should remain quiet for backward compatibility; verbosity should be opt-in.
- If full prompt/response logging is supported, it should be a separate, explicit opt-in to avoid leaking sensitive data.
Happy to help refine API shape or contribute a PR if maintainers agree on the direction.
Summary
When a
Suitecontains multiple scenarios and each scenario applies several checks (including LLM-based checks with multiple generations),await suite.run(target=...)can run for a long time with little or no incremental feedback in the terminal or logs.Request
Add a way to surface progress and identity for each unit of work during execution, for example:
This could take the form of:
verbose=/progress=flag onSuite.run(), oron_scenario_start,on_check_start,on_generation_complete), orloggingat INFO/DEBUG levels.Motivation
SuiteResult.Notes
Happy to help refine API shape or contribute a PR if maintainers agree on the direction.