| 123456789101112131415161718192021222324252627 |
- """Generic explicit-validation example configuration."""
- from agent import CompletionPolicy, OrchestrationConfig, RunConfig
- RUN_CONFIG = RunConfig(
- agent_type="planner",
- completion_policy=CompletionPolicy.EXPLICIT_VALIDATION,
- tool_groups=None,
- root_task_spec={
- "objective": "Complete the requested mission",
- "acceptance_criteria": [
- {
- "criterion_id": "mission-complete",
- "description": "The requested mission is fully completed and independently validated",
- "hard": True,
- }
- ],
- },
- )
- ORCHESTRATION_CONFIG = OrchestrationConfig(
- max_parallel_tasks=4,
- max_repair_continuations=1,
- )
- TRACE_STORE_PATH = ".trace"
|