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
1 change: 1 addition & 0 deletions changes/12448.enhance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Evaluate every kernel requirement during agent selection and report each placement failure with a structured remediation suggestion, instead of aborting at the first unplaceable kernel.
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@
NoAvailableAgentError,
NoCompatibleAgentError,
)

# Then import selector which depends on exceptions
from .selector import (
AbstractAgentSelector,
AgentSelection,
AgentSelectionConfig,
AgentSelectionCriteria,
AgentSelector,
KernelResourceSpec,
ResourceRequirements,
SessionMetadata,
)

# Then import selector which depends on exceptions
from .types import ResourceRequirements

__all__ = [
# Exceptions
"AgentSelectionError",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
AgentSelectionConfig,
AgentSelectionCriteria,
AgentStateTracker,
ResourceRequirements,
)
from .types import ResourceRequirements
from .utils import count_unutilized_capabilities, order_slots_by_priority


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
AgentSelectionConfig,
AgentSelectionCriteria,
AgentStateTracker,
ResourceRequirements,
)
from .types import ResourceRequirements
from .utils import count_unutilized_capabilities, order_slots_by_priority


Expand Down
Loading
Loading