switchyard-libsy 0.2.0

Provider-neutral multi-LLM routing and orchestration for Switchyard
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

//! Core orchestration: the [`Algorithm`](algorithm::Algorithm) trait and its
//! [`Driver`](algorithm::Driver), built on the type-erased promise-over-a-stream
//! pump in [`driver`]. Algorithm implementations live in [`crate::algorithms`].

mod driver;

pub mod algorithm;
pub mod classifier;
pub mod processor;
pub mod state;