Skip to content
Draft
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: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@ jobs:
run: cargo clippy -p switchyard-server --all-targets --features prefill-router --locked -- -D warnings
- name: cargo test
run: cargo test --workspace --locked
- name: Install media test runtime
run: sudo apt-get update && sudo apt-get install -y ffmpeg
- name: Media frame extraction tests
run: cargo test -p switchyard-media --locked -- --ignored
- name: cargo test (prefill-router)
run: cargo test -p switchyard-runner --features prefill-router --locked

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,7 @@ jobs:
switchyard-protocol \
switchyard-translation \
switchyard-libsy \
switchyard-media \
switchyard-llm-client \
prefill-router \
switchyard-runner \
Expand Down Expand Up @@ -525,6 +526,7 @@ jobs:
publish_crate switchyard-protocol
publish_crate switchyard-translation
publish_crate switchyard-libsy
publish_crate switchyard-media
publish_crate switchyard-llm-client
publish_crate prefill-router
publish_crate switchyard-runner
Expand Down
185 changes: 179 additions & 6 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ resolver = "3"
members = [
"crates/libsy",
"crates/libsy-llm-client",
"crates/switchyard-media",
"crates/prefill-router",
"crates/switchyard-py",
"crates/protocol",
Expand Down Expand Up @@ -45,6 +46,7 @@ serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
switchyard-libsy = { path = "crates/libsy", version = "0.3.0" }
switchyard-llm-client = { path = "crates/libsy-llm-client", version = "0.3.0" }
switchyard-media = { path = "crates/switchyard-media", version = "0.3.0" }
switchyard-protocol = { path = "crates/protocol", version = "0.3.0" }
switchyard-runner = { path = "crates/switchyard-runner", version = "0.3.0" }
switchyard-server = { path = "crates/switchyard-server", version = "0.3.0" }
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN cargo build --locked --release -p switchyard-server
FROM debian:bookworm-slim

RUN apt-get update \
&& apt-get install --no-install-recommends -y ca-certificates \
&& apt-get install --no-install-recommends -y ca-certificates ffmpeg \
&& rm -rf /var/lib/apt/lists/*

COPY --from=builder \
Expand Down
1 change: 1 addition & 0 deletions crates/libsy-llm-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ publish = ["crates-io"]

[dependencies]
switchyard-libsy.workspace = true
switchyard-media.workspace = true
switchyard-protocol.workspace = true
switchyard-translation.workspace = true
reqwest.workspace = true
Expand Down
Loading
Loading