converge-core 3.7.6

Converge Agent OS - correctness-first, context-driven multi-agent runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2024-2026 Reflective Labs
// SPDX-License-Identifier: MIT

//! Transitional re-exports for provider selection vocabulary.
//!
//! The canonical ownership of backend and model-selection vocabulary now lives in
//! `converge-provider-api`. `converge-core` re-exports these types during the
//! migration so existing downstreams can keep compiling while moving to the
//! narrower provider contract.

pub use converge_provider_api::selection::{
    AgentRequirements, BackendRequirements, BackendSelector, ComplianceLevel, CostClass, CostTier,
    DataSovereignty, Jurisdiction, LatencyClass, ModelSelectorTrait, RequiredCapabilities,
    SelectionCriteria, TaskComplexity,
};