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
51 changes: 50 additions & 1 deletion Cargo.lock

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

5 changes: 5 additions & 0 deletions crates/libsy-llm-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,14 @@ reqwest.workspace = true
async-trait.workspace = true
futures-util.workspace = true
opentelemetry = { version = "0.32", default-features = false, features = ["metrics"] }
safetensors = "0.4"
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
tokio.workspace = true

[dev-dependencies]
futures.workspace = true
tempfile = "3"
tokio.workspace = true
wiremock = "0.6"
5 changes: 5 additions & 0 deletions crates/libsy-llm-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@ pub mod client;
pub mod error;
pub mod metrics;
pub mod raw;
pub mod vllm_hidden_state_probe;

pub use backend::{Backend, HttpBackendConfig};
pub use client::{ModelConfig, TranslatingLlmClient};
pub use error::{LlmClientError, Result};
pub use raw::RawResponse;
pub use switchyard_translation::RawEventStream;
pub use vllm_hidden_state_probe::{
HiddenStateFeatures, VllmHiddenStateProbe, VllmHiddenStateProbeConfig,
VllmHiddenStateProbeError, VllmHiddenStateProbeResult,
};
Loading