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
4 changes: 3 additions & 1 deletion .agents/skills/switchyard-codebase-exploration/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ description: Use when modifying, debugging, reviewing, refactoring, renaming, re
> `crates/switchyard-core`, `crates/switchyard-components`,
> `crates/switchyard-server`, `crates/switchyard-translation`,
> `crates/switchyard-py`, and `crates/*/tests`
> directly when a change touches Rust.
> directly when a change touches Rust. The libsy algorithm layer lives in
> `crates/libsy` (core + `observability.rs` telemetry), `crates/libsy-protocol`
> (conversation IR), and `crates/libsy-examples` (reference algorithms).
> Direct PyO3 bindings for concrete components live under
> `crates/switchyard-py/src/component_bindings/` with Python lazy exports in
> `switchyard_rust/components.py`.
Expand Down
172 changes: 170 additions & 2 deletions Cargo.lock

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

7 changes: 7 additions & 0 deletions crates/libsy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,18 @@ rust-version.workspace = true
async-trait = "0.1"
serde_json = "1"
futures = "0.3"
# 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"] }
rand = "0.8"
switchyard-protocol = { path = "../protocol" }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tracing = { version = "0.1", default-features = false, features = ["std", "attributes"] }

[dev-dependencies]
# SDK + in-memory exporter to assert what the observability layer records.
opentelemetry_sdk = { version = "0.32", features = ["metrics", "testing"] }
switchyard-llm-client = { path = "../libsy-llm-client" }
tokio = { version = "1", features = ["macros", "rt"] }
tracing-subscriber = "0.3"
Loading
Loading