File size: 324 Bytes
4b9d59b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
Fleet package for multi-agent fleet coordination.

This package provides data types and utilities for fleet task management.
"""

from .fleet_task_types import (
    FailurePolicy,
    FleetTaskType,
    DEFAULT_FAILURE_POLICIES
)

__all__ = [
    "FailurePolicy",
    "FleetTaskType",
    "DEFAULT_FAILURE_POLICIES",
]