Skip to content
Open
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
46 changes: 45 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions crates/libsy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ async-trait.workspace = true
serde.workspace = true
serde_json.workspace = true
futures.workspace = true
lru = "0.12"
# Metrics-only OTel API: instruments record through the host-installed global
# meter provider. Pinned to the 0.32 line used across the workspace.
opentelemetry = { version = "0.32", default-features = false, features = ["metrics"] }
parking_lot.workspace = true
rand.workspace = true
safetensors = "0.4"
switchyard-protocol.workspace = true
thiserror.workspace = true
tokio.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions crates/libsy/src/algorithms.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,17 @@ mod fall_through;
pub mod llm_class;
pub mod noop;
pub mod passthrough;
pub mod prefill_probe;
pub mod rand;

pub use fall_through::{FallThrough, FallThroughDecision};
pub use llm_class::{LlmTaskClassifier, TaskClassifierConfig};
pub use noop::{Noop, NoopDecision};
pub use passthrough::{Passthrough, PassthroughDecision};
pub use prefill_probe::{
PrefillFeatures, PrefillProbe, PrefillProbeClassifier, PrefillProbeClassifierConfig,
DEFAULT_PREFILL_PROBE_CACHE_CAPACITY,
};
pub use rand::{Random, RandomClassifier, RandomDecision};
pub use util::{AffinityRouter, SubagentOverride};

Expand Down
Loading