mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
26 lines
659 B
Python
26 lines
659 B
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
"""
|
|
Sample Validation System
|
|
|
|
A workflow-based system for validating Python samples by:
|
|
1. Discovering all sample files
|
|
2. Creating a dynamic nested concurrent workflow (one GitHub agent per sample)
|
|
3. Running the nested workflow
|
|
4. Generating a validation report
|
|
|
|
Usage:
|
|
uv run python -m sample_validation
|
|
uv run python -m sample_validation --subdir 01-get-started
|
|
"""
|
|
|
|
from sample_validation.models import Report, RunResult, SampleInfo
|
|
from sample_validation.workflow import create_validation_workflow
|
|
|
|
__all__ = [
|
|
"SampleInfo",
|
|
"RunResult",
|
|
"Report",
|
|
"create_validation_workflow",
|
|
]
|